Merge master into staging-next

Changed files
+824 -6279
.github
ci
nixos
doc
lib
testing
modules
services
web-apps
tests
pkgs
applications
editors
vscode
extensions
emulators
virtualization
docker
by-name
al
alt-ergo
ca
cargo-modules
cl
clouddrive2
cy
cyrus-imapd
di
diffnav
gi
git-bug-migration
go
go-task
gz
gz-cmake
ht
htcondor
ju
just-lsp
kr
krillinai
ma
matrix-authentication-service
mo
ni
nixf-diagnose
ob
oboete
pa
paretosecurity
pl
plakativ
po
podman-desktop
pr
process-compose
si
signal-desktop
signal-desktop-bin
sn
snipe-it
sp
spotify-player
st
stalwart-mail
sy
synapse-admin-etkecc
ue
uesave
ug
ya
yandex-music
zm
development
python-modules
docling
litellm
openai
plotpy
os-specific
tools
top-level
+1 -1
.github/workflows/eval.yml
···
tag:
name: Tag
runs-on: ubuntu-24.04-arm
-
needs: [ process ]
if: needs.process.outputs.targetRunId
permissions:
pull-requests: write
···
tag:
name: Tag
runs-on: ubuntu-24.04-arm
+
needs: [ get-merge-commit, process ]
if: needs.process.outputs.targetRunId
permissions:
pull-requests: write
+1 -1
.github/workflows/get-merge-commit.yml
···
;;
pull_request_target)
if commits=$(base/ci/get-merge-commit.sh ${{ github.repository }} ${{ github.event.number }}); then
-
echo "Checking the commits:\n$commits"
echo "$commits" >> "$GITHUB_OUTPUT"
else
# Skipping so that no notifications are sent
···
;;
pull_request_target)
if commits=$(base/ci/get-merge-commit.sh ${{ github.repository }} ${{ github.event.number }}); then
+
echo -e "Checking the commits:\n$commits"
echo "$commits" >> "$GITHUB_OUTPUT"
else
# Skipping so that no notifications are sent
+1 -4
ci/default.nix
···
fs = pkgs.lib.fileset;
nixFilesSrc = fs.toSource {
root = ../.;
-
fileset = fs.difference (fs.unions [
-
(fs.fileFilter (file: file.hasExt "nix") ../.)
-
../.git-blame-ignore-revs
-
]) (fs.maybeMissing ../.git);
};
in
{
···
fs = pkgs.lib.fileset;
nixFilesSrc = fs.toSource {
root = ../.;
+
fileset = fs.difference ../. (fs.maybeMissing ../.git);
};
in
{
+10 -1
nixos/doc/manual/development/running-nixos-tests-interactively.section.md
···
{
name = "…";
nodes.machines = { /* … */ };
-
sshBackdoor.enable = true;
}
```
This creates a [vsock socket](https://man7.org/linux/man-pages/man7/vsock.7.html)
for each VM to log in with SSH. This configures root login with an empty password.
···
{
name = "…";
nodes.machines = { /* … */ };
+
interactive.sshBackdoor.enable = true;
}
```
+
+
::: {.warning}
+
Make sure to only enable the backdoor for interactive tests
+
(i.e. by using `interactive.sshBackdoor.enable`)! This is the only
+
supported configuration.
+
+
Running a test in a sandbox with this will fail because `/dev/vhost-vsock` isn't available
+
in the sandbox.
+
:::
This creates a [vsock socket](https://man7.org/linux/man-pages/man7/vsock.7.html)
for each VM to log in with SSH. This configures root login with an empty password.
+1 -1
nixos/doc/manual/installation/installing-virtualbox-guest.section.md
···
1. Base Memory Size: 768 MB or higher.
-
1. New Hard Disk of 8 GB or higher.
1. Mount the CD-ROM with the NixOS ISO (by clicking on CD/DVD-ROM)
···
1. Base Memory Size: 768 MB or higher.
+
1. New Hard Disk of 10 GB or higher.
1. Mount the CD-ROM with the NixOS ISO (by clicking on CD/DVD-ROM)
+18 -15
nixos/lib/testing/run.nix
···
};
config = {
-
rawTestDerivation = hostPkgs.stdenv.mkDerivation {
-
name = "vm-test-run-${config.name}";
-
requiredSystemFeatures =
-
[ "nixos-test" ]
-
++ lib.optionals hostPkgs.stdenv.hostPlatform.isLinux [ "kvm" ]
-
++ lib.optionals hostPkgs.stdenv.hostPlatform.isDarwin [ "apple-virt" ];
-
buildCommand = ''
-
mkdir -p $out
-
# effectively mute the XMLLogger
-
export LOGFILE=/dev/null
-
${config.driver}/bin/nixos-test-driver -o $out
-
'';
-
passthru = config.passthru;
-
meta = config.meta;
-
};
test = lib.lazyDerivation {
# lazyDerivation improves performance when only passthru items and/or meta are used.
derivation = config.rawTestDerivation;
···
};
config = {
+
rawTestDerivation =
+
assert lib.assertMsg (!config.sshBackdoor.enable)
+
"The SSH backdoor is currently not supported for non-interactive testing! Please make sure to only set `interactive.sshBackdoor.enable = true;`!";
+
hostPkgs.stdenv.mkDerivation {
+
name = "vm-test-run-${config.name}";
+
requiredSystemFeatures =
+
[ "nixos-test" ]
+
++ lib.optionals hostPkgs.stdenv.hostPlatform.isLinux [ "kvm" ]
+
++ lib.optionals hostPkgs.stdenv.hostPlatform.isDarwin [ "apple-virt" ];
+
buildCommand = ''
+
mkdir -p $out
+
# effectively mute the XMLLogger
+
export LOGFILE=/dev/null
+
${config.driver}/bin/nixos-test-driver -o $out
+
'';
+
passthru = config.passthru;
+
meta = config.meta;
+
};
test = lib.lazyDerivation {
# lazyDerivation improves performance when only passthru items and/or meta are used.
derivation = config.rawTestDerivation;
+17 -8
nixos/modules/services/web-apps/nextcloud.nix
···
++ (lib.optional (cfg.config.objectstore.s3.enable) "s3_secret:${cfg.config.objectstore.s3.secretFile}")
++ (lib.optional (
cfg.config.objectstore.s3.sseCKeyFile != null
-
) "s3_sse_c_key:${cfg.config.objectstore.s3.sseCKeyFile}");
requiresRuntimeSystemdCredentials = (lib.length runtimeSystemdCredentials) != 0;
···
overrideConfig =
let
c = cfg.config;
-
requiresReadSecretFunction = c.dbpassFile != null || c.objectstore.s3.enable;
objectstoreConfig =
let
s3 = c.objectstore.s3;
···
in
pkgs.writeText "nextcloud-config.php" ''
<?php
-
${optionalString requiresReadSecretFunction ''
function nix_read_secret($credential_name) {
$credentials_directory = getenv("CREDENTIALS_DIRECTORY");
if (!$credentials_directory) {
···
}
return trim(file_get_contents($credential_path));
-
}''}
function nix_decode_json_file($file, $error) {
if (!file_exists($file)) {
throw new \RuntimeException(sprintf($error, $file));
···
));
${optionalString (cfg.secretFile != null) ''
-
$CONFIG = array_replace_recursive($CONFIG, nix_decode_json_file(
-
"${cfg.secretFile}",
-
"Cannot start Nextcloud, secrets file %s set by NixOS doesn't exist!"
-
));
''}
'';
in
···
++ (lib.optional (cfg.config.objectstore.s3.enable) "s3_secret:${cfg.config.objectstore.s3.secretFile}")
++ (lib.optional (
cfg.config.objectstore.s3.sseCKeyFile != null
+
) "s3_sse_c_key:${cfg.config.objectstore.s3.sseCKeyFile}")
+
++ (lib.optional (cfg.secretFile != null) "secret_file:${cfg.secretFile}");
requiresRuntimeSystemdCredentials = (lib.length runtimeSystemdCredentials) != 0;
···
overrideConfig =
let
c = cfg.config;
objectstoreConfig =
let
s3 = c.objectstore.s3;
···
in
pkgs.writeText "nextcloud-config.php" ''
<?php
+
${optionalString requiresRuntimeSystemdCredentials ''
function nix_read_secret($credential_name) {
$credentials_directory = getenv("CREDENTIALS_DIRECTORY");
if (!$credentials_directory) {
···
}
return trim(file_get_contents($credential_path));
+
}
+
+
function nix_read_secret_and_decode_json_file($credential_name) {
+
$decoded = json_decode(nix_read_secret($credential_name), true);
+
+
if (json_last_error() !== JSON_ERROR_NONE) {
+
error_log(sprintf("Cannot decode %s, because: %s", $file, json_last_error_msg()));
+
exit(1);
+
}
+
+
return $decoded;
+
}
+
''}
function nix_decode_json_file($file, $error) {
if (!file_exists($file)) {
throw new \RuntimeException(sprintf($error, $file));
···
));
${optionalString (cfg.secretFile != null) ''
+
$CONFIG = array_replace_recursive($CONFIG, nix_read_secret_and_decode_json_file('secret_file'));
''}
'';
in
+6 -7
nixos/tests/nextcloud/with-declarative-redis-and-secrets.nix
···
# This file is meant to contain secret options which should
# not go into the nix store. Here it is just used to set the
# redis password.
-
environment.etc."nextcloud-secrets.json".text = ''
-
{
-
"redis": {
-
"password": "secret"
-
}
-
}
-
'';
};
};
···
# This file is meant to contain secret options which should
# not go into the nix store. Here it is just used to set the
# redis password.
+
environment.etc."nextcloud-secrets.json" = {
+
mode = "0600";
+
text = builtins.toJSON {
+
redis.password = "secret";
+
};
+
};
};
};
+6 -6
pkgs/applications/editors/vscode/extensions/default.nix
···
mktplcRef = {
name = "language-julia";
publisher = "julialang";
-
version = "1.138.1";
-
hash = "sha256-r98S0J+9sKlQacUuUakCI1WE6uRJ9zhYc2foLCN8Xzo=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/julialang.language-julia/changelog";
···
mktplcRef = {
publisher = "sonarsource";
name = "sonarlint-vscode";
-
version = "4.21.0";
-
hash = "sha256-pnxHROhjbQq93CeWkBU3KwIPeXVDA4K6ifkkoGfagIM=";
};
meta.license = lib.licenses.lgpl3Only;
};
···
mktplcRef = {
name = "tabnine-vscode";
publisher = "tabnine";
-
version = "3.268.0";
-
hash = "sha256-Gx9hQqieXTmFudRJaySI8+8cNIaKVRMtNwJqxGH0DV8=";
};
meta = {
license = lib.licenses.mit;
···
mktplcRef = {
name = "language-julia";
publisher = "julialang";
+
version = "1.140.2";
+
hash = "sha256-YQwJq3QSzb2pAOLyy0w8RtrjAlxudBGN52fQtj+OmOk=";
};
meta = {
changelog = "https://marketplace.visualstudio.com/items/julialang.language-julia/changelog";
···
mktplcRef = {
publisher = "sonarsource";
name = "sonarlint-vscode";
+
version = "4.22.0";
+
hash = "sha256-E50BmbYgm9w+jpr8m8BdZcOuCtPhpmhXTBhbx/tsips=";
};
meta.license = lib.licenses.lgpl3Only;
};
···
mktplcRef = {
name = "tabnine-vscode";
publisher = "tabnine";
+
version = "3.271.0";
+
hash = "sha256-+lNWQOfmoxT6+j+oqT4Z2QTYWSJbVwSukxEx4fwXqPc=";
};
meta = {
license = lib.licenses.mit;
+3 -3
pkgs/applications/emulators/libretro/cores/fceumm.nix
···
}:
mkLibretroCore {
core = "fceumm";
-
version = "0-unstable-2025-04-11";
src = fetchFromGitHub {
owner = "libretro";
repo = "libretro-fceumm";
-
rev = "43e6496351b544df0de692fbb01b2a6942073f5c";
-
hash = "sha256-kGGvI1rKE/oSF2v3URDY/fLTThYc3Crk9UFN69Rcckg=";
};
meta = {
···
}:
mkLibretroCore {
core = "fceumm";
+
version = "0-unstable-2025-05-02";
src = fetchFromGitHub {
owner = "libretro";
repo = "libretro-fceumm";
+
rev = "3544ff567ecc417c170641587083b976739ef9db";
+
hash = "sha256-eNmzWLJVPeqFFEcFIhOQCn9OMrBp0iraTcft5pJVvvE=";
};
meta = {
+3 -3
pkgs/applications/emulators/libretro/cores/genesis-plus-gx.nix
···
}:
mkLibretroCore {
core = "genesis-plus-gx";
-
version = "0-unstable-2025-04-25";
src = fetchFromGitHub {
owner = "libretro";
repo = "Genesis-Plus-GX";
-
rev = "99678a0ef3cfcca500ed01c24bbb1020d8af4c12";
-
hash = "sha256-iijYZ4+TM61EkJynDaPYBi/bYrypouFRmhaG63cxgJo=";
};
meta = {
···
}:
mkLibretroCore {
core = "genesis-plus-gx";
+
version = "0-unstable-2025-05-02";
src = fetchFromGitHub {
owner = "libretro";
repo = "Genesis-Plus-GX";
+
rev = "f64e0a1e04a67a5edf79026c07dc5094f8df74bc";
+
hash = "sha256-eG0lzdo/AWVAl+V71X8YNGK1Dk1oLW3jvGY3IS0ekNw=";
};
meta = {
+3 -3
pkgs/applications/virtualization/docker/compose.nix
···
buildGoModule rec {
pname = "docker-compose";
-
version = "2.35.1";
src = fetchFromGitHub {
owner = "docker";
repo = "compose";
rev = "v${version}";
-
hash = "sha256-Dq2YYiHmtt3j+qHAzsAIW4twbD3viXIjI0MXrV7HIW0=";
};
postPatch = ''
···
rm -rf pkg/e2e/
'';
-
vendorHash = "sha256-nycjWE3nFmA2csen8jT9lrhwRn5892xIRtrYEn+eVy0=";
ldflags = [
"-X github.com/docker/compose/v2/internal.Version=${version}"
···
buildGoModule rec {
pname = "docker-compose";
+
version = "2.36.0";
src = fetchFromGitHub {
owner = "docker";
repo = "compose";
rev = "v${version}";
+
hash = "sha256-3WaTUylmXk2urn9Pe76AdnckJvFBJBSccXCvFSRotyo=";
};
postPatch = ''
···
rm -rf pkg/e2e/
'';
+
vendorHash = "sha256-AcBBtetOuTnCA6ZQVUta+6lJQoSJhBXifEoToUhrpAk=";
ldflags = [
"-X github.com/docker/compose/v2/internal.Version=${version}"
+2 -2
pkgs/by-name/al/alt-ergo/package.nix
···
let
pname = "alt-ergo";
-
version = "2.6.1";
src = fetchurl {
url = "https://github.com/OCamlPro/alt-ergo/releases/download/v${version}/alt-ergo-${version}.tbz";
-
hash = "sha256-31YEWjr3n7z70d7q8JAS1bw5C0wiI+HZwlwRwwHZ7ro=";
};
in
···
let
pname = "alt-ergo";
+
version = "2.6.2";
src = fetchurl {
url = "https://github.com/OCamlPro/alt-ergo/releases/download/v${version}/alt-ergo-${version}.tbz";
+
hash = "sha256-OeLJEop9HonzMuMaJxbzWfO54akl/oHxH6SnSbXSTYI=";
};
in
+3 -3
pkgs/by-name/ca/cargo-modules/package.nix
···
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-modules";
-
version = "0.23.1";
src = fetchFromGitHub {
owner = "regexident";
repo = "cargo-modules";
tag = "v${version}";
-
hash = "sha256-L5goyuYn7qRVCgbOGRlSJA0B01MuOzIw9Lx5G/TanXs=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-txuTNuW6dJNnnLk9o5z4Pa42bJaAa9jB/ms8au+3Muc=";
checkFlags = [
"--skip=cfg_test::with_tests::smoke"
···
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-modules";
+
version = "0.24.0";
src = fetchFromGitHub {
owner = "regexident";
repo = "cargo-modules";
tag = "v${version}";
+
hash = "sha256-MJswCl5eJjKarB2ufeNLQL0ZPDaRPpX6OGOqszG+a0g=";
};
useFetchCargoVendor = true;
+
cargoHash = "sha256-N1Bj0fqyirp51DNsrZEtRGOSUPS1YNbk+O3kdboQ+TQ=";
checkFlags = [
"--skip=cfg_test::with_tests::smoke"
+5 -5
pkgs/by-name/cl/clouddrive2/package.nix
···
in
stdenv.mkDerivation (finalAttrs: {
pname = "clouddrive2";
-
version = "0.8.16";
src = fetchurl {
url = "https://github.com/cloud-fs/cloud-fs.github.io/releases/download/v${finalAttrs.version}/clouddrive-2-${os}-${arch}-${finalAttrs.version}.tgz";
hash =
{
-
x86_64-linux = "sha256-NUXafHlH/TsIW4sTDOZ01AxNSnQ1M0yMgtoHBlYBzAU=";
-
aarch64-linux = "sha256-FcCz/DcNOIOm9WE2zuL3WA3mkbxO57eCtHpD9PjDG94=";
-
x86_64-darwin = "sha256-Bm5w6AgZ1cafopa+w5+0yADGS4rfsFXpHZ21NHu5tC8=";
-
aarch64-darwin = "sha256-4dwht7AbBB6b35n8joH7sR8zUgSQqILrkORIJaSm2xI=";
}
.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}");
};
···
in
stdenv.mkDerivation (finalAttrs: {
pname = "clouddrive2";
+
version = "0.8.17";
src = fetchurl {
url = "https://github.com/cloud-fs/cloud-fs.github.io/releases/download/v${finalAttrs.version}/clouddrive-2-${os}-${arch}-${finalAttrs.version}.tgz";
hash =
{
+
x86_64-linux = "sha256-j3QJJ6cF+dcotkMJcDbW1rf1ETdfofiTotDcV+bH8zY=";
+
aarch64-linux = "sha256-0N+D0ba3+D6xfiW8RjV1XHTcypLiGyuuHZFOqYS3JZE=";
+
x86_64-darwin = "sha256-YCn7jvpgh2+i6qWBbsqSBFmNlwPduPNExXF+QnxiQ+c=";
+
aarch64-darwin = "sha256-EOgrnJljZVSkzjZRZSUIfn1Ly6IrTS6I/8uwRVktnzE=";
}
.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}");
};
+2 -2
pkgs/by-name/cy/cyrus-imapd/package.nix
···
}:
stdenv.mkDerivation (finalAttrs: {
pname = "cyrus-imapd";
-
version = "3.10.1";
src = fetchFromGitHub {
owner = "cyrusimap";
repo = "cyrus-imapd";
tag = "cyrus-imapd-${finalAttrs.version}";
-
hash = "sha256-jMSTduQmLB55smBmbJ32eLqiC24ufQyX/FT9d18lDCo=";
};
nativeBuildInputs = [
···
}:
stdenv.mkDerivation (finalAttrs: {
pname = "cyrus-imapd";
+
version = "3.12.0";
src = fetchFromGitHub {
owner = "cyrusimap";
repo = "cyrus-imapd";
tag = "cyrus-imapd-${finalAttrs.version}";
+
hash = "sha256-sdHAxlrxQHzcSt2buOGfRv/OR8BYFHrNoo+r/ePVFsg=";
};
nativeBuildInputs = [
+2 -2
pkgs/by-name/di/diffnav/package.nix
···
buildGoModule rec {
pname = "diffnav";
-
version = "0.3.0";
src = fetchFromGitHub {
owner = "dlvhdr";
repo = "diffnav";
rev = "refs/tags/v${version}";
-
hash = "sha256-JXxeRq8OuTvzkbxDr1xVXeW0RFtCRyEbhCGvXeWHb0g=";
};
vendorHash = "sha256-2JjQF+fwl8+Xoq9T3jCvngRAOa3935zpi9qbF4w4hEI=";
···
buildGoModule rec {
pname = "diffnav";
+
version = "0.3.1";
src = fetchFromGitHub {
owner = "dlvhdr";
repo = "diffnav";
rev = "refs/tags/v${version}";
+
hash = "sha256-admPiEKyatdUkR89vZP8RYHTqtZVSJ8KSvtpnsBViBw=";
};
vendorHash = "sha256-2JjQF+fwl8+Xoq9T3jCvngRAOa3935zpi9qbF4w4hEI=";
+4 -1
pkgs/by-name/gi/git-bug-migration/package.nix
···
description = "Tool for upgrading repositories using git-bug to new versions";
homepage = "https://github.com/MichaelMure/git-bug-migration";
license = licenses.gpl3Plus;
-
maintainers = with maintainers; [ DeeUnderscore ];
mainProgram = "git-bug-migration";
};
}
···
description = "Tool for upgrading repositories using git-bug to new versions";
homepage = "https://github.com/MichaelMure/git-bug-migration";
license = licenses.gpl3Plus;
+
maintainers = with maintainers; [
+
DeeUnderscore
+
sudoforge
+
];
mainProgram = "git-bug-migration";
};
}
+7 -7
pkgs/by-name/go/go-task/package.nix
···
versionCheckHook,
}:
-
buildGoModule rec {
pname = "go-task";
-
version = "3.43.2";
src = fetchFromGitHub {
owner = "go-task";
repo = "task";
-
tag = "v${version}";
-
hash = "sha256-duq5OGUFki0OK/U09EmzBtTH5ObXdWwNYrmenUyubr0=";
};
vendorHash = "sha256-3Uu0ozwOgp6vQh+s9nGKojw6xPUI49MjjPqKh9g35lQ=";
···
ldflags = [
"-s"
"-w"
-
"-X=github.com/go-task/task/v3/internal/version.version=${version}"
];
env.CGO_ENABLED = 0;
···
meta = with lib; {
homepage = "https://taskfile.dev/";
description = "Task runner / simpler Make alternative written in Go";
-
changelog = "https://github.com/go-task/task/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ parasrah ];
};
-
}
···
versionCheckHook,
}:
+
buildGoModule (finalAttrs: {
pname = "go-task";
+
version = "3.43.3";
src = fetchFromGitHub {
owner = "go-task";
repo = "task";
+
tag = "v${finalAttrs.version}";
+
hash = "sha256-ZIZdk0yyykjjSdH6YG8K8WpI8e8426odk8RxISsJe80=";
};
vendorHash = "sha256-3Uu0ozwOgp6vQh+s9nGKojw6xPUI49MjjPqKh9g35lQ=";
···
ldflags = [
"-s"
"-w"
+
"-X=github.com/go-task/task/v3/internal/version.version=${finalAttrs.version}"
];
env.CGO_ENABLED = 0;
···
meta = with lib; {
homepage = "https://taskfile.dev/";
description = "Task runner / simpler Make alternative written in Go";
+
changelog = "https://github.com/go-task/task/blob/v${finalAttrs.version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ parasrah ];
};
+
})
+29 -3
pkgs/by-name/gz/gz-cmake/package.nix
···
doxygen,
graphviz,
pkg-config,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gz-cmake";
-
version = "4.1.1";
src = fetchFromGitHub {
owner = "gazebosim";
repo = "gz-cmake";
-
tag = "gz-cmake${lib.versions.major finalAttrs.version}_${finalAttrs.version}";
-
hash = "sha256-BWgRm+3UW65Cu7TqXtFFG05JlYF52dbpAsIE8aDnJM0=";
};
nativeBuildInputs = [
···
graphviz
pkg-config
];
meta = {
description = "CMake modules to build Gazebo projects";
···
doxygen,
graphviz,
pkg-config,
+
python3,
+
nix-update-script,
}:
+
let
+
version = "4.2.0";
+
versionPrefix = "gz-cmake${lib.versions.major version}";
+
in
stdenv.mkDerivation (finalAttrs: {
pname = "gz-cmake";
+
inherit version;
src = fetchFromGitHub {
owner = "gazebosim";
repo = "gz-cmake";
+
tag = "${versionPrefix}_${finalAttrs.version}";
+
hash = "sha256-+bMOcGWfcwPhxR9CBp4iH02CZC4oplCjsTDpPDsDnSs=";
};
nativeBuildInputs = [
···
graphviz
pkg-config
];
+
+
cmakeFlags = [
+
(lib.cmakeBool "BUILDSYSTEM_TESTING" finalAttrs.doCheck)
+
];
+
+
nativeCheckInputs = [ python3 ];
+
+
# 98% tests passed, 1 tests failed out of 44
+
# 44 - c_child_requires_c_nodep (Failed)
+
#
+
# Package gz-c_child_private was not found in the pkg-config search path.
+
# Perhaps you should add the directory containing `gz-c_child_private.pc'
+
# to the PKG_CONFIG_PATH environment variable
+
# No package 'gz-c_child_private' found
+
doCheck = false;
+
+
# Extract the version by matching the tag's prefix.
+
passthru.updateScript = nix-update-script {
+
extraArgs = [ "--version-regex=${versionPrefix}_([\\d\\.]+)" ];
+
};
meta = {
description = "CMake modules to build Gazebo projects";
+3 -2
pkgs/by-name/ht/htcondor/package.nix
···
platforms = platforms.linux;
license = licenses.asl20;
maintainers = with maintainers; [ evey ];
-
# cannot find -lpthread: No such file or directory
-
broken = stdenv.hostPlatform.isAarch64;
};
}
···
platforms = platforms.linux;
license = licenses.asl20;
maintainers = with maintainers; [ evey ];
+
# On Aarch64: ld: cannot find -lpthread: No such file or directory
+
# On x86_64: ld: cannot find -ldl: No such file or directory
+
broken = true;
};
}
+3 -3
pkgs/by-name/ju/just-lsp/package.nix
···
rustPlatform.buildRustPackage (finalAttrs: {
pname = "just-lsp";
-
version = "0.2.1";
src = fetchFromGitHub {
owner = "terror";
repo = "just-lsp";
tag = finalAttrs.version;
-
hash = "sha256-MBkuLvMwAH0858X0TRAK1pL/JwsTIY/6Ra+Vd6X0odA=";
};
-
cargoHash = "sha256-gVxWy8SGvAaavrdZHK/9aKfPAXUtfs98TyFKFkFa3+U=";
passthru = {
updateScript = nix-update-script { };
···
rustPlatform.buildRustPackage (finalAttrs: {
pname = "just-lsp";
+
version = "0.2.2";
src = fetchFromGitHub {
owner = "terror";
repo = "just-lsp";
tag = finalAttrs.version;
+
hash = "sha256-lR3VtPS96gPUj4OVZLeQSHnss22hBTRBLUV8n2Y3E9M=";
};
+
cargoHash = "sha256-eDjUYB5AN56hxolizw0KYb0Z/k28OWOUYOxhB/5pKV0=";
passthru = {
updateScript = nix-update-script { };
+2 -2
pkgs/by-name/kr/krillinai/package.nix
···
buildGoModule (finalAttrs: {
pname = "krillinai";
-
version = "1.1.4";
src = fetchFromGitHub {
owner = "krillinai";
repo = "KrillinAI";
tag = "v${finalAttrs.version}";
-
hash = "sha256-espj6BFc0GA5pURyly1HV3rIqyEgd1S/bmqkUPczTqM=";
};
vendorHash = "sha256-mpvypCZmvVVljftGpcV1aea3s7Xmhr0jLfKZIZ0nkX8=";
···
buildGoModule (finalAttrs: {
pname = "krillinai";
+
version = "1.1.5";
src = fetchFromGitHub {
owner = "krillinai";
repo = "KrillinAI";
tag = "v${finalAttrs.version}";
+
hash = "sha256-jQlgkpQ+UTzn6MqGa+yVQ9v04IGGlMQQim3s0Oc9Zts=";
};
vendorHash = "sha256-mpvypCZmvVVljftGpcV1aea3s7Xmhr0jLfKZIZ0nkX8=";
+7 -6
pkgs/by-name/ma/matrix-authentication-service/package.nix
···
cctools,
}:
-
rustPlatform.buildRustPackage rec {
pname = "matrix-authentication-service";
version = "0.16.0";
src = fetchFromGitHub {
owner = "element-hq";
repo = "matrix-authentication-service";
-
tag = "v${version}";
hash = "sha256-/UrMmC5DTxoN6uzvTB+V3//hGQmKlkYvi5Lv4p31fq4=";
};
···
cargoHash = "sha256-UvRv69rHqPNqTg5nhUojTDHEFUIXF8LEB4ndzA7CHc0=";
npmDeps = fetchNpmDeps {
-
name = "${pname}-${version}-npm-deps";
-
src = "${src}/${npmRoot}";
hash = "sha256-7EN8GIO8VutAZujVvgM67fGIXWD2aJhHhEJrTeHRiGE=";
};
···
env = {
ZSTD_SYS_USE_PKG_CONFIG = true;
};
buildNoDefaultFeatures = true;
···
meta = {
description = "OAuth2.0 + OpenID Provider for Matrix Homeservers";
homepage = "https://github.com/element-hq/matrix-authentication-service";
-
changelog = "https://github.com/element-hq/matrix-authentication-service/releases/tag/v${version}";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ teutat3s ];
mainProgram = "mas-cli";
};
-
}
···
cctools,
}:
+
rustPlatform.buildRustPackage (finalAttrs: {
pname = "matrix-authentication-service";
version = "0.16.0";
src = fetchFromGitHub {
owner = "element-hq";
repo = "matrix-authentication-service";
+
tag = "v${finalAttrs.version}";
hash = "sha256-/UrMmC5DTxoN6uzvTB+V3//hGQmKlkYvi5Lv4p31fq4=";
};
···
cargoHash = "sha256-UvRv69rHqPNqTg5nhUojTDHEFUIXF8LEB4ndzA7CHc0=";
npmDeps = fetchNpmDeps {
+
name = "${finalAttrs.pname}-${finalAttrs.version}-npm-deps";
+
src = "${finalAttrs.src}/${finalAttrs.npmRoot}";
hash = "sha256-7EN8GIO8VutAZujVvgM67fGIXWD2aJhHhEJrTeHRiGE=";
};
···
env = {
ZSTD_SYS_USE_PKG_CONFIG = true;
+
VERGEN_GIT_DESCRIBE = finalAttrs.version;
};
buildNoDefaultFeatures = true;
···
meta = {
description = "OAuth2.0 + OpenID Provider for Matrix Homeservers";
homepage = "https://github.com/element-hq/matrix-authentication-service";
+
changelog = "https://github.com/element-hq/matrix-authentication-service/releases/tag/v${finalAttrs.version}";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ teutat3s ];
mainProgram = "mas-cli";
};
+
})
+13
pkgs/by-name/mo/mongosh/disable-telemetry.patch
···
···
+
diff --git a/packages/cli-repl/src/cli-repl.ts b/packages/cli-repl/src/cli-repl.ts
+
index b00c52e1..7a096d6d 100644
+
--- a/packages/cli-repl/src/cli-repl.ts
+
+++ b/packages/cli-repl/src/cli-repl.ts
+
@@ -159,7 +159,7 @@ export class CliRepl implements MongoshIOProvider {
+
this.config = {
+
userId: id,
+
telemetryAnonymousId: id,
+
- enableTelemetry: true,
+
+ enableTelemetry: false,
+
};
+
+
this.getCryptLibraryPaths = options.getCryptLibraryPaths;
-6028
pkgs/by-name/mo/mongosh/package-lock.json
···
-
{
-
"name": "mongosh",
-
"version": "2.4.2",
-
"lockfileVersion": 3,
-
"requires": true,
-
"packages": {
-
"": {
-
"name": "mongosh",
-
"version": "2.4.2",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongosh/cli-repl": "2.4.2"
-
},
-
"bin": {
-
"mongosh": "bin/mongosh.js"
-
},
-
"engines": {
-
"node": ">=16.15.0"
-
}
-
},
-
"node_modules/@ampproject/remapping": {
-
"version": "2.3.0",
-
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
-
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@jridgewell/gen-mapping": "^0.3.5",
-
"@jridgewell/trace-mapping": "^0.3.24"
-
},
-
"engines": {
-
"node": ">=6.0.0"
-
}
-
},
-
"node_modules/@aws-crypto/sha256-browser": {
-
"version": "5.2.0",
-
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
-
"integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-crypto/sha256-js": "^5.2.0",
-
"@aws-crypto/supports-web-crypto": "^5.2.0",
-
"@aws-crypto/util": "^5.2.0",
-
"@aws-sdk/types": "^3.222.0",
-
"@aws-sdk/util-locate-window": "^3.0.0",
-
"@smithy/util-utf8": "^2.0.0",
-
"tslib": "^2.6.2"
-
}
-
},
-
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer": {
-
"version": "2.2.0",
-
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
-
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=14.0.0"
-
}
-
},
-
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from": {
-
"version": "2.2.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
-
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/is-array-buffer": "^2.2.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=14.0.0"
-
}
-
},
-
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8": {
-
"version": "2.3.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
-
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/util-buffer-from": "^2.2.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=14.0.0"
-
}
-
},
-
"node_modules/@aws-crypto/sha256-js": {
-
"version": "5.2.0",
-
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
-
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-crypto/util": "^5.2.0",
-
"@aws-sdk/types": "^3.222.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=16.0.0"
-
}
-
},
-
"node_modules/@aws-crypto/supports-web-crypto": {
-
"version": "5.2.0",
-
"resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
-
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
}
-
},
-
"node_modules/@aws-crypto/util": {
-
"version": "5.2.0",
-
"resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
-
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "^3.222.0",
-
"@smithy/util-utf8": "^2.0.0",
-
"tslib": "^2.6.2"
-
}
-
},
-
"node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer": {
-
"version": "2.2.0",
-
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
-
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=14.0.0"
-
}
-
},
-
"node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from": {
-
"version": "2.2.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
-
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/is-array-buffer": "^2.2.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=14.0.0"
-
}
-
},
-
"node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8": {
-
"version": "2.3.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
-
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/util-buffer-from": "^2.2.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=14.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/client-cognito-identity": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.758.0.tgz",
-
"integrity": "sha512-8bOXVYtf/0OUN0jXTIHLv3V0TAS6kvvCRAy7nmiL/fDde0O+ChW1WZU7CVPAOtFEpFCdKskDcxFspM7m1k6qyg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-crypto/sha256-browser": "5.2.0",
-
"@aws-crypto/sha256-js": "5.2.0",
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/credential-provider-node": "3.758.0",
-
"@aws-sdk/middleware-host-header": "3.734.0",
-
"@aws-sdk/middleware-logger": "3.734.0",
-
"@aws-sdk/middleware-recursion-detection": "3.734.0",
-
"@aws-sdk/middleware-user-agent": "3.758.0",
-
"@aws-sdk/region-config-resolver": "3.734.0",
-
"@aws-sdk/types": "3.734.0",
-
"@aws-sdk/util-endpoints": "3.743.0",
-
"@aws-sdk/util-user-agent-browser": "3.734.0",
-
"@aws-sdk/util-user-agent-node": "3.758.0",
-
"@smithy/config-resolver": "^4.0.1",
-
"@smithy/core": "^3.1.5",
-
"@smithy/fetch-http-handler": "^5.0.1",
-
"@smithy/hash-node": "^4.0.1",
-
"@smithy/invalid-dependency": "^4.0.1",
-
"@smithy/middleware-content-length": "^4.0.1",
-
"@smithy/middleware-endpoint": "^4.0.6",
-
"@smithy/middleware-retry": "^4.0.7",
-
"@smithy/middleware-serde": "^4.0.2",
-
"@smithy/middleware-stack": "^4.0.1",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/node-http-handler": "^4.0.3",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"@smithy/url-parser": "^4.0.1",
-
"@smithy/util-base64": "^4.0.0",
-
"@smithy/util-body-length-browser": "^4.0.0",
-
"@smithy/util-body-length-node": "^4.0.0",
-
"@smithy/util-defaults-mode-browser": "^4.0.7",
-
"@smithy/util-defaults-mode-node": "^4.0.7",
-
"@smithy/util-endpoints": "^3.0.1",
-
"@smithy/util-middleware": "^4.0.1",
-
"@smithy/util-retry": "^4.0.1",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/client-sso": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.758.0.tgz",
-
"integrity": "sha512-BoGO6IIWrLyLxQG6txJw6RT2urmbtlwfggapNCrNPyYjlXpzTSJhBYjndg7TpDATFd0SXL0zm8y/tXsUXNkdYQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-crypto/sha256-browser": "5.2.0",
-
"@aws-crypto/sha256-js": "5.2.0",
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/middleware-host-header": "3.734.0",
-
"@aws-sdk/middleware-logger": "3.734.0",
-
"@aws-sdk/middleware-recursion-detection": "3.734.0",
-
"@aws-sdk/middleware-user-agent": "3.758.0",
-
"@aws-sdk/region-config-resolver": "3.734.0",
-
"@aws-sdk/types": "3.734.0",
-
"@aws-sdk/util-endpoints": "3.743.0",
-
"@aws-sdk/util-user-agent-browser": "3.734.0",
-
"@aws-sdk/util-user-agent-node": "3.758.0",
-
"@smithy/config-resolver": "^4.0.1",
-
"@smithy/core": "^3.1.5",
-
"@smithy/fetch-http-handler": "^5.0.1",
-
"@smithy/hash-node": "^4.0.1",
-
"@smithy/invalid-dependency": "^4.0.1",
-
"@smithy/middleware-content-length": "^4.0.1",
-
"@smithy/middleware-endpoint": "^4.0.6",
-
"@smithy/middleware-retry": "^4.0.7",
-
"@smithy/middleware-serde": "^4.0.2",
-
"@smithy/middleware-stack": "^4.0.1",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/node-http-handler": "^4.0.3",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"@smithy/url-parser": "^4.0.1",
-
"@smithy/util-base64": "^4.0.0",
-
"@smithy/util-body-length-browser": "^4.0.0",
-
"@smithy/util-body-length-node": "^4.0.0",
-
"@smithy/util-defaults-mode-browser": "^4.0.7",
-
"@smithy/util-defaults-mode-node": "^4.0.7",
-
"@smithy/util-endpoints": "^3.0.1",
-
"@smithy/util-middleware": "^4.0.1",
-
"@smithy/util-retry": "^4.0.1",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/core": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.758.0.tgz",
-
"integrity": "sha512-0RswbdR9jt/XKemaLNuxi2gGr4xGlHyGxkTdhSQzCyUe9A9OPCoLl3rIESRguQEech+oJnbHk/wuiwHqTuP9sg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/core": "^3.1.5",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/signature-v4": "^5.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-middleware": "^4.0.1",
-
"fast-xml-parser": "4.4.1",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-cognito-identity": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.758.0.tgz",
-
"integrity": "sha512-y/rHZqyChlEkNRr59gn4hv0gjhJwGmdCdW0JI1K9p3P9p7EurWGjr2M6+goTn3ilOlcAwrl5oFKR5jLt27TkOA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/client-cognito-identity": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-env": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.758.0.tgz",
-
"integrity": "sha512-N27eFoRrO6MeUNumtNHDW9WOiwfd59LPXPqDrIa3kWL/s+fOKFHb9xIcF++bAwtcZnAxKkgpDCUP+INNZskE+w==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-http": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.758.0.tgz",
-
"integrity": "sha512-Xt9/U8qUCiw1hihztWkNeIR+arg6P+yda10OuCHX6kFVx3auTlU7+hCqs3UxqniGU4dguHuftf3mRpi5/GJ33Q==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/fetch-http-handler": "^5.0.1",
-
"@smithy/node-http-handler": "^4.0.3",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-stream": "^4.1.2",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-ini": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.758.0.tgz",
-
"integrity": "sha512-cymSKMcP5d+OsgetoIZ5QCe1wnp2Q/tq+uIxVdh9MbfdBBEnl9Ecq6dH6VlYS89sp4QKuxHxkWXVnbXU3Q19Aw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/credential-provider-env": "3.758.0",
-
"@aws-sdk/credential-provider-http": "3.758.0",
-
"@aws-sdk/credential-provider-process": "3.758.0",
-
"@aws-sdk/credential-provider-sso": "3.758.0",
-
"@aws-sdk/credential-provider-web-identity": "3.758.0",
-
"@aws-sdk/nested-clients": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/credential-provider-imds": "^4.0.1",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/shared-ini-file-loader": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-node": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.758.0.tgz",
-
"integrity": "sha512-+DaMv63wiq7pJrhIQzZYMn4hSarKiizDoJRvyR7WGhnn0oQ/getX9Z0VNCV3i7lIFoLNTb7WMmQ9k7+z/uD5EQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/credential-provider-env": "3.758.0",
-
"@aws-sdk/credential-provider-http": "3.758.0",
-
"@aws-sdk/credential-provider-ini": "3.758.0",
-
"@aws-sdk/credential-provider-process": "3.758.0",
-
"@aws-sdk/credential-provider-sso": "3.758.0",
-
"@aws-sdk/credential-provider-web-identity": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/credential-provider-imds": "^4.0.1",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/shared-ini-file-loader": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-process": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.758.0.tgz",
-
"integrity": "sha512-AzcY74QTPqcbXWVgjpPZ3HOmxQZYPROIBz2YINF0OQk0MhezDWV/O7Xec+K1+MPGQO3qS6EDrUUlnPLjsqieHA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/shared-ini-file-loader": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-sso": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.758.0.tgz",
-
"integrity": "sha512-x0FYJqcOLUCv8GLLFDYMXRAQKGjoM+L0BG4BiHYZRDf24yQWFCAZsCQAYKo6XZYh2qznbsW6f//qpyJ5b0QVKQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/client-sso": "3.758.0",
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/token-providers": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/shared-ini-file-loader": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-provider-web-identity": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.758.0.tgz",
-
"integrity": "sha512-XGguXhBqiCXMXRxcfCAVPlMbm3VyJTou79r/3mxWddHWF0XbhaQiBIbUz6vobVTD25YQRbWSmSch7VA8kI5Lrw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/nested-clients": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/credential-providers": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.758.0.tgz",
-
"integrity": "sha512-BaGVBdm9ynsErIc/mLuUwJ1OQcL/pkhCuAm24jpsif3evZ5wgyZnEAZB2yRin+mQnQaQT3L+KvTbdKGfjL8+fQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/client-cognito-identity": "3.758.0",
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/credential-provider-cognito-identity": "3.758.0",
-
"@aws-sdk/credential-provider-env": "3.758.0",
-
"@aws-sdk/credential-provider-http": "3.758.0",
-
"@aws-sdk/credential-provider-ini": "3.758.0",
-
"@aws-sdk/credential-provider-node": "3.758.0",
-
"@aws-sdk/credential-provider-process": "3.758.0",
-
"@aws-sdk/credential-provider-sso": "3.758.0",
-
"@aws-sdk/credential-provider-web-identity": "3.758.0",
-
"@aws-sdk/nested-clients": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/core": "^3.1.5",
-
"@smithy/credential-provider-imds": "^4.0.1",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/middleware-host-header": {
-
"version": "3.734.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.734.0.tgz",
-
"integrity": "sha512-LW7RRgSOHHBzWZnigNsDIzu3AiwtjeI2X66v+Wn1P1u+eXssy1+up4ZY/h+t2sU4LU36UvEf+jrZti9c6vRnFw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/middleware-logger": {
-
"version": "3.734.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.734.0.tgz",
-
"integrity": "sha512-mUMFITpJUW3LcKvFok176eI5zXAUomVtahb9IQBwLzkqFYOrMJvWAvoV4yuxrJ8TlQBG8gyEnkb9SnhZvjg67w==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/middleware-recursion-detection": {
-
"version": "3.734.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.734.0.tgz",
-
"integrity": "sha512-CUat2d9ITsFc2XsmeiRQO96iWpxSKYFjxvj27Hc7vo87YUHRnfMfnc8jw1EpxEwMcvBD7LsRa6vDNky6AjcrFA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/middleware-user-agent": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.758.0.tgz",
-
"integrity": "sha512-iNyehQXtQlj69JCgfaOssgZD4HeYGOwxcaKeG6F+40cwBjTAi0+Ph1yfDwqk2qiBPIRWJ/9l2LodZbxiBqgrwg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@aws-sdk/util-endpoints": "3.743.0",
-
"@smithy/core": "^3.1.5",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/nested-clients": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.758.0.tgz",
-
"integrity": "sha512-YZ5s7PSvyF3Mt2h1EQulCG93uybprNGbBkPmVuy/HMMfbFTt4iL3SbKjxqvOZelm86epFfj7pvK7FliI2WOEcg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-crypto/sha256-browser": "5.2.0",
-
"@aws-crypto/sha256-js": "5.2.0",
-
"@aws-sdk/core": "3.758.0",
-
"@aws-sdk/middleware-host-header": "3.734.0",
-
"@aws-sdk/middleware-logger": "3.734.0",
-
"@aws-sdk/middleware-recursion-detection": "3.734.0",
-
"@aws-sdk/middleware-user-agent": "3.758.0",
-
"@aws-sdk/region-config-resolver": "3.734.0",
-
"@aws-sdk/types": "3.734.0",
-
"@aws-sdk/util-endpoints": "3.743.0",
-
"@aws-sdk/util-user-agent-browser": "3.734.0",
-
"@aws-sdk/util-user-agent-node": "3.758.0",
-
"@smithy/config-resolver": "^4.0.1",
-
"@smithy/core": "^3.1.5",
-
"@smithy/fetch-http-handler": "^5.0.1",
-
"@smithy/hash-node": "^4.0.1",
-
"@smithy/invalid-dependency": "^4.0.1",
-
"@smithy/middleware-content-length": "^4.0.1",
-
"@smithy/middleware-endpoint": "^4.0.6",
-
"@smithy/middleware-retry": "^4.0.7",
-
"@smithy/middleware-serde": "^4.0.2",
-
"@smithy/middleware-stack": "^4.0.1",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/node-http-handler": "^4.0.3",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"@smithy/url-parser": "^4.0.1",
-
"@smithy/util-base64": "^4.0.0",
-
"@smithy/util-body-length-browser": "^4.0.0",
-
"@smithy/util-body-length-node": "^4.0.0",
-
"@smithy/util-defaults-mode-browser": "^4.0.7",
-
"@smithy/util-defaults-mode-node": "^4.0.7",
-
"@smithy/util-endpoints": "^3.0.1",
-
"@smithy/util-middleware": "^4.0.1",
-
"@smithy/util-retry": "^4.0.1",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/region-config-resolver": {
-
"version": "3.734.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.734.0.tgz",
-
"integrity": "sha512-Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-config-provider": "^4.0.0",
-
"@smithy/util-middleware": "^4.0.1",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/token-providers": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.758.0.tgz",
-
"integrity": "sha512-ckptN1tNrIfQUaGWm/ayW1ddG+imbKN7HHhjFdS4VfItsP0QQOB0+Ov+tpgb4MoNR4JaUghMIVStjIeHN2ks1w==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/nested-clients": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/shared-ini-file-loader": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/types": {
-
"version": "3.734.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.734.0.tgz",
-
"integrity": "sha512-o11tSPTT70nAkGV1fN9wm/hAIiLPyWX6SuGf+9JyTp7S/rC2cFWhR26MvA69nplcjNaXVzB0f+QFrLXXjOqCrg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/util-endpoints": {
-
"version": "3.743.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.743.0.tgz",
-
"integrity": "sha512-sN1l559zrixeh5x+pttrnd0A3+r34r0tmPkJ/eaaMaAzXqsmKU/xYre9K3FNnsSS1J1k4PEfk/nHDTVUgFYjnw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-endpoints": "^3.0.1",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/util-locate-window": {
-
"version": "3.723.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.723.0.tgz",
-
"integrity": "sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@aws-sdk/util-user-agent-browser": {
-
"version": "3.734.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.734.0.tgz",
-
"integrity": "sha512-xQTCus6Q9LwUuALW+S76OL0jcWtMOVu14q+GoLnWPUM7QeUw963oQcLhF7oq0CtaLLKyl4GOUfcwc773Zmwwng==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/types": "^4.1.0",
-
"bowser": "^2.11.0",
-
"tslib": "^2.6.2"
-
}
-
},
-
"node_modules/@aws-sdk/util-user-agent-node": {
-
"version": "3.758.0",
-
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.758.0.tgz",
-
"integrity": "sha512-A5EZw85V6WhoKMV2hbuFRvb9NPlxEErb4HPO6/SPXYY4QrjprIzScHxikqcWv1w4J3apB1wto9LPU3IMsYtfrw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/middleware-user-agent": "3.758.0",
-
"@aws-sdk/types": "3.734.0",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
},
-
"peerDependencies": {
-
"aws-crt": ">=1.0.0"
-
},
-
"peerDependenciesMeta": {
-
"aws-crt": {
-
"optional": true
-
}
-
}
-
},
-
"node_modules/@babel/code-frame": {
-
"version": "7.26.2",
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
-
"integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/helper-validator-identifier": "^7.25.9",
-
"js-tokens": "^4.0.0",
-
"picocolors": "^1.0.0"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/compat-data": {
-
"version": "7.26.8",
-
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz",
-
"integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/core": {
-
"version": "7.26.9",
-
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz",
-
"integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==",
-
"license": "MIT",
-
"dependencies": {
-
"@ampproject/remapping": "^2.2.0",
-
"@babel/code-frame": "^7.26.2",
-
"@babel/generator": "^7.26.9",
-
"@babel/helper-compilation-targets": "^7.26.5",
-
"@babel/helper-module-transforms": "^7.26.0",
-
"@babel/helpers": "^7.26.9",
-
"@babel/parser": "^7.26.9",
-
"@babel/template": "^7.26.9",
-
"@babel/traverse": "^7.26.9",
-
"@babel/types": "^7.26.9",
-
"convert-source-map": "^2.0.0",
-
"debug": "^4.1.0",
-
"gensync": "^1.0.0-beta.2",
-
"json5": "^2.2.3",
-
"semver": "^6.3.1"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
},
-
"funding": {
-
"type": "opencollective",
-
"url": "https://opencollective.com/babel"
-
}
-
},
-
"node_modules/@babel/core/node_modules/semver": {
-
"version": "6.3.1",
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
-
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
-
"license": "ISC",
-
"bin": {
-
"semver": "bin/semver.js"
-
}
-
},
-
"node_modules/@babel/generator": {
-
"version": "7.26.9",
-
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz",
-
"integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/parser": "^7.26.9",
-
"@babel/types": "^7.26.9",
-
"@jridgewell/gen-mapping": "^0.3.5",
-
"@jridgewell/trace-mapping": "^0.3.25",
-
"jsesc": "^3.0.2"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/helper-compilation-targets": {
-
"version": "7.26.5",
-
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
-
"integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/compat-data": "^7.26.5",
-
"@babel/helper-validator-option": "^7.25.9",
-
"browserslist": "^4.24.0",
-
"lru-cache": "^5.1.1",
-
"semver": "^6.3.1"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
-
"version": "5.1.1",
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
-
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
-
"license": "ISC",
-
"dependencies": {
-
"yallist": "^3.0.2"
-
}
-
},
-
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
-
"version": "6.3.1",
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
-
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
-
"license": "ISC",
-
"bin": {
-
"semver": "bin/semver.js"
-
}
-
},
-
"node_modules/@babel/helper-compilation-targets/node_modules/yallist": {
-
"version": "3.1.1",
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
-
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
-
"license": "ISC"
-
},
-
"node_modules/@babel/helper-module-imports": {
-
"version": "7.25.9",
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
-
"integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/traverse": "^7.25.9",
-
"@babel/types": "^7.25.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/helper-module-transforms": {
-
"version": "7.26.0",
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
-
"integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/helper-module-imports": "^7.25.9",
-
"@babel/helper-validator-identifier": "^7.25.9",
-
"@babel/traverse": "^7.25.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
},
-
"peerDependencies": {
-
"@babel/core": "^7.0.0"
-
}
-
},
-
"node_modules/@babel/helper-plugin-utils": {
-
"version": "7.26.5",
-
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
-
"integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/helper-string-parser": {
-
"version": "7.25.9",
-
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
-
"integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/helper-validator-identifier": {
-
"version": "7.25.9",
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
-
"integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/helper-validator-option": {
-
"version": "7.25.9",
-
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
-
"integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/helpers": {
-
"version": "7.26.9",
-
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz",
-
"integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/template": "^7.26.9",
-
"@babel/types": "^7.26.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/parser": {
-
"version": "7.26.9",
-
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz",
-
"integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/types": "^7.26.9"
-
},
-
"bin": {
-
"parser": "bin/babel-parser.js"
-
},
-
"engines": {
-
"node": ">=6.0.0"
-
}
-
},
-
"node_modules/@babel/plugin-transform-destructuring": {
-
"version": "7.25.9",
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz",
-
"integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/helper-plugin-utils": "^7.25.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
},
-
"peerDependencies": {
-
"@babel/core": "^7.0.0-0"
-
}
-
},
-
"node_modules/@babel/plugin-transform-parameters": {
-
"version": "7.25.9",
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz",
-
"integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/helper-plugin-utils": "^7.25.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
},
-
"peerDependencies": {
-
"@babel/core": "^7.0.0-0"
-
}
-
},
-
"node_modules/@babel/plugin-transform-shorthand-properties": {
-
"version": "7.25.9",
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz",
-
"integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/helper-plugin-utils": "^7.25.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
},
-
"peerDependencies": {
-
"@babel/core": "^7.0.0-0"
-
}
-
},
-
"node_modules/@babel/template": {
-
"version": "7.26.9",
-
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
-
"integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/code-frame": "^7.26.2",
-
"@babel/parser": "^7.26.9",
-
"@babel/types": "^7.26.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/traverse": {
-
"version": "7.26.9",
-
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz",
-
"integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/code-frame": "^7.26.2",
-
"@babel/generator": "^7.26.9",
-
"@babel/parser": "^7.26.9",
-
"@babel/template": "^7.26.9",
-
"@babel/types": "^7.26.9",
-
"debug": "^4.3.1",
-
"globals": "^11.1.0"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@babel/types": {
-
"version": "7.26.9",
-
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz",
-
"integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
-
"license": "MIT",
-
"dependencies": {
-
"@babel/helper-string-parser": "^7.25.9",
-
"@babel/helper-validator-identifier": "^7.25.9"
-
},
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/@isaacs/cliui": {
-
"version": "8.0.2",
-
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
-
"integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
-
"license": "ISC",
-
"dependencies": {
-
"string-width": "^5.1.2",
-
"string-width-cjs": "npm:string-width@^4.2.0",
-
"strip-ansi": "^7.0.1",
-
"strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
-
"wrap-ansi": "^8.1.0",
-
"wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
-
},
-
"engines": {
-
"node": ">=12"
-
}
-
},
-
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
-
"version": "6.1.0",
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
-
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
-
}
-
},
-
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
-
"version": "7.1.0",
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
-
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-regex": "^6.0.1"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
-
}
-
},
-
"node_modules/@jridgewell/gen-mapping": {
-
"version": "0.3.8",
-
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
-
"integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
-
"license": "MIT",
-
"dependencies": {
-
"@jridgewell/set-array": "^1.2.1",
-
"@jridgewell/sourcemap-codec": "^1.4.10",
-
"@jridgewell/trace-mapping": "^0.3.24"
-
},
-
"engines": {
-
"node": ">=6.0.0"
-
}
-
},
-
"node_modules/@jridgewell/resolve-uri": {
-
"version": "3.1.2",
-
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
-
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.0.0"
-
}
-
},
-
"node_modules/@jridgewell/set-array": {
-
"version": "1.2.1",
-
"resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
-
"integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.0.0"
-
}
-
},
-
"node_modules/@jridgewell/sourcemap-codec": {
-
"version": "1.5.0",
-
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
-
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
-
"license": "MIT"
-
},
-
"node_modules/@jridgewell/trace-mapping": {
-
"version": "0.3.25",
-
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
-
"integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
-
"license": "MIT",
-
"dependencies": {
-
"@jridgewell/resolve-uri": "^3.1.0",
-
"@jridgewell/sourcemap-codec": "^1.4.14"
-
}
-
},
-
"node_modules/@lukeed/csprng": {
-
"version": "1.1.0",
-
"resolved": "https://registry.npmjs.org/@lukeed/csprng/-/csprng-1.1.0.tgz",
-
"integrity": "sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/@lukeed/uuid": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/@lukeed/uuid/-/uuid-2.0.1.tgz",
-
"integrity": "sha512-qC72D4+CDdjGqJvkFMMEAtancHUQ7/d/tAiHf64z8MopFDmcrtbcJuerDtFceuAfQJ2pDSfCKCtbqoGBNnwg0w==",
-
"license": "MIT",
-
"dependencies": {
-
"@lukeed/csprng": "^1.1.0"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/@mongodb-js/devtools-connect": {
-
"version": "3.7.0",
-
"resolved": "https://registry.npmjs.org/@mongodb-js/devtools-connect/-/devtools-connect-3.7.0.tgz",
-
"integrity": "sha512-j/8Wgfp7La/5Rz52Vyic8aK1GnMEGMVN3TCB+P6/QNFVYpWp81SEy8kW12oIFvNUKgpzV75o9Ixb2K44r15J0w==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/devtools-proxy-support": "^0.4.2",
-
"@mongodb-js/oidc-http-server-pages": "1.1.3",
-
"lodash.merge": "^4.6.2",
-
"mongodb-connection-string-url": "^3.0.0",
-
"socks": "^2.7.3"
-
},
-
"optionalDependencies": {
-
"kerberos": "^2.1.0",
-
"mongodb-client-encryption": "^6.1.0",
-
"os-dns-native": "^1.2.0",
-
"resolve-mongodb-srv": "^1.1.1"
-
},
-
"peerDependencies": {
-
"@mongodb-js/oidc-plugin": "^1.1.0",
-
"mongodb": "^6.9.0",
-
"mongodb-log-writer": "^2.4.0"
-
}
-
},
-
"node_modules/@mongodb-js/devtools-proxy-support": {
-
"version": "0.4.2",
-
"resolved": "https://registry.npmjs.org/@mongodb-js/devtools-proxy-support/-/devtools-proxy-support-0.4.2.tgz",
-
"integrity": "sha512-CSsAsiAkVDkSV7/soKWlPskWYRQLlOJo7a1x+M/HdYgBulEacWpBHnKepwDsaJn/9GCIIcFCVO9nLS0tn1aGLQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/socksv5": "^0.0.10",
-
"agent-base": "^7.1.1",
-
"debug": "^4.3.6",
-
"http-proxy-agent": "^7.0.2",
-
"https-proxy-agent": "^7.0.5",
-
"lru-cache": "^11.0.0",
-
"node-fetch": "^3.3.2",
-
"pac-proxy-agent": "^7.0.2",
-
"socks-proxy-agent": "^8.0.4",
-
"ssh2": "^1.15.0",
-
"system-ca": "^2.0.1"
-
}
-
},
-
"node_modules/@mongodb-js/mongodb-constants": {
-
"version": "0.10.4",
-
"resolved": "https://registry.npmjs.org/@mongodb-js/mongodb-constants/-/mongodb-constants-0.10.4.tgz",
-
"integrity": "sha512-fz7AjwBfN6iwb3Luo9N7qOKifUHJd38nS6tWRtkLDeMesbK7GyrD8ngI85RlJMTeZQCzDEx+XGfth02tD4pNXg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"semver": "^7.5.4"
-
}
-
},
-
"node_modules/@mongodb-js/oidc-http-server-pages": {
-
"version": "1.1.3",
-
"resolved": "https://registry.npmjs.org/@mongodb-js/oidc-http-server-pages/-/oidc-http-server-pages-1.1.3.tgz",
-
"integrity": "sha512-I704bSQRu/SusTcCV8qqtdFVvAJf1aKZtgGM2VnYjPn2njZd5j7864k/CF9TeeR8+r0At5qqNa3N4MX9YxPnEg==",
-
"license": "Apache-2.0"
-
},
-
"node_modules/@mongodb-js/oidc-plugin": {
-
"version": "1.1.6",
-
"resolved": "https://registry.npmjs.org/@mongodb-js/oidc-plugin/-/oidc-plugin-1.1.6.tgz",
-
"integrity": "sha512-fuL4B9x1njcqdJqV+V3pt8s/9PX4uy9ojhcsP12BavDcg61ju6WEqCkDmUZCykDIvsDbb8tIhO97aCKDxcXROw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"express": "^4.18.2",
-
"open": "^9.1.0",
-
"openid-client": "^5.6.4"
-
},
-
"engines": {
-
"node": ">= 16.20.1"
-
}
-
},
-
"node_modules/@mongodb-js/saslprep": {
-
"version": "1.2.0",
-
"resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.2.0.tgz",
-
"integrity": "sha512-+ywrb0AqkfaYuhHs6LxKWgqbh3I72EpEgESCw37o+9qPx9WTCkgDm2B+eMrwehGtHBWHFU4GXvnSCNiFhhausg==",
-
"license": "MIT",
-
"dependencies": {
-
"sparse-bitfield": "^3.0.3"
-
}
-
},
-
"node_modules/@mongodb-js/socksv5": {
-
"version": "0.0.10",
-
"resolved": "https://registry.npmjs.org/@mongodb-js/socksv5/-/socksv5-0.0.10.tgz",
-
"integrity": "sha512-JDz2fLKsjMiSNUxKrCpGptsgu7DzsXfu4gnUQ3RhUaBS1d4YbLrt6HejpckAiHIAa+niBpZAeiUsoop0IihWsw==",
-
"license": "MIT",
-
"dependencies": {
-
"ip-address": "^9.0.5"
-
},
-
"engines": {
-
"node": ">=0.10.0"
-
}
-
},
-
"node_modules/@mongosh/arg-parser": {
-
"version": "3.8.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/arg-parser/-/arg-parser-3.8.0.tgz",
-
"integrity": "sha512-TJrJmcBsOmztSj7X0pe/lVsAz9gRaLN4YXTM3ynHCNxLVHKTyuk/cxIf3tEYweZPNfDXM4sSyMOO+Ervqn7dRg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongosh/errors": "2.4.0",
-
"@mongosh/i18n": "^2.11.0",
-
"mongodb-connection-string-url": "^3.0.1"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/async-rewriter2": {
-
"version": "2.4.6",
-
"resolved": "https://registry.npmjs.org/@mongosh/async-rewriter2/-/async-rewriter2-2.4.6.tgz",
-
"integrity": "sha512-v5Oq7eZ4dla13hKMbtFLVr0CHSOSeKHWoFxAtU8aD30N2ES2tT6i8/iNUMVsdF3zzLyzFfH/B81epDFNjNiOUA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@babel/core": "^7.22.8",
-
"@babel/plugin-transform-destructuring": "^7.22.5",
-
"@babel/plugin-transform-parameters": "^7.22.5",
-
"@babel/plugin-transform-shorthand-properties": "^7.22.5",
-
"@babel/types": "^7.22.5"
-
},
-
"bin": {
-
"async-rewrite": "bin/async-rewrite.js"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/autocomplete": {
-
"version": "3.8.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/autocomplete/-/autocomplete-3.8.0.tgz",
-
"integrity": "sha512-tw3g0J4JdY27HtM6l8+HEAYqUrVhCb1YxsotjF59mFnufBLlcskTvq3iP220YK3U4IOxQJZ3UkXv/XqLD+GExw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/mongodb-constants": "^0.10.1",
-
"@mongosh/shell-api": "3.8.0",
-
"semver": "^7.5.4"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/cli-repl": {
-
"version": "2.4.2",
-
"resolved": "https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.4.2.tgz",
-
"integrity": "sha512-rpLL/SXCmwh8bTqwfAJ8x9JldQeUDPq2t70cu0GXNSMCg6/1Ixkd0V9dJ4A3IrZnk8mox3P9ftQrwlhs5jkw4g==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/devtools-proxy-support": "^0.4.2",
-
"@mongosh/arg-parser": "3.8.0",
-
"@mongosh/autocomplete": "3.8.0",
-
"@mongosh/editor": "3.8.0",
-
"@mongosh/errors": "2.4.0",
-
"@mongosh/history": "2.4.6",
-
"@mongosh/i18n": "^2.11.0",
-
"@mongosh/js-multiline-to-singleline": "2.4.6",
-
"@mongosh/logging": "3.6.0",
-
"@mongosh/service-provider-core": "3.1.0",
-
"@mongosh/service-provider-node-driver": "3.6.0",
-
"@mongosh/shell-api": "3.8.0",
-
"@mongosh/shell-evaluator": "3.8.0",
-
"@mongosh/snippet-manager": "3.8.0",
-
"@mongosh/types": "3.6.0",
-
"@segment/analytics-node": "^1.3.0",
-
"ansi-escape-sequences": "^5.1.2",
-
"askcharacter": "^2.0.4",
-
"askpassword": "^2.0.2",
-
"escape-string-regexp": "^4.0.0",
-
"is-recoverable-error": "^1.0.3",
-
"js-yaml": "^4.1.0",
-
"mongodb-connection-string-url": "^3.0.1",
-
"mongodb-log-writer": "^2.3.1",
-
"numeral": "^2.0.6",
-
"pretty-repl": "^4.0.1",
-
"semver": "^7.5.4",
-
"strip-ansi": "^6.0.0",
-
"text-table": "^0.2.0",
-
"yargs-parser": "^20.2.4"
-
},
-
"bin": {
-
"mongosh": "bin/mongosh.js"
-
},
-
"engines": {
-
"node": ">=18.19.0"
-
},
-
"optionalDependencies": {
-
"get-console-process-list": "^1.0.5",
-
"glibc-version": "^1.0.0",
-
"macos-export-certificate-and-key": "^1.2.4",
-
"mongodb-crypt-library-version": "^1.0.5",
-
"win-export-certificate-and-key": "^2.1.0"
-
}
-
},
-
"node_modules/@mongosh/editor": {
-
"version": "3.8.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/editor/-/editor-3.8.0.tgz",
-
"integrity": "sha512-aEhGgzC8jpr0hN4aHpP/WR8uej8ZPPWX1yZduYLJia1oy6PvaPiVksfQRgtEAFjdOQXcwKfMal7+PYvhZoYD5w==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongosh/js-multiline-to-singleline": "2.4.6",
-
"@mongosh/service-provider-core": "3.1.0",
-
"@mongosh/shell-api": "3.8.0",
-
"@mongosh/shell-evaluator": "3.8.0",
-
"@mongosh/types": "3.6.0",
-
"js-beautify": "^1.15.1"
-
},
-
"engines": {
-
"node": ">=16.15.0"
-
}
-
},
-
"node_modules/@mongosh/errors": {
-
"version": "2.4.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/errors/-/errors-2.4.0.tgz",
-
"integrity": "sha512-2YwY4TYlrAy3VC9Y5Xa1OWlbdb57O0ZTDfntROFcfotrMXkZc9CU+jafrKRNcPJz8UAhoUcSTDJuaLpC3AutHg==",
-
"license": "Apache-2.0",
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/history": {
-
"version": "2.4.6",
-
"resolved": "https://registry.npmjs.org/@mongosh/history/-/history-2.4.6.tgz",
-
"integrity": "sha512-vEPJ0Y1FUM9aSxw/OQiV6QfAy0AjwZn9tMvFY27m4786jEM3hpJIPwDIRe33i7/hankLz8umsFrSTAnrT3icQw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"mongodb-connection-string-url": "^3.0.1",
-
"mongodb-redact": "^1.1.5"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/i18n": {
-
"version": "2.11.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/i18n/-/i18n-2.11.0.tgz",
-
"integrity": "sha512-juPSFP2+VMoC4Z6m9pVH/AChGSUtFA+LU3oIU6OlMNaCrVN2Hdz8hpL2mJn8prWdZdxTw+P0hBbqmqVusMKr8A==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongosh/errors": "2.4.0"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/js-multiline-to-singleline": {
-
"version": "2.4.6",
-
"resolved": "https://registry.npmjs.org/@mongosh/js-multiline-to-singleline/-/js-multiline-to-singleline-2.4.6.tgz",
-
"integrity": "sha512-ALaGE6CaXnGdbDK5Vgb9YOIQiVrnqwB6eDpmXBhYE6EEHUKMjy5s6ybvtAASzN3aHHzvt4nvqiAg8U58fYNjHQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@babel/core": "^7.16.12",
-
"@babel/types": "^7.21.2"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/logging": {
-
"version": "3.6.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/logging/-/logging-3.6.0.tgz",
-
"integrity": "sha512-f0fkAVNzV9Ja90DPpeQv2KL9zoYauUQh+ejoong4X88sEw5n1bYVOvng9Ic3tJFioGlcuWVe1waDDMio5SWElA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/devtools-connect": "^3.4.1",
-
"@mongosh/errors": "2.4.0",
-
"@mongosh/history": "2.4.6",
-
"@mongosh/types": "3.6.0",
-
"mongodb-log-writer": "^2.3.1",
-
"mongodb-redact": "^1.1.5"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/service-provider-core": {
-
"version": "3.1.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/service-provider-core/-/service-provider-core-3.1.0.tgz",
-
"integrity": "sha512-QSmTzmiD1Tlj9liWSqZJni12B8Afrqii3BoB96LMLHxPRkzTu+H9nWwYOF0d+IQaab7wW2HWDlpSJYhzgQdCKA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@aws-sdk/credential-providers": "^3.525.0",
-
"@mongosh/errors": "2.4.0",
-
"bson": "^6.10.3",
-
"mongodb": "^6.14.2",
-
"mongodb-build-info": "^1.7.2",
-
"mongodb-connection-string-url": "^3.0.1"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
},
-
"optionalDependencies": {
-
"mongodb-client-encryption": "^6.3.0"
-
}
-
},
-
"node_modules/@mongosh/service-provider-node-driver": {
-
"version": "3.6.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/service-provider-node-driver/-/service-provider-node-driver-3.6.0.tgz",
-
"integrity": "sha512-VOmOQ11qcz+nYjOyB/6nXuoZcLRSDLc+tVjt/ePtdC/5XQKSZB/Pwn9riBmnqOXleST8ATmmf6z9m44viSNpQg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/devtools-connect": "^3.4.1",
-
"@mongodb-js/oidc-plugin": "^1.1.6",
-
"@mongosh/errors": "2.4.0",
-
"@mongosh/service-provider-core": "3.1.0",
-
"@mongosh/types": "3.6.0",
-
"aws4": "^1.12.0",
-
"mongodb": "^6.14.2",
-
"mongodb-connection-string-url": "^3.0.1",
-
"socks": "^2.8.3"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
},
-
"optionalDependencies": {
-
"kerberos": "2.1.0",
-
"mongodb-client-encryption": "^6.1.1"
-
}
-
},
-
"node_modules/@mongosh/service-provider-node-driver/node_modules/kerberos": {
-
"version": "2.1.0",
-
"resolved": "https://registry.npmjs.org/kerberos/-/kerberos-2.1.0.tgz",
-
"integrity": "sha512-HvOl6O6cyEN/8Z4CAocHe/sekJtvt5UrxUdCuu7bXDZ2Hnsy6OpsQbISW+lpm03vrbO2ir+1QQ5Sx/vMEhHnog==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"dependencies": {
-
"bindings": "^1.5.0",
-
"node-addon-api": "^6.1.0",
-
"prebuild-install": "7.1.1"
-
},
-
"engines": {
-
"node": ">=12.9.0"
-
}
-
},
-
"node_modules/@mongosh/service-provider-node-driver/node_modules/napi-build-utils": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz",
-
"integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/@mongosh/service-provider-node-driver/node_modules/node-addon-api": {
-
"version": "6.1.0",
-
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz",
-
"integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/@mongosh/service-provider-node-driver/node_modules/prebuild-install": {
-
"version": "7.1.1",
-
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz",
-
"integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"detect-libc": "^2.0.0",
-
"expand-template": "^2.0.3",
-
"github-from-package": "0.0.0",
-
"minimist": "^1.2.3",
-
"mkdirp-classic": "^0.5.3",
-
"napi-build-utils": "^1.0.1",
-
"node-abi": "^3.3.0",
-
"pump": "^3.0.0",
-
"rc": "^1.2.7",
-
"simple-get": "^4.0.0",
-
"tar-fs": "^2.0.0",
-
"tunnel-agent": "^0.6.0"
-
},
-
"bin": {
-
"prebuild-install": "bin.js"
-
},
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/@mongosh/shell-api": {
-
"version": "3.8.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/shell-api/-/shell-api-3.8.0.tgz",
-
"integrity": "sha512-lZLa2ivb4EakGO5SQCvztQflLHoaF898crI8OuuFrWzGsrAcCyVFFXAFrphapufzx8mBCgmn2xip+xvsoLIrxA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongosh/arg-parser": "3.8.0",
-
"@mongosh/errors": "2.4.0",
-
"@mongosh/history": "2.4.6",
-
"@mongosh/i18n": "^2.11.0",
-
"@mongosh/service-provider-core": "3.1.0",
-
"mongodb-redact": "^1.1.5"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/shell-evaluator": {
-
"version": "3.8.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/shell-evaluator/-/shell-evaluator-3.8.0.tgz",
-
"integrity": "sha512-0ASfL5phYr12QGRzeiN+WUsTXwRbsnF8b6S5jrJ7k8YILLuTAPAEoT8lkRaC1ThjZraPVhuD84STf5eYk5JnPA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongosh/async-rewriter2": "2.4.6",
-
"@mongosh/history": "2.4.6",
-
"@mongosh/shell-api": "3.8.0"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/snippet-manager": {
-
"version": "3.8.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/snippet-manager/-/snippet-manager-3.8.0.tgz",
-
"integrity": "sha512-ziQAqD8zib/ISWMRvqMxsi/rs7sq1abu1zVueTQfF2DqUCm0rIj3tAyB4mjEn3gPw/oNN8P782M4dYtn/HB1tA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/devtools-proxy-support": "^0.4.2",
-
"@mongosh/errors": "2.4.0",
-
"@mongosh/shell-api": "3.8.0",
-
"@mongosh/types": "3.6.0",
-
"bson": "^6.10.3",
-
"cross-spawn": "^7.0.5",
-
"escape-string-regexp": "^4.0.0",
-
"tar": "^6.1.15",
-
"zod": "^3.24.1"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@mongosh/types": {
-
"version": "3.6.0",
-
"resolved": "https://registry.npmjs.org/@mongosh/types/-/types-3.6.0.tgz",
-
"integrity": "sha512-p6NXCTa4FjjTQAQJk9OehfXKFIE/vdQJOqcMbVR3Cxg2zVCnfV16NDnuxpFHYnLkgqL9Cz10BtUGSZPDMFJXew==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/devtools-connect": "^3.4.1"
-
},
-
"engines": {
-
"node": ">=14.15.1"
-
}
-
},
-
"node_modules/@one-ini/wasm": {
-
"version": "0.1.1",
-
"resolved": "https://registry.npmjs.org/@one-ini/wasm/-/wasm-0.1.1.tgz",
-
"integrity": "sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==",
-
"license": "MIT"
-
},
-
"node_modules/@pkgjs/parseargs": {
-
"version": "0.11.0",
-
"resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
-
"integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
-
"license": "MIT",
-
"optional": true,
-
"engines": {
-
"node": ">=14"
-
}
-
},
-
"node_modules/@segment/analytics-core": {
-
"version": "1.4.1",
-
"resolved": "https://registry.npmjs.org/@segment/analytics-core/-/analytics-core-1.4.1.tgz",
-
"integrity": "sha512-kV0Pf33HnthuBOVdYNani21kYyj118Fn+9757bxqoksiXoZlYvBsFq6giNdCsKcTIE1eAMqNDq3xE1VQ0cfsHA==",
-
"license": "MIT",
-
"dependencies": {
-
"@lukeed/uuid": "^2.0.0",
-
"@segment/analytics-generic-utils": "1.1.1",
-
"dset": "^3.1.2",
-
"tslib": "^2.4.1"
-
}
-
},
-
"node_modules/@segment/analytics-generic-utils": {
-
"version": "1.1.1",
-
"resolved": "https://registry.npmjs.org/@segment/analytics-generic-utils/-/analytics-generic-utils-1.1.1.tgz",
-
"integrity": "sha512-THTIzBPHnvu1HYJU3fARdJ3qIkukO3zDXsmDm+kAeUks5R9CBXOQ6rPChiASVzSmwAIIo5uFIXXnCraojlq/Gw==",
-
"license": "MIT",
-
"dependencies": {
-
"tslib": "^2.4.1"
-
}
-
},
-
"node_modules/@segment/analytics-node": {
-
"version": "1.3.0",
-
"resolved": "https://registry.npmjs.org/@segment/analytics-node/-/analytics-node-1.3.0.tgz",
-
"integrity": "sha512-lRLz1WZaDokMoUe299yP5JkInc3OgJuqNNlxb6j0q22umCiq6b5iDo2gRmFn93reirIvJxWIicQsGrHd93q8GQ==",
-
"license": "MIT",
-
"dependencies": {
-
"@lukeed/uuid": "^2.0.0",
-
"@segment/analytics-core": "1.4.1",
-
"@segment/analytics-generic-utils": "1.1.1",
-
"buffer": "^6.0.3",
-
"node-fetch": "^2.6.7",
-
"tslib": "^2.4.1"
-
},
-
"engines": {
-
"node": ">=14"
-
}
-
},
-
"node_modules/@segment/analytics-node/node_modules/node-fetch": {
-
"version": "2.7.0",
-
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
-
"integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==",
-
"license": "MIT",
-
"dependencies": {
-
"whatwg-url": "^5.0.0"
-
},
-
"engines": {
-
"node": "4.x || >=6.0.0"
-
},
-
"peerDependencies": {
-
"encoding": "^0.1.0"
-
},
-
"peerDependenciesMeta": {
-
"encoding": {
-
"optional": true
-
}
-
}
-
},
-
"node_modules/@segment/analytics-node/node_modules/tr46": {
-
"version": "0.0.3",
-
"resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
-
"integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
-
"license": "MIT"
-
},
-
"node_modules/@segment/analytics-node/node_modules/webidl-conversions": {
-
"version": "3.0.1",
-
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
-
"integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
-
"license": "BSD-2-Clause"
-
},
-
"node_modules/@segment/analytics-node/node_modules/whatwg-url": {
-
"version": "5.0.0",
-
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
-
"integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
-
"license": "MIT",
-
"dependencies": {
-
"tr46": "~0.0.3",
-
"webidl-conversions": "^3.0.0"
-
}
-
},
-
"node_modules/@smithy/abort-controller": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-4.0.1.tgz",
-
"integrity": "sha512-fiUIYgIgRjMWznk6iLJz35K2YxSLHzLBA/RC6lBrKfQ8fHbPfvk7Pk9UvpKoHgJjI18MnbPuEju53zcVy6KF1g==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/config-resolver": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-4.0.1.tgz",
-
"integrity": "sha512-Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-config-provider": "^4.0.0",
-
"@smithy/util-middleware": "^4.0.1",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/core": {
-
"version": "3.1.5",
-
"resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.1.5.tgz",
-
"integrity": "sha512-HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/middleware-serde": "^4.0.2",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-body-length-browser": "^4.0.0",
-
"@smithy/util-middleware": "^4.0.1",
-
"@smithy/util-stream": "^4.1.2",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/credential-provider-imds": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.0.1.tgz",
-
"integrity": "sha512-l/qdInaDq1Zpznpmev/+52QomsJNZ3JkTl5yrTl02V6NBgJOQ4LY0SFw/8zsMwj3tLe8vqiIuwF6nxaEwgf6mg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/url-parser": "^4.0.1",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/fetch-http-handler": {
-
"version": "5.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.0.1.tgz",
-
"integrity": "sha512-3aS+fP28urrMW2KTjb6z9iFow6jO8n3MFfineGbndvzGZit3taZhKWtTorf+Gp5RpFDDafeHlhfsGlDCXvUnJA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/querystring-builder": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-base64": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/hash-node": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-4.0.1.tgz",
-
"integrity": "sha512-TJ6oZS+3r2Xu4emVse1YPB3Dq3d8RkZDKcPr71Nj/lJsdAP1c7oFzYqEn1IBc915TsgLl2xIJNuxCz+gLbLE0w==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-buffer-from": "^4.0.0",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/invalid-dependency": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-4.0.1.tgz",
-
"integrity": "sha512-gdudFPf4QRQ5pzj7HEnu6FhKRi61BfH/Gk5Yf6O0KiSbr1LlVhgjThcvjdu658VE6Nve8vaIWB8/fodmS1rBPQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/is-array-buffer": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-4.0.0.tgz",
-
"integrity": "sha512-saYhF8ZZNoJDTvJBEWgeBccCg+yvp1CX+ed12yORU3NilJScfc6gfch2oVb4QgxZrGUx3/ZJlb+c/dJbyupxlw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/middleware-content-length": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-4.0.1.tgz",
-
"integrity": "sha512-OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/middleware-endpoint": {
-
"version": "4.0.6",
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.0.6.tgz",
-
"integrity": "sha512-ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/core": "^3.1.5",
-
"@smithy/middleware-serde": "^4.0.2",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/shared-ini-file-loader": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/url-parser": "^4.0.1",
-
"@smithy/util-middleware": "^4.0.1",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/middleware-retry": {
-
"version": "4.0.7",
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.0.7.tgz",
-
"integrity": "sha512-58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/service-error-classification": "^4.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-middleware": "^4.0.1",
-
"@smithy/util-retry": "^4.0.1",
-
"tslib": "^2.6.2",
-
"uuid": "^9.0.1"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/middleware-serde": {
-
"version": "4.0.2",
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-4.0.2.tgz",
-
"integrity": "sha512-Sdr5lOagCn5tt+zKsaW+U2/iwr6bI9p08wOkCp6/eL6iMbgdtc2R5Ety66rf87PeohR0ExI84Txz9GYv5ou3iQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/middleware-stack": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-4.0.1.tgz",
-
"integrity": "sha512-dHwDmrtR/ln8UTHpaIavRSzeIk5+YZTBtLnKwDW3G2t6nAupCiQUvNzNoHBpik63fwUaJPtlnMzXbQrNFWssIA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/node-config-provider": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-4.0.1.tgz",
-
"integrity": "sha512-8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/shared-ini-file-loader": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/node-http-handler": {
-
"version": "4.0.3",
-
"resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.0.3.tgz",
-
"integrity": "sha512-dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/abort-controller": "^4.0.1",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/querystring-builder": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/property-provider": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-4.0.1.tgz",
-
"integrity": "sha512-o+VRiwC2cgmk/WFV0jaETGOtX16VNPp2bSQEzu0whbReqE1BMqsP2ami2Vi3cbGVdKu1kq9gQkDAGKbt0WOHAQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/protocol-http": {
-
"version": "5.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-5.0.1.tgz",
-
"integrity": "sha512-TE4cpj49jJNB/oHyh/cRVEgNZaoPaxd4vteJNB0yGidOCVR0jCw/hjPVsT8Q8FRmj8Bd3bFZt8Dh7xGCT+xMBQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/querystring-builder": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-4.0.1.tgz",
-
"integrity": "sha512-wU87iWZoCbcqrwszsOewEIuq+SU2mSoBE2CcsLwE0I19m0B2gOJr1MVjxWcDQYOzHbR1xCk7AcOBbGFUYOKvdg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-uri-escape": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/querystring-parser": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-4.0.1.tgz",
-
"integrity": "sha512-Ma2XC7VS9aV77+clSFylVUnPZRindhB7BbmYiNOdr+CHt/kZNJoPP0cd3QxCnCFyPXC4eybmyE98phEHkqZ5Jw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/service-error-classification": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-4.0.1.tgz",
-
"integrity": "sha512-3JNjBfOWpj/mYfjXJHB4Txc/7E4LVq32bwzE7m28GN79+M1f76XHflUaSUkhOriprPDzev9cX/M+dEB80DNDKA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/shared-ini-file-loader": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.0.1.tgz",
-
"integrity": "sha512-hC8F6qTBbuHRI/uqDgqqi6J0R4GtEZcgrZPhFQnMhfJs3MnUTGSnR1NSJCJs5VWlMydu0kJz15M640fJlRsIOw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/signature-v4": {
-
"version": "5.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.0.1.tgz",
-
"integrity": "sha512-nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/is-array-buffer": "^4.0.0",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-hex-encoding": "^4.0.0",
-
"@smithy/util-middleware": "^4.0.1",
-
"@smithy/util-uri-escape": "^4.0.0",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/smithy-client": {
-
"version": "4.1.6",
-
"resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.1.6.tgz",
-
"integrity": "sha512-UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/core": "^3.1.5",
-
"@smithy/middleware-endpoint": "^4.0.6",
-
"@smithy/middleware-stack": "^4.0.1",
-
"@smithy/protocol-http": "^5.0.1",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-stream": "^4.1.2",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/types": {
-
"version": "4.1.0",
-
"resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.1.0.tgz",
-
"integrity": "sha512-enhjdwp4D7CXmwLtD6zbcDMbo6/T6WtuuKCY49Xxc6OMOmUWlBEBDREsxxgV2LIdeQPW756+f97GzcgAwp3iLw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/url-parser": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-4.0.1.tgz",
-
"integrity": "sha512-gPXcIEUtw7VlK8f/QcruNXm7q+T5hhvGu9tl63LsJPZ27exB6dtNwvh2HIi0v7JcXJ5emBxB+CJxwaLEdJfA+g==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/querystring-parser": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-base64": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-4.0.0.tgz",
-
"integrity": "sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/util-buffer-from": "^4.0.0",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-body-length-browser": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-4.0.0.tgz",
-
"integrity": "sha512-sNi3DL0/k64/LO3A256M+m3CDdG6V7WKWHdAiBBMUN8S3hK3aMPhwnPik2A/a2ONN+9doY9UxaLfgqsIRg69QA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-body-length-node": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-4.0.0.tgz",
-
"integrity": "sha512-q0iDP3VsZzqJyje8xJWEJCNIu3lktUGVoSy1KB0UWym2CL1siV3artm+u1DFYTLejpsrdGyCSWBdGNjJzfDPjg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-buffer-from": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-4.0.0.tgz",
-
"integrity": "sha512-9TOQ7781sZvddgO8nxueKi3+yGvkY35kotA0Y6BWRajAv8jjmigQ1sBwz0UX47pQMYXJPahSKEKYFgt+rXdcug==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/is-array-buffer": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-config-provider": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-4.0.0.tgz",
-
"integrity": "sha512-L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-defaults-mode-browser": {
-
"version": "4.0.7",
-
"resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.0.7.tgz",
-
"integrity": "sha512-CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"bowser": "^2.11.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-defaults-mode-node": {
-
"version": "4.0.7",
-
"resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.0.7.tgz",
-
"integrity": "sha512-79fQW3hnfCdrfIi1soPbK3zmooRFnLpSx3Vxi6nUlqaaQeC5dm8plt4OTNDNqEEEDkvKghZSaoti684dQFVrGQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/config-resolver": "^4.0.1",
-
"@smithy/credential-provider-imds": "^4.0.1",
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/property-provider": "^4.0.1",
-
"@smithy/smithy-client": "^4.1.6",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-endpoints": {
-
"version": "3.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-3.0.1.tgz",
-
"integrity": "sha512-zVdUENQpdtn9jbpD9SCFK4+aSiavRb9BxEtw9ZGUR1TYo6bBHbIoi7VkrFQ0/RwZlzx0wRBaRmPclj8iAoJCLA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/node-config-provider": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-hex-encoding": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-4.0.0.tgz",
-
"integrity": "sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-middleware": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-4.0.1.tgz",
-
"integrity": "sha512-HiLAvlcqhbzhuiOa0Lyct5IIlyIz0PQO5dnMlmQ/ubYM46dPInB+3yQGkfxsk6Q24Y0n3/JmcA1v5iEhmOF5mA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-retry": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-4.0.1.tgz",
-
"integrity": "sha512-WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/service-error-classification": "^4.0.1",
-
"@smithy/types": "^4.1.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-stream": {
-
"version": "4.1.2",
-
"resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.1.2.tgz",
-
"integrity": "sha512-44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/fetch-http-handler": "^5.0.1",
-
"@smithy/node-http-handler": "^4.0.3",
-
"@smithy/types": "^4.1.0",
-
"@smithy/util-base64": "^4.0.0",
-
"@smithy/util-buffer-from": "^4.0.0",
-
"@smithy/util-hex-encoding": "^4.0.0",
-
"@smithy/util-utf8": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-uri-escape": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-4.0.0.tgz",
-
"integrity": "sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@smithy/util-utf8": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-4.0.0.tgz",
-
"integrity": "sha512-b+zebfKCfRdgNJDknHCob3O7FpeYQN6ZG6YLExMcasDHsCXlsXCEuiPZeLnJLpwa5dvPetGlnGCiMHuLwGvFow==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@smithy/util-buffer-from": "^4.0.0",
-
"tslib": "^2.6.2"
-
},
-
"engines": {
-
"node": ">=18.0.0"
-
}
-
},
-
"node_modules/@tootallnate/quickjs-emscripten": {
-
"version": "0.23.0",
-
"resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz",
-
"integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==",
-
"license": "MIT"
-
},
-
"node_modules/@types/webidl-conversions": {
-
"version": "7.0.3",
-
"resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz",
-
"integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==",
-
"license": "MIT"
-
},
-
"node_modules/@types/whatwg-url": {
-
"version": "11.0.5",
-
"resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-11.0.5.tgz",
-
"integrity": "sha512-coYR071JRaHa+xoEvvYqvnIHaVqaYrLPbsufM9BF63HkwI5Lgmy2QR8Q5K/lYDYo5AK82wOvSOS0UsLTpTG7uQ==",
-
"license": "MIT",
-
"dependencies": {
-
"@types/webidl-conversions": "*"
-
}
-
},
-
"node_modules/abbrev": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz",
-
"integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==",
-
"license": "ISC",
-
"engines": {
-
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
-
}
-
},
-
"node_modules/accepts": {
-
"version": "1.3.8",
-
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
-
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
-
"license": "MIT",
-
"dependencies": {
-
"mime-types": "~2.1.34",
-
"negotiator": "0.6.3"
-
},
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/acorn": {
-
"version": "8.14.1",
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
-
"integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
-
"license": "MIT",
-
"bin": {
-
"acorn": "bin/acorn"
-
},
-
"engines": {
-
"node": ">=0.4.0"
-
}
-
},
-
"node_modules/acorn-class-fields": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-1.0.0.tgz",
-
"integrity": "sha512-l+1FokF34AeCXGBHkrXFmml9nOIRI+2yBnBpO5MaVAaTIJ96irWLtcCxX+7hAp6USHFCe+iyyBB4ZhxV807wmA==",
-
"license": "MIT",
-
"dependencies": {
-
"acorn-private-class-elements": "^1.0.0"
-
},
-
"engines": {
-
"node": ">=4.8.2"
-
},
-
"peerDependencies": {
-
"acorn": "^6 || ^7 || ^8"
-
}
-
},
-
"node_modules/acorn-numeric-separator": {
-
"version": "0.3.6",
-
"resolved": "https://registry.npmjs.org/acorn-numeric-separator/-/acorn-numeric-separator-0.3.6.tgz",
-
"integrity": "sha512-jUr5esgChu4k7VzesH/Nww3EysuyGJJcTEEiXqILUFKpO96PNyEXmK21M6nE0TSqGA1PeEg1MzgqJaoFsn9JMw==",
-
"deprecated": "acorn>=7.4 supports numeric separators",
-
"license": "MIT",
-
"engines": {
-
"node": ">=4.8.2"
-
},
-
"peerDependencies": {
-
"acorn": "^6 || ^7 || ^8"
-
}
-
},
-
"node_modules/acorn-private-class-elements": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-1.0.0.tgz",
-
"integrity": "sha512-zYNcZtxKgVCg1brS39BEou86mIao1EV7eeREG+6WMwKbuYTeivRRs6S2XdWnboRde6G9wKh2w+WBydEyJsJ6mg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=4.8.2"
-
},
-
"peerDependencies": {
-
"acorn": "^6.1.0 || ^7 || ^8"
-
}
-
},
-
"node_modules/acorn-private-methods": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/acorn-private-methods/-/acorn-private-methods-1.0.0.tgz",
-
"integrity": "sha512-Jou2L3nfwfPpFdmmHObI3yUpVPM1bPohTUAZCyVDw5Efyn9LSS6E36neRLCRfIr8QjskAfdxRdABOrvP4c/gwQ==",
-
"license": "MIT",
-
"dependencies": {
-
"acorn-private-class-elements": "^1.0.0"
-
},
-
"engines": {
-
"node": ">=4.8.2"
-
},
-
"peerDependencies": {
-
"acorn": "^6 || ^7 || ^8"
-
}
-
},
-
"node_modules/acorn-static-class-features": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-1.0.0.tgz",
-
"integrity": "sha512-XZJECjbmMOKvMHiNzbiPXuXpLAJfN3dAKtfIYbk1eHiWdsutlek+gS7ND4B8yJ3oqvHo1NxfafnezVmq7NXK0A==",
-
"license": "MIT",
-
"dependencies": {
-
"acorn-private-class-elements": "^1.0.0"
-
},
-
"engines": {
-
"node": ">=4.8.2"
-
},
-
"peerDependencies": {
-
"acorn": "^6.1.0 || ^7 || ^8"
-
}
-
},
-
"node_modules/agent-base": {
-
"version": "7.1.3",
-
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz",
-
"integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/ansi-escape-sequences": {
-
"version": "5.1.2",
-
"resolved": "https://registry.npmjs.org/ansi-escape-sequences/-/ansi-escape-sequences-5.1.2.tgz",
-
"integrity": "sha512-JcpoVp1W1bl1Qn4cVuiXEhD6+dyXKSOgCn2zlzE8inYgCJCBy1aPnUhlz6I4DFum8D4ovb9Qi/iAjUcGvG2lqw==",
-
"license": "MIT",
-
"dependencies": {
-
"array-back": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=8.0.0"
-
}
-
},
-
"node_modules/ansi-regex": {
-
"version": "5.0.1",
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
-
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/ansi-styles": {
-
"version": "4.3.0",
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
-
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
-
"license": "MIT",
-
"dependencies": {
-
"color-convert": "^2.0.1"
-
},
-
"engines": {
-
"node": ">=8"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
-
}
-
},
-
"node_modules/argparse": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
-
"license": "Python-2.0"
-
},
-
"node_modules/array-back": {
-
"version": "4.0.2",
-
"resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz",
-
"integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/array-flatten": {
-
"version": "1.1.1",
-
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
-
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
-
"license": "MIT"
-
},
-
"node_modules/askcharacter": {
-
"version": "2.0.4",
-
"resolved": "https://registry.npmjs.org/askcharacter/-/askcharacter-2.0.4.tgz",
-
"integrity": "sha512-SlLS4gA0/6BTcmUfuwySw5n3m8aOI3QlT3GTcQkmJwAVM/olola+S+g/FXggApIidQEKklLfGBZEmZ7Ru69CQw==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"hijack-stream": "^2.0.0"
-
}
-
},
-
"node_modules/askpassword": {
-
"version": "2.0.2",
-
"resolved": "https://registry.npmjs.org/askpassword/-/askpassword-2.0.2.tgz",
-
"integrity": "sha512-9j9uyceJQ8rezozTs8pM0cc+b+kn0UbfohhoMii4o/4YRj1IntvCCtRBDYG7bcbL+8f2xJ53Y34WXTUnzgcUyg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"handle-backspaces": "^2.0.0",
-
"hijack-stream": "^2.0.0"
-
}
-
},
-
"node_modules/asn1": {
-
"version": "0.2.6",
-
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz",
-
"integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
-
"license": "MIT",
-
"dependencies": {
-
"safer-buffer": "~2.1.0"
-
}
-
},
-
"node_modules/ast-types": {
-
"version": "0.13.4",
-
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz",
-
"integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
-
"license": "MIT",
-
"dependencies": {
-
"tslib": "^2.0.1"
-
},
-
"engines": {
-
"node": ">=4"
-
}
-
},
-
"node_modules/aws4": {
-
"version": "1.13.2",
-
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.2.tgz",
-
"integrity": "sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==",
-
"license": "MIT"
-
},
-
"node_modules/balanced-match": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
-
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
-
"license": "MIT"
-
},
-
"node_modules/base64-js": {
-
"version": "1.5.1",
-
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
-
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/feross"
-
},
-
{
-
"type": "patreon",
-
"url": "https://www.patreon.com/feross"
-
},
-
{
-
"type": "consulting",
-
"url": "https://feross.org/support"
-
}
-
],
-
"license": "MIT"
-
},
-
"node_modules/basic-ftp": {
-
"version": "5.0.5",
-
"resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz",
-
"integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=10.0.0"
-
}
-
},
-
"node_modules/bcrypt-pbkdf": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
-
"integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
-
"license": "BSD-3-Clause",
-
"dependencies": {
-
"tweetnacl": "^0.14.3"
-
}
-
},
-
"node_modules/big-integer": {
-
"version": "1.6.52",
-
"resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz",
-
"integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==",
-
"license": "Unlicense",
-
"engines": {
-
"node": ">=0.6"
-
}
-
},
-
"node_modules/bindings": {
-
"version": "1.5.0",
-
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
-
"integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"file-uri-to-path": "1.0.0"
-
}
-
},
-
"node_modules/bl": {
-
"version": "4.1.0",
-
"resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
-
"integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"buffer": "^5.5.0",
-
"inherits": "^2.0.4",
-
"readable-stream": "^3.4.0"
-
}
-
},
-
"node_modules/bl/node_modules/buffer": {
-
"version": "5.7.1",
-
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
-
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/feross"
-
},
-
{
-
"type": "patreon",
-
"url": "https://www.patreon.com/feross"
-
},
-
{
-
"type": "consulting",
-
"url": "https://feross.org/support"
-
}
-
],
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"base64-js": "^1.3.1",
-
"ieee754": "^1.1.13"
-
}
-
},
-
"node_modules/body-parser": {
-
"version": "1.20.3",
-
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz",
-
"integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==",
-
"license": "MIT",
-
"dependencies": {
-
"bytes": "3.1.2",
-
"content-type": "~1.0.5",
-
"debug": "2.6.9",
-
"depd": "2.0.0",
-
"destroy": "1.2.0",
-
"http-errors": "2.0.0",
-
"iconv-lite": "0.4.24",
-
"on-finished": "2.4.1",
-
"qs": "6.13.0",
-
"raw-body": "2.5.2",
-
"type-is": "~1.6.18",
-
"unpipe": "1.0.0"
-
},
-
"engines": {
-
"node": ">= 0.8",
-
"npm": "1.2.8000 || >= 1.4.16"
-
}
-
},
-
"node_modules/body-parser/node_modules/debug": {
-
"version": "2.6.9",
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-
"license": "MIT",
-
"dependencies": {
-
"ms": "2.0.0"
-
}
-
},
-
"node_modules/body-parser/node_modules/ms": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-
"license": "MIT"
-
},
-
"node_modules/bowser": {
-
"version": "2.11.0",
-
"resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz",
-
"integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==",
-
"license": "MIT"
-
},
-
"node_modules/bplist-parser": {
-
"version": "0.2.0",
-
"resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz",
-
"integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==",
-
"license": "MIT",
-
"dependencies": {
-
"big-integer": "^1.6.44"
-
},
-
"engines": {
-
"node": ">= 5.10.0"
-
}
-
},
-
"node_modules/brace-expansion": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
-
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
-
"license": "MIT",
-
"dependencies": {
-
"balanced-match": "^1.0.0"
-
}
-
},
-
"node_modules/browserslist": {
-
"version": "4.24.4",
-
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
-
"integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
-
"funding": [
-
{
-
"type": "opencollective",
-
"url": "https://opencollective.com/browserslist"
-
},
-
{
-
"type": "tidelift",
-
"url": "https://tidelift.com/funding/github/npm/browserslist"
-
},
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/ai"
-
}
-
],
-
"license": "MIT",
-
"dependencies": {
-
"caniuse-lite": "^1.0.30001688",
-
"electron-to-chromium": "^1.5.73",
-
"node-releases": "^2.0.19",
-
"update-browserslist-db": "^1.1.1"
-
},
-
"bin": {
-
"browserslist": "cli.js"
-
},
-
"engines": {
-
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
-
}
-
},
-
"node_modules/bson": {
-
"version": "6.10.3",
-
"resolved": "https://registry.npmjs.org/bson/-/bson-6.10.3.tgz",
-
"integrity": "sha512-MTxGsqgYTwfshYWTRdmZRC+M7FnG1b4y7RO7p2k3X24Wq0yv1m77Wsj0BzlPzd/IowgESfsruQCUToa7vbOpPQ==",
-
"license": "Apache-2.0",
-
"engines": {
-
"node": ">=16.20.1"
-
}
-
},
-
"node_modules/buffer": {
-
"version": "6.0.3",
-
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
-
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/feross"
-
},
-
{
-
"type": "patreon",
-
"url": "https://www.patreon.com/feross"
-
},
-
{
-
"type": "consulting",
-
"url": "https://feross.org/support"
-
}
-
],
-
"license": "MIT",
-
"dependencies": {
-
"base64-js": "^1.3.1",
-
"ieee754": "^1.2.1"
-
}
-
},
-
"node_modules/buildcheck": {
-
"version": "0.0.6",
-
"resolved": "https://registry.npmjs.org/buildcheck/-/buildcheck-0.0.6.tgz",
-
"integrity": "sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==",
-
"optional": true,
-
"engines": {
-
"node": ">=10.0.0"
-
}
-
},
-
"node_modules/bundle-name": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz",
-
"integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==",
-
"license": "MIT",
-
"dependencies": {
-
"run-applescript": "^5.0.0"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/bytes": {
-
"version": "3.1.2",
-
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
-
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/call-bind-apply-helpers": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
-
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
-
"license": "MIT",
-
"dependencies": {
-
"es-errors": "^1.3.0",
-
"function-bind": "^1.1.2"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/call-bound": {
-
"version": "1.0.4",
-
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
-
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
-
"license": "MIT",
-
"dependencies": {
-
"call-bind-apply-helpers": "^1.0.2",
-
"get-intrinsic": "^1.3.0"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/caniuse-lite": {
-
"version": "1.0.30001702",
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz",
-
"integrity": "sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==",
-
"funding": [
-
{
-
"type": "opencollective",
-
"url": "https://opencollective.com/browserslist"
-
},
-
{
-
"type": "tidelift",
-
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
-
},
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/ai"
-
}
-
],
-
"license": "CC-BY-4.0"
-
},
-
"node_modules/chalk": {
-
"version": "4.1.2",
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
-
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-styles": "^4.1.0",
-
"supports-color": "^7.1.0"
-
},
-
"engines": {
-
"node": ">=10"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/chalk?sponsor=1"
-
}
-
},
-
"node_modules/chownr": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
-
"integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
-
"license": "ISC",
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/color-convert": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
-
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
-
"license": "MIT",
-
"dependencies": {
-
"color-name": "~1.1.4"
-
},
-
"engines": {
-
"node": ">=7.0.0"
-
}
-
},
-
"node_modules/color-name": {
-
"version": "1.1.4",
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
-
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
-
"license": "MIT"
-
},
-
"node_modules/commander": {
-
"version": "10.0.1",
-
"resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz",
-
"integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=14"
-
}
-
},
-
"node_modules/config-chain": {
-
"version": "1.1.13",
-
"resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
-
"integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==",
-
"license": "MIT",
-
"dependencies": {
-
"ini": "^1.3.4",
-
"proto-list": "~1.2.1"
-
}
-
},
-
"node_modules/content-disposition": {
-
"version": "0.5.4",
-
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
-
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
-
"license": "MIT",
-
"dependencies": {
-
"safe-buffer": "5.2.1"
-
},
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/content-type": {
-
"version": "1.0.5",
-
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
-
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/convert-source-map": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
-
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
-
"license": "MIT"
-
},
-
"node_modules/cookie": {
-
"version": "0.7.1",
-
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
-
"integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/cookie-signature": {
-
"version": "1.0.6",
-
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
-
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
-
"license": "MIT"
-
},
-
"node_modules/cpu-features": {
-
"version": "0.0.10",
-
"resolved": "https://registry.npmjs.org/cpu-features/-/cpu-features-0.0.10.tgz",
-
"integrity": "sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==",
-
"hasInstallScript": true,
-
"optional": true,
-
"dependencies": {
-
"buildcheck": "~0.0.6",
-
"nan": "^2.19.0"
-
},
-
"engines": {
-
"node": ">=10.0.0"
-
}
-
},
-
"node_modules/cross-spawn": {
-
"version": "7.0.6",
-
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
-
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
-
"license": "MIT",
-
"dependencies": {
-
"path-key": "^3.1.0",
-
"shebang-command": "^2.0.0",
-
"which": "^2.0.1"
-
},
-
"engines": {
-
"node": ">= 8"
-
}
-
},
-
"node_modules/data-uri-to-buffer": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
-
"integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 12"
-
}
-
},
-
"node_modules/debug": {
-
"version": "4.4.0",
-
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
-
"integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
-
"license": "MIT",
-
"dependencies": {
-
"ms": "^2.1.3"
-
},
-
"engines": {
-
"node": ">=6.0"
-
},
-
"peerDependenciesMeta": {
-
"supports-color": {
-
"optional": true
-
}
-
}
-
},
-
"node_modules/decompress-response": {
-
"version": "6.0.0",
-
"resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
-
"integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"mimic-response": "^3.1.0"
-
},
-
"engines": {
-
"node": ">=10"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/deep-extend": {
-
"version": "0.6.0",
-
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
-
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
-
"license": "MIT",
-
"optional": true,
-
"engines": {
-
"node": ">=4.0.0"
-
}
-
},
-
"node_modules/default-browser": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz",
-
"integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==",
-
"license": "MIT",
-
"dependencies": {
-
"bundle-name": "^3.0.0",
-
"default-browser-id": "^3.0.0",
-
"execa": "^7.1.1",
-
"titleize": "^3.0.0"
-
},
-
"engines": {
-
"node": ">=14.16"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/default-browser-id": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz",
-
"integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==",
-
"license": "MIT",
-
"dependencies": {
-
"bplist-parser": "^0.2.0",
-
"untildify": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/define-lazy-prop": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
-
"integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/degenerator": {
-
"version": "5.0.1",
-
"resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz",
-
"integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
-
"license": "MIT",
-
"dependencies": {
-
"ast-types": "^0.13.4",
-
"escodegen": "^2.1.0",
-
"esprima": "^4.0.1"
-
},
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/depd": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
-
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/destroy": {
-
"version": "1.2.0",
-
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
-
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8",
-
"npm": "1.2.8000 || >= 1.4.16"
-
}
-
},
-
"node_modules/detect-libc": {
-
"version": "2.0.3",
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
-
"integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
-
"license": "Apache-2.0",
-
"optional": true,
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/dset": {
-
"version": "3.1.4",
-
"resolved": "https://registry.npmjs.org/dset/-/dset-3.1.4.tgz",
-
"integrity": "sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=4"
-
}
-
},
-
"node_modules/dunder-proto": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
-
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
-
"license": "MIT",
-
"dependencies": {
-
"call-bind-apply-helpers": "^1.0.1",
-
"es-errors": "^1.3.0",
-
"gopd": "^1.2.0"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/eastasianwidth": {
-
"version": "0.2.0",
-
"resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
-
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
-
"license": "MIT"
-
},
-
"node_modules/editorconfig": {
-
"version": "1.0.4",
-
"resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-1.0.4.tgz",
-
"integrity": "sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==",
-
"license": "MIT",
-
"dependencies": {
-
"@one-ini/wasm": "0.1.1",
-
"commander": "^10.0.0",
-
"minimatch": "9.0.1",
-
"semver": "^7.5.3"
-
},
-
"bin": {
-
"editorconfig": "bin/editorconfig"
-
},
-
"engines": {
-
"node": ">=14"
-
}
-
},
-
"node_modules/ee-first": {
-
"version": "1.1.1",
-
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
-
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
-
"license": "MIT"
-
},
-
"node_modules/electron-to-chromium": {
-
"version": "1.5.113",
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.113.tgz",
-
"integrity": "sha512-wjT2O4hX+wdWPJ76gWSkMhcHAV2PTMX+QetUCPYEdCIe+cxmgzzSSiGRCKW8nuh4mwKZlpv0xvoW7OF2X+wmHg==",
-
"license": "ISC"
-
},
-
"node_modules/emoji-regex": {
-
"version": "9.2.2",
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
-
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
-
"license": "MIT"
-
},
-
"node_modules/emphasize": {
-
"version": "4.2.0",
-
"resolved": "https://registry.npmjs.org/emphasize/-/emphasize-4.2.0.tgz",
-
"integrity": "sha512-yGKvcFUHlBsUPwlxTlzKLR8+zhpbitkFOMCUxN8fTJng9bdH3WNzUGkhdaGdjndSUgqmMPBN7umfwnUdLz5Axg==",
-
"license": "MIT",
-
"dependencies": {
-
"chalk": "^4.0.0",
-
"highlight.js": "~10.4.0",
-
"lowlight": "~1.17.0"
-
},
-
"funding": {
-
"type": "github",
-
"url": "https://github.com/sponsors/wooorm"
-
}
-
},
-
"node_modules/encodeurl": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
-
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/end-of-stream": {
-
"version": "1.4.4",
-
"resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
-
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"once": "^1.4.0"
-
}
-
},
-
"node_modules/es-define-property": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
-
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/es-errors": {
-
"version": "1.3.0",
-
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
-
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/es-object-atoms": {
-
"version": "1.1.1",
-
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
-
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
-
"license": "MIT",
-
"dependencies": {
-
"es-errors": "^1.3.0"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/escalade": {
-
"version": "3.2.0",
-
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
-
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/escape-html": {
-
"version": "1.0.3",
-
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
-
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
-
"license": "MIT"
-
},
-
"node_modules/escape-string-regexp": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
-
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=10"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/escodegen": {
-
"version": "2.1.0",
-
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
-
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
-
"license": "BSD-2-Clause",
-
"dependencies": {
-
"esprima": "^4.0.1",
-
"estraverse": "^5.2.0",
-
"esutils": "^2.0.2"
-
},
-
"bin": {
-
"escodegen": "bin/escodegen.js",
-
"esgenerate": "bin/esgenerate.js"
-
},
-
"engines": {
-
"node": ">=6.0"
-
},
-
"optionalDependencies": {
-
"source-map": "~0.6.1"
-
}
-
},
-
"node_modules/esprima": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
-
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
-
"license": "BSD-2-Clause",
-
"bin": {
-
"esparse": "bin/esparse.js",
-
"esvalidate": "bin/esvalidate.js"
-
},
-
"engines": {
-
"node": ">=4"
-
}
-
},
-
"node_modules/estraverse": {
-
"version": "5.3.0",
-
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
-
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
-
"license": "BSD-2-Clause",
-
"engines": {
-
"node": ">=4.0"
-
}
-
},
-
"node_modules/esutils": {
-
"version": "2.0.3",
-
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
-
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
-
"license": "BSD-2-Clause",
-
"engines": {
-
"node": ">=0.10.0"
-
}
-
},
-
"node_modules/etag": {
-
"version": "1.8.1",
-
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
-
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/execa": {
-
"version": "7.2.0",
-
"resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz",
-
"integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==",
-
"license": "MIT",
-
"dependencies": {
-
"cross-spawn": "^7.0.3",
-
"get-stream": "^6.0.1",
-
"human-signals": "^4.3.0",
-
"is-stream": "^3.0.0",
-
"merge-stream": "^2.0.0",
-
"npm-run-path": "^5.1.0",
-
"onetime": "^6.0.0",
-
"signal-exit": "^3.0.7",
-
"strip-final-newline": "^3.0.0"
-
},
-
"engines": {
-
"node": "^14.18.0 || ^16.14.0 || >=18.0.0"
-
},
-
"funding": {
-
"url": "https://github.com/sindresorhus/execa?sponsor=1"
-
}
-
},
-
"node_modules/execa/node_modules/signal-exit": {
-
"version": "3.0.7",
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
-
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
-
"license": "ISC"
-
},
-
"node_modules/expand-template": {
-
"version": "2.0.3",
-
"resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz",
-
"integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==",
-
"license": "(MIT OR WTFPL)",
-
"optional": true,
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/express": {
-
"version": "4.21.2",
-
"resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz",
-
"integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==",
-
"license": "MIT",
-
"dependencies": {
-
"accepts": "~1.3.8",
-
"array-flatten": "1.1.1",
-
"body-parser": "1.20.3",
-
"content-disposition": "0.5.4",
-
"content-type": "~1.0.4",
-
"cookie": "0.7.1",
-
"cookie-signature": "1.0.6",
-
"debug": "2.6.9",
-
"depd": "2.0.0",
-
"encodeurl": "~2.0.0",
-
"escape-html": "~1.0.3",
-
"etag": "~1.8.1",
-
"finalhandler": "1.3.1",
-
"fresh": "0.5.2",
-
"http-errors": "2.0.0",
-
"merge-descriptors": "1.0.3",
-
"methods": "~1.1.2",
-
"on-finished": "2.4.1",
-
"parseurl": "~1.3.3",
-
"path-to-regexp": "0.1.12",
-
"proxy-addr": "~2.0.7",
-
"qs": "6.13.0",
-
"range-parser": "~1.2.1",
-
"safe-buffer": "5.2.1",
-
"send": "0.19.0",
-
"serve-static": "1.16.2",
-
"setprototypeof": "1.2.0",
-
"statuses": "2.0.1",
-
"type-is": "~1.6.18",
-
"utils-merge": "1.0.1",
-
"vary": "~1.1.2"
-
},
-
"engines": {
-
"node": ">= 0.10.0"
-
},
-
"funding": {
-
"type": "opencollective",
-
"url": "https://opencollective.com/express"
-
}
-
},
-
"node_modules/express/node_modules/debug": {
-
"version": "2.6.9",
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-
"license": "MIT",
-
"dependencies": {
-
"ms": "2.0.0"
-
}
-
},
-
"node_modules/express/node_modules/ms": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-
"license": "MIT"
-
},
-
"node_modules/fast-xml-parser": {
-
"version": "4.4.1",
-
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.4.1.tgz",
-
"integrity": "sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/NaturalIntelligence"
-
},
-
{
-
"type": "paypal",
-
"url": "https://paypal.me/naturalintelligence"
-
}
-
],
-
"license": "MIT",
-
"dependencies": {
-
"strnum": "^1.0.5"
-
},
-
"bin": {
-
"fxparser": "src/cli/cli.js"
-
}
-
},
-
"node_modules/fault": {
-
"version": "1.0.4",
-
"resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz",
-
"integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==",
-
"license": "MIT",
-
"dependencies": {
-
"format": "^0.2.0"
-
},
-
"funding": {
-
"type": "github",
-
"url": "https://github.com/sponsors/wooorm"
-
}
-
},
-
"node_modules/fetch-blob": {
-
"version": "3.2.0",
-
"resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
-
"integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/jimmywarting"
-
},
-
{
-
"type": "paypal",
-
"url": "https://paypal.me/jimmywarting"
-
}
-
],
-
"license": "MIT",
-
"dependencies": {
-
"node-domexception": "^1.0.0",
-
"web-streams-polyfill": "^3.0.3"
-
},
-
"engines": {
-
"node": "^12.20 || >= 14.13"
-
}
-
},
-
"node_modules/file-uri-to-path": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz",
-
"integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/finalhandler": {
-
"version": "1.3.1",
-
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz",
-
"integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==",
-
"license": "MIT",
-
"dependencies": {
-
"debug": "2.6.9",
-
"encodeurl": "~2.0.0",
-
"escape-html": "~1.0.3",
-
"on-finished": "2.4.1",
-
"parseurl": "~1.3.3",
-
"statuses": "2.0.1",
-
"unpipe": "~1.0.0"
-
},
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/finalhandler/node_modules/debug": {
-
"version": "2.6.9",
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-
"license": "MIT",
-
"dependencies": {
-
"ms": "2.0.0"
-
}
-
},
-
"node_modules/finalhandler/node_modules/ms": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-
"license": "MIT"
-
},
-
"node_modules/foreground-child": {
-
"version": "3.3.1",
-
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
-
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
-
"license": "ISC",
-
"dependencies": {
-
"cross-spawn": "^7.0.6",
-
"signal-exit": "^4.0.1"
-
},
-
"engines": {
-
"node": ">=14"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/isaacs"
-
}
-
},
-
"node_modules/format": {
-
"version": "0.2.2",
-
"resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
-
"integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==",
-
"engines": {
-
"node": ">=0.4.x"
-
}
-
},
-
"node_modules/formdata-polyfill": {
-
"version": "4.0.10",
-
"resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
-
"integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
-
"license": "MIT",
-
"dependencies": {
-
"fetch-blob": "^3.1.2"
-
},
-
"engines": {
-
"node": ">=12.20.0"
-
}
-
},
-
"node_modules/forwarded": {
-
"version": "0.2.0",
-
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
-
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/fresh": {
-
"version": "0.5.2",
-
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
-
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/fs-constants": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
-
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/fs-minipass": {
-
"version": "2.1.0",
-
"resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
-
"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
-
"license": "ISC",
-
"dependencies": {
-
"minipass": "^3.0.0"
-
},
-
"engines": {
-
"node": ">= 8"
-
}
-
},
-
"node_modules/fs-minipass/node_modules/minipass": {
-
"version": "3.3.6",
-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
-
"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
-
"license": "ISC",
-
"dependencies": {
-
"yallist": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/function-bind": {
-
"version": "1.1.2",
-
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
-
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
-
"license": "MIT",
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/gensync": {
-
"version": "1.0.0-beta.2",
-
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
-
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6.9.0"
-
}
-
},
-
"node_modules/get-console-process-list": {
-
"version": "1.0.5",
-
"resolved": "https://registry.npmjs.org/get-console-process-list/-/get-console-process-list-1.0.5.tgz",
-
"integrity": "sha512-K73UHh6ht+MXnnuqQAE/5IjlevHV1ePiTy8yBLsZZPxmoY1KHtouW9E2K1bVLeQzHELztb38vFNak6J+2CNCuw==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"os": [
-
"win32"
-
],
-
"dependencies": {
-
"bindings": "^1.5.0",
-
"node-addon-api": "^4.3.0"
-
}
-
},
-
"node_modules/get-intrinsic": {
-
"version": "1.3.0",
-
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
-
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
-
"license": "MIT",
-
"dependencies": {
-
"call-bind-apply-helpers": "^1.0.2",
-
"es-define-property": "^1.0.1",
-
"es-errors": "^1.3.0",
-
"es-object-atoms": "^1.1.1",
-
"function-bind": "^1.1.2",
-
"get-proto": "^1.0.1",
-
"gopd": "^1.2.0",
-
"has-symbols": "^1.1.0",
-
"hasown": "^2.0.2",
-
"math-intrinsics": "^1.1.0"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/get-proto": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
-
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
-
"license": "MIT",
-
"dependencies": {
-
"dunder-proto": "^1.0.1",
-
"es-object-atoms": "^1.0.0"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/get-stream": {
-
"version": "6.0.1",
-
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
-
"integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=10"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/get-uri": {
-
"version": "6.0.4",
-
"resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.4.tgz",
-
"integrity": "sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==",
-
"license": "MIT",
-
"dependencies": {
-
"basic-ftp": "^5.0.2",
-
"data-uri-to-buffer": "^6.0.2",
-
"debug": "^4.3.4"
-
},
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/get-uri/node_modules/data-uri-to-buffer": {
-
"version": "6.0.2",
-
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz",
-
"integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/github-from-package": {
-
"version": "0.0.0",
-
"resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz",
-
"integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/glibc-version": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/glibc-version/-/glibc-version-1.0.1.tgz",
-
"integrity": "sha512-DHPD6Z5wY3ga11O3Izx3JSLDZve0SdRN4nAHC1XtagIjcwHk1OuseZpDr+VWPuTfoDn9H3mHtlKn2+7369raRQ==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"dependencies": {
-
"bindings": "^1.5.0",
-
"node-addon-api": "^8.0.0"
-
},
-
"bin": {
-
"glibc-version": "bin/glibc-version.js"
-
}
-
},
-
"node_modules/glibc-version/node_modules/node-addon-api": {
-
"version": "8.3.1",
-
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.3.1.tgz",
-
"integrity": "sha512-lytcDEdxKjGJPTLEfW4mYMigRezMlyJY8W4wxJK8zE533Jlb8L8dRuObJFWg2P+AuOIxoCgKF+2Oq4d4Zd0OUA==",
-
"license": "MIT",
-
"optional": true,
-
"engines": {
-
"node": "^18 || ^20 || >= 21"
-
}
-
},
-
"node_modules/glob": {
-
"version": "10.4.5",
-
"resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
-
"integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
-
"license": "ISC",
-
"dependencies": {
-
"foreground-child": "^3.1.0",
-
"jackspeak": "^3.1.2",
-
"minimatch": "^9.0.4",
-
"minipass": "^7.1.2",
-
"package-json-from-dist": "^1.0.0",
-
"path-scurry": "^1.11.1"
-
},
-
"bin": {
-
"glob": "dist/esm/bin.mjs"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/isaacs"
-
}
-
},
-
"node_modules/glob/node_modules/minimatch": {
-
"version": "9.0.5",
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
-
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
-
"license": "ISC",
-
"dependencies": {
-
"brace-expansion": "^2.0.1"
-
},
-
"engines": {
-
"node": ">=16 || 14 >=14.17"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/isaacs"
-
}
-
},
-
"node_modules/globals": {
-
"version": "11.12.0",
-
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
-
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=4"
-
}
-
},
-
"node_modules/gopd": {
-
"version": "1.2.0",
-
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
-
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/handle-backspaces": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/handle-backspaces/-/handle-backspaces-2.0.1.tgz",
-
"integrity": "sha512-l6yTgp6ihz8SjmzFOnYzuGqcqFMHGlTCiPMGmFRv0Yl4SnVq71l4miKYOAQ4cxUCjMfclzQYc0PvrmIHZETZYw==",
-
"license": "Apache-2.0"
-
},
-
"node_modules/has-flag": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
-
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/has-symbols": {
-
"version": "1.1.0",
-
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
-
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/hasown": {
-
"version": "2.0.2",
-
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
-
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
-
"license": "MIT",
-
"dependencies": {
-
"function-bind": "^1.1.2"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/heap-js": {
-
"version": "2.6.0",
-
"resolved": "https://registry.npmjs.org/heap-js/-/heap-js-2.6.0.tgz",
-
"integrity": "sha512-trFMIq3PATiFRiQmNNeHtsrkwYRByIXUbYNbotiY9RLVfMkdwZdd2eQ38mGt7BRiCKBaj1DyBAIHmm7mmXPuuw==",
-
"license": "BSD-3-Clause",
-
"engines": {
-
"node": ">=10.0.0"
-
}
-
},
-
"node_modules/highlight.js": {
-
"version": "10.4.1",
-
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.4.1.tgz",
-
"integrity": "sha512-yR5lWvNz7c85OhVAEAeFhVCc/GV4C30Fjzc/rCP0aCWzc1UUOPUk55dK/qdwTZHBvMZo+eZ2jpk62ndX/xMFlg==",
-
"license": "BSD-3-Clause",
-
"engines": {
-
"node": "*"
-
}
-
},
-
"node_modules/hijack-stream": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/hijack-stream/-/hijack-stream-2.0.1.tgz",
-
"integrity": "sha512-RDOUBy7x+iz6ljj7qQOjXZv3RKFLGjXTYV0Kdl7K3R3YlxqoyFt7PLxfbw3yYriHzZSzXp7Y/oaw1f58YvL1ig==",
-
"license": "Apache-2.0"
-
},
-
"node_modules/http-errors": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
-
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
-
"license": "MIT",
-
"dependencies": {
-
"depd": "2.0.0",
-
"inherits": "2.0.4",
-
"setprototypeof": "1.2.0",
-
"statuses": "2.0.1",
-
"toidentifier": "1.0.1"
-
},
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/http-proxy-agent": {
-
"version": "7.0.2",
-
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
-
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
-
"license": "MIT",
-
"dependencies": {
-
"agent-base": "^7.1.0",
-
"debug": "^4.3.4"
-
},
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/https-proxy-agent": {
-
"version": "7.0.6",
-
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
-
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
-
"license": "MIT",
-
"dependencies": {
-
"agent-base": "^7.1.2",
-
"debug": "4"
-
},
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/human-signals": {
-
"version": "4.3.1",
-
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz",
-
"integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==",
-
"license": "Apache-2.0",
-
"engines": {
-
"node": ">=14.18.0"
-
}
-
},
-
"node_modules/iconv-lite": {
-
"version": "0.4.24",
-
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
-
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
-
"license": "MIT",
-
"dependencies": {
-
"safer-buffer": ">= 2.1.2 < 3"
-
},
-
"engines": {
-
"node": ">=0.10.0"
-
}
-
},
-
"node_modules/ieee754": {
-
"version": "1.2.1",
-
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
-
"integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/feross"
-
},
-
{
-
"type": "patreon",
-
"url": "https://www.patreon.com/feross"
-
},
-
{
-
"type": "consulting",
-
"url": "https://feross.org/support"
-
}
-
],
-
"license": "BSD-3-Clause"
-
},
-
"node_modules/inherits": {
-
"version": "2.0.4",
-
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
-
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
-
"license": "ISC"
-
},
-
"node_modules/ini": {
-
"version": "1.3.8",
-
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
-
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
-
"license": "ISC"
-
},
-
"node_modules/ip-address": {
-
"version": "9.0.5",
-
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz",
-
"integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==",
-
"license": "MIT",
-
"dependencies": {
-
"jsbn": "1.1.0",
-
"sprintf-js": "^1.1.3"
-
},
-
"engines": {
-
"node": ">= 12"
-
}
-
},
-
"node_modules/ipaddr.js": {
-
"version": "1.9.1",
-
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
-
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.10"
-
}
-
},
-
"node_modules/ipv6-normalize": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/ipv6-normalize/-/ipv6-normalize-1.0.1.tgz",
-
"integrity": "sha512-Bm6H79i01DjgGTCWjUuCjJ6QDo1HB96PT/xCYuyJUP9WFbVDrLSbG4EZCvOCun2rNswZb0c3e4Jt/ws795esHA==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/is-docker": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
-
"integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
-
"license": "MIT",
-
"bin": {
-
"is-docker": "cli.js"
-
},
-
"engines": {
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/is-fullwidth-code-point": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
-
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/is-inside-container": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
-
"integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
-
"license": "MIT",
-
"dependencies": {
-
"is-docker": "^3.0.0"
-
},
-
"bin": {
-
"is-inside-container": "cli.js"
-
},
-
"engines": {
-
"node": ">=14.16"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/is-recoverable-error": {
-
"version": "1.0.3",
-
"resolved": "https://registry.npmjs.org/is-recoverable-error/-/is-recoverable-error-1.0.3.tgz",
-
"integrity": "sha512-T06goBQXH5WCzWtzuU+kYhT3Ui0d3wgk8n4GR/3n9UjgO6cuphhel+W02ps/Z2PYZB8C+l//XAJk9tR5Txo6/w==",
-
"license": "MIT",
-
"dependencies": {
-
"acorn": "^8.8.1",
-
"acorn-class-fields": "^1.0.0",
-
"acorn-numeric-separator": "^0.3.6",
-
"acorn-private-methods": "^1.0.0",
-
"acorn-static-class-features": "^1.0.0"
-
}
-
},
-
"node_modules/is-stream": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
-
"integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
-
"license": "MIT",
-
"engines": {
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/is-wsl": {
-
"version": "2.2.0",
-
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
-
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
-
"license": "MIT",
-
"dependencies": {
-
"is-docker": "^2.0.0"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/is-wsl/node_modules/is-docker": {
-
"version": "2.2.1",
-
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
-
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
-
"license": "MIT",
-
"bin": {
-
"is-docker": "cli.js"
-
},
-
"engines": {
-
"node": ">=8"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/isexe": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
-
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
-
"license": "ISC"
-
},
-
"node_modules/jackspeak": {
-
"version": "3.4.3",
-
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
-
"integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
-
"license": "BlueOak-1.0.0",
-
"dependencies": {
-
"@isaacs/cliui": "^8.0.2"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/isaacs"
-
},
-
"optionalDependencies": {
-
"@pkgjs/parseargs": "^0.11.0"
-
}
-
},
-
"node_modules/jose": {
-
"version": "4.15.9",
-
"resolved": "https://registry.npmjs.org/jose/-/jose-4.15.9.tgz",
-
"integrity": "sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==",
-
"license": "MIT",
-
"funding": {
-
"url": "https://github.com/sponsors/panva"
-
}
-
},
-
"node_modules/js-beautify": {
-
"version": "1.15.4",
-
"resolved": "https://registry.npmjs.org/js-beautify/-/js-beautify-1.15.4.tgz",
-
"integrity": "sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==",
-
"license": "MIT",
-
"dependencies": {
-
"config-chain": "^1.1.13",
-
"editorconfig": "^1.0.4",
-
"glob": "^10.4.2",
-
"js-cookie": "^3.0.5",
-
"nopt": "^7.2.1"
-
},
-
"bin": {
-
"css-beautify": "js/bin/css-beautify.js",
-
"html-beautify": "js/bin/html-beautify.js",
-
"js-beautify": "js/bin/js-beautify.js"
-
},
-
"engines": {
-
"node": ">=14"
-
}
-
},
-
"node_modules/js-cookie": {
-
"version": "3.0.5",
-
"resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz",
-
"integrity": "sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=14"
-
}
-
},
-
"node_modules/js-tokens": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
-
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
-
"license": "MIT"
-
},
-
"node_modules/js-yaml": {
-
"version": "4.1.0",
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
-
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
-
"license": "MIT",
-
"dependencies": {
-
"argparse": "^2.0.1"
-
},
-
"bin": {
-
"js-yaml": "bin/js-yaml.js"
-
}
-
},
-
"node_modules/jsbn": {
-
"version": "1.1.0",
-
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz",
-
"integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==",
-
"license": "MIT"
-
},
-
"node_modules/jsesc": {
-
"version": "3.1.0",
-
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
-
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
-
"license": "MIT",
-
"bin": {
-
"jsesc": "bin/jsesc"
-
},
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/json5": {
-
"version": "2.2.3",
-
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
-
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
-
"license": "MIT",
-
"bin": {
-
"json5": "lib/cli.js"
-
},
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/kerberos": {
-
"version": "2.2.1",
-
"resolved": "https://registry.npmjs.org/kerberos/-/kerberos-2.2.1.tgz",
-
"integrity": "sha512-Vlyv1tjAPb0y2VIJ03dKkUjsneGIBuTkH24uGRx6/DrKpFlVuGPmct3m5aEotljVUlw7PAGWABwR5aNeW7y8Zw==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"dependencies": {
-
"node-addon-api": "^6.1.0",
-
"prebuild-install": "^7.1.2"
-
},
-
"engines": {
-
"node": ">=12.9.0"
-
}
-
},
-
"node_modules/kerberos/node_modules/node-addon-api": {
-
"version": "6.1.0",
-
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz",
-
"integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/lodash.merge": {
-
"version": "4.6.2",
-
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
-
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
-
"license": "MIT"
-
},
-
"node_modules/lowlight": {
-
"version": "1.17.0",
-
"resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.17.0.tgz",
-
"integrity": "sha512-vmtBgYKD+QVNy7tIa7ulz5d//Il9R4MooOVh4nkOf9R9Cb/Dk5TXMSTieg/vDulkBkIWj59/BIlyFQxT9X1oAQ==",
-
"license": "MIT",
-
"dependencies": {
-
"fault": "^1.0.0",
-
"highlight.js": "~10.4.0"
-
},
-
"funding": {
-
"type": "github",
-
"url": "https://github.com/sponsors/wooorm"
-
}
-
},
-
"node_modules/lru-cache": {
-
"version": "11.0.2",
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz",
-
"integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==",
-
"license": "ISC",
-
"engines": {
-
"node": "20 || >=22"
-
}
-
},
-
"node_modules/macos-export-certificate-and-key": {
-
"version": "1.2.4",
-
"resolved": "https://registry.npmjs.org/macos-export-certificate-and-key/-/macos-export-certificate-and-key-1.2.4.tgz",
-
"integrity": "sha512-y5QZEywlBNKd+EhPZ1Hz1FmDbbeQKtuVHJaTlawdl7vXw9bi/4tJB2xSMwX4sMVcddy3gbQ8K0IqXAi2TpDo2g==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"os": [
-
"darwin"
-
],
-
"dependencies": {
-
"bindings": "^1.5.0",
-
"node-addon-api": "^4.3.0"
-
}
-
},
-
"node_modules/math-intrinsics": {
-
"version": "1.1.0",
-
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
-
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4"
-
}
-
},
-
"node_modules/media-typer": {
-
"version": "0.3.0",
-
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
-
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/memory-pager": {
-
"version": "1.5.0",
-
"resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
-
"integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
-
"license": "MIT"
-
},
-
"node_modules/merge-descriptors": {
-
"version": "1.0.3",
-
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
-
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
-
"license": "MIT",
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/merge-stream": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
-
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
-
"license": "MIT"
-
},
-
"node_modules/methods": {
-
"version": "1.1.2",
-
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
-
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/mime": {
-
"version": "1.6.0",
-
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
-
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
-
"license": "MIT",
-
"bin": {
-
"mime": "cli.js"
-
},
-
"engines": {
-
"node": ">=4"
-
}
-
},
-
"node_modules/mime-db": {
-
"version": "1.52.0",
-
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
-
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/mime-types": {
-
"version": "2.1.35",
-
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
-
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
-
"license": "MIT",
-
"dependencies": {
-
"mime-db": "1.52.0"
-
},
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/mimic-fn": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
-
"integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/mimic-response": {
-
"version": "3.1.0",
-
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
-
"integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
-
"license": "MIT",
-
"optional": true,
-
"engines": {
-
"node": ">=10"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/minimatch": {
-
"version": "9.0.1",
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz",
-
"integrity": "sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==",
-
"license": "ISC",
-
"dependencies": {
-
"brace-expansion": "^2.0.1"
-
},
-
"engines": {
-
"node": ">=16 || 14 >=14.17"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/isaacs"
-
}
-
},
-
"node_modules/minimist": {
-
"version": "1.2.8",
-
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
-
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
-
"license": "MIT",
-
"optional": true,
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/minipass": {
-
"version": "7.1.2",
-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
-
"integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
-
"license": "ISC",
-
"engines": {
-
"node": ">=16 || 14 >=14.17"
-
}
-
},
-
"node_modules/minizlib": {
-
"version": "2.1.2",
-
"resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
-
"integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
-
"license": "MIT",
-
"dependencies": {
-
"minipass": "^3.0.0",
-
"yallist": "^4.0.0"
-
},
-
"engines": {
-
"node": ">= 8"
-
}
-
},
-
"node_modules/minizlib/node_modules/minipass": {
-
"version": "3.3.6",
-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
-
"integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
-
"license": "ISC",
-
"dependencies": {
-
"yallist": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/mkdirp": {
-
"version": "1.0.4",
-
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
-
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
-
"license": "MIT",
-
"bin": {
-
"mkdirp": "bin/cmd.js"
-
},
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/mkdirp-classic": {
-
"version": "0.5.3",
-
"resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
-
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/mongodb": {
-
"version": "6.14.2",
-
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-6.14.2.tgz",
-
"integrity": "sha512-kMEHNo0F3P6QKDq17zcDuPeaywK/YaJVCEQRzPF3TOM/Bl9MFg64YE5Tu7ifj37qZJMhwU1tl2Ioivws5gRG5Q==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@mongodb-js/saslprep": "^1.1.9",
-
"bson": "^6.10.3",
-
"mongodb-connection-string-url": "^3.0.0"
-
},
-
"engines": {
-
"node": ">=16.20.1"
-
},
-
"peerDependencies": {
-
"@aws-sdk/credential-providers": "^3.188.0",
-
"@mongodb-js/zstd": "^1.1.0 || ^2.0.0",
-
"gcp-metadata": "^5.2.0",
-
"kerberos": "^2.0.1",
-
"mongodb-client-encryption": ">=6.0.0 <7",
-
"snappy": "^7.2.2",
-
"socks": "^2.7.1"
-
},
-
"peerDependenciesMeta": {
-
"@aws-sdk/credential-providers": {
-
"optional": true
-
},
-
"@mongodb-js/zstd": {
-
"optional": true
-
},
-
"gcp-metadata": {
-
"optional": true
-
},
-
"kerberos": {
-
"optional": true
-
},
-
"mongodb-client-encryption": {
-
"optional": true
-
},
-
"snappy": {
-
"optional": true
-
},
-
"socks": {
-
"optional": true
-
}
-
}
-
},
-
"node_modules/mongodb-build-info": {
-
"version": "1.7.2",
-
"resolved": "https://registry.npmjs.org/mongodb-build-info/-/mongodb-build-info-1.7.2.tgz",
-
"integrity": "sha512-eoLFZvCIjcwijYJdxvYupj1c+55VAVm0o4gBJjrcDxxmmpm+bC4Ix9ayZbyhQdVXDZAGDi03NA0GghXjBVXnxg==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"mongodb-connection-string-url": "^3.0.0"
-
}
-
},
-
"node_modules/mongodb-client-encryption": {
-
"version": "6.3.0",
-
"resolved": "https://registry.npmjs.org/mongodb-client-encryption/-/mongodb-client-encryption-6.3.0.tgz",
-
"integrity": "sha512-OaOg02vglPxxrfY01alC0ER0W4WMuNO2ZJR3ehAUcuGYreJaJ+aX+rUQiQkdQHiXvnVPDUx/4QDr2CR1/FvpcQ==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"dependencies": {
-
"node-addon-api": "^4.3.0",
-
"prebuild-install": "^7.1.3"
-
},
-
"engines": {
-
"node": ">=16.20.1"
-
}
-
},
-
"node_modules/mongodb-connection-string-url": {
-
"version": "3.0.2",
-
"resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-3.0.2.tgz",
-
"integrity": "sha512-rMO7CGo/9BFwyZABcKAWL8UJwH/Kc2x0g72uhDWzG48URRax5TCIcJ7Rc3RZqffZzO/Gwff/jyKwCU9TN8gehA==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"@types/whatwg-url": "^11.0.2",
-
"whatwg-url": "^14.1.0 || ^13.0.0"
-
}
-
},
-
"node_modules/mongodb-crypt-library-version": {
-
"version": "1.0.5",
-
"resolved": "https://registry.npmjs.org/mongodb-crypt-library-version/-/mongodb-crypt-library-version-1.0.5.tgz",
-
"integrity": "sha512-RLTxgBOpK1Ht1FvGpitI6EkFuYGk/CB6ImDJHzB9Iv/iKwVANu4OynaiJOoZQQTaZZCetmyAgMXwNHhMLCRyJw==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"dependencies": {
-
"bindings": "^1.5.0",
-
"node-addon-api": "^4.3.0"
-
},
-
"bin": {
-
"mongodb-crypt-library-version": "bin/mongodb-crypt-library-version.js"
-
}
-
},
-
"node_modules/mongodb-log-writer": {
-
"version": "2.4.0",
-
"resolved": "https://registry.npmjs.org/mongodb-log-writer/-/mongodb-log-writer-2.4.0.tgz",
-
"integrity": "sha512-t/OcqDLl+JaVKnP7g3Zz3mCCowIAW5rp8AxD1IqVxy5rVApV332JHk5NkedtuHlRVIsN/qCujH4ezZZmoP16IQ==",
-
"license": "Apache-2.0",
-
"dependencies": {
-
"heap-js": "^2.3.0"
-
},
-
"peerDependencies": {
-
"bson": "6.x"
-
}
-
},
-
"node_modules/mongodb-redact": {
-
"version": "1.1.5",
-
"resolved": "https://registry.npmjs.org/mongodb-redact/-/mongodb-redact-1.1.5.tgz",
-
"integrity": "sha512-bLTHIHviJvTGJDvCECDBEDMk7beJQ4Fvoec50hgIax98ojzyTk9xIyrewFPM7yzlDVKTkkh864uxlkkTTLVsbg==",
-
"license": "Apache-2.0"
-
},
-
"node_modules/ms": {
-
"version": "2.1.3",
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
-
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
-
"license": "MIT"
-
},
-
"node_modules/nan": {
-
"version": "2.22.2",
-
"resolved": "https://registry.npmjs.org/nan/-/nan-2.22.2.tgz",
-
"integrity": "sha512-DANghxFkS1plDdRsX0X9pm0Z6SJNN6gBdtXfanwoZ8hooC5gosGFSBGRYHUVPz1asKA/kMRqDRdHrluZ61SpBQ==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/napi-build-utils": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz",
-
"integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/negotiator": {
-
"version": "0.6.3",
-
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
-
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/netmask": {
-
"version": "2.0.2",
-
"resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz",
-
"integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4.0"
-
}
-
},
-
"node_modules/node-abi": {
-
"version": "3.74.0",
-
"resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.74.0.tgz",
-
"integrity": "sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"semver": "^7.3.5"
-
},
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/node-addon-api": {
-
"version": "4.3.0",
-
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-4.3.0.tgz",
-
"integrity": "sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/node-domexception": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
-
"integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/jimmywarting"
-
},
-
{
-
"type": "github",
-
"url": "https://paypal.me/jimmywarting"
-
}
-
],
-
"license": "MIT",
-
"engines": {
-
"node": ">=10.5.0"
-
}
-
},
-
"node_modules/node-fetch": {
-
"version": "3.3.2",
-
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
-
"integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
-
"license": "MIT",
-
"dependencies": {
-
"data-uri-to-buffer": "^4.0.0",
-
"fetch-blob": "^3.1.4",
-
"formdata-polyfill": "^4.0.10"
-
},
-
"engines": {
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
-
},
-
"funding": {
-
"type": "opencollective",
-
"url": "https://opencollective.com/node-fetch"
-
}
-
},
-
"node_modules/node-releases": {
-
"version": "2.0.19",
-
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
-
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
-
"license": "MIT"
-
},
-
"node_modules/nopt": {
-
"version": "7.2.1",
-
"resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz",
-
"integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==",
-
"license": "ISC",
-
"dependencies": {
-
"abbrev": "^2.0.0"
-
},
-
"bin": {
-
"nopt": "bin/nopt.js"
-
},
-
"engines": {
-
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
-
}
-
},
-
"node_modules/npm-run-path": {
-
"version": "5.3.0",
-
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz",
-
"integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==",
-
"license": "MIT",
-
"dependencies": {
-
"path-key": "^4.0.0"
-
},
-
"engines": {
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/npm-run-path/node_modules/path-key": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
-
"integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/numeral": {
-
"version": "2.0.6",
-
"resolved": "https://registry.npmjs.org/numeral/-/numeral-2.0.6.tgz",
-
"integrity": "sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==",
-
"license": "MIT",
-
"engines": {
-
"node": "*"
-
}
-
},
-
"node_modules/object-hash": {
-
"version": "2.2.0",
-
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz",
-
"integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 6"
-
}
-
},
-
"node_modules/object-inspect": {
-
"version": "1.13.4",
-
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
-
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/oidc-token-hash": {
-
"version": "5.1.0",
-
"resolved": "https://registry.npmjs.org/oidc-token-hash/-/oidc-token-hash-5.1.0.tgz",
-
"integrity": "sha512-y0W+X7Ppo7oZX6eovsRkuzcSM40Bicg2JEJkDJ4irIt1wsYAP5MLSNv+QAogO8xivMffw/9OvV3um1pxXgt1uA==",
-
"license": "MIT",
-
"engines": {
-
"node": "^10.13.0 || >=12.0.0"
-
}
-
},
-
"node_modules/on-finished": {
-
"version": "2.4.1",
-
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
-
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
-
"license": "MIT",
-
"dependencies": {
-
"ee-first": "1.1.1"
-
},
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/once": {
-
"version": "1.4.0",
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
-
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
-
"license": "ISC",
-
"optional": true,
-
"dependencies": {
-
"wrappy": "1"
-
}
-
},
-
"node_modules/onetime": {
-
"version": "6.0.0",
-
"resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
-
"integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
-
"license": "MIT",
-
"dependencies": {
-
"mimic-fn": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/open": {
-
"version": "9.1.0",
-
"resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz",
-
"integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==",
-
"license": "MIT",
-
"dependencies": {
-
"default-browser": "^4.0.0",
-
"define-lazy-prop": "^3.0.0",
-
"is-inside-container": "^1.0.0",
-
"is-wsl": "^2.2.0"
-
},
-
"engines": {
-
"node": ">=14.16"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/openid-client": {
-
"version": "5.7.1",
-
"resolved": "https://registry.npmjs.org/openid-client/-/openid-client-5.7.1.tgz",
-
"integrity": "sha512-jDBPgSVfTnkIh71Hg9pRvtJc6wTwqjRkN88+gCFtYWrlP4Yx2Dsrow8uPi3qLr/aeymPF3o2+dS+wOpglK04ew==",
-
"license": "MIT",
-
"dependencies": {
-
"jose": "^4.15.9",
-
"lru-cache": "^6.0.0",
-
"object-hash": "^2.2.0",
-
"oidc-token-hash": "^5.0.3"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/panva"
-
}
-
},
-
"node_modules/openid-client/node_modules/lru-cache": {
-
"version": "6.0.0",
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
-
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
-
"license": "ISC",
-
"dependencies": {
-
"yallist": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/os-dns-native": {
-
"version": "1.2.1",
-
"resolved": "https://registry.npmjs.org/os-dns-native/-/os-dns-native-1.2.1.tgz",
-
"integrity": "sha512-LbU43lWBxnZhy72Ngr+Vga0og5Q2+Ob8lvSHJkP2uYBkvdmAnK4CvaVaBhC1hk9AQV3YxAZ9fZWaJTuIyPEi+Q==",
-
"hasInstallScript": true,
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"bindings": "^1.5.0",
-
"debug": "^4.3.3",
-
"ipv6-normalize": "^1.0.1",
-
"node-addon-api": "^4.3.0"
-
}
-
},
-
"node_modules/pac-proxy-agent": {
-
"version": "7.2.0",
-
"resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz",
-
"integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
-
"license": "MIT",
-
"dependencies": {
-
"@tootallnate/quickjs-emscripten": "^0.23.0",
-
"agent-base": "^7.1.2",
-
"debug": "^4.3.4",
-
"get-uri": "^6.0.1",
-
"http-proxy-agent": "^7.0.0",
-
"https-proxy-agent": "^7.0.6",
-
"pac-resolver": "^7.0.1",
-
"socks-proxy-agent": "^8.0.5"
-
},
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/pac-resolver": {
-
"version": "7.0.1",
-
"resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz",
-
"integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
-
"license": "MIT",
-
"dependencies": {
-
"degenerator": "^5.0.0",
-
"netmask": "^2.0.2"
-
},
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/package-json-from-dist": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
-
"integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
-
"license": "BlueOak-1.0.0"
-
},
-
"node_modules/parseurl": {
-
"version": "1.3.3",
-
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
-
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/path-key": {
-
"version": "3.1.1",
-
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
-
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/path-scurry": {
-
"version": "1.11.1",
-
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
-
"integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
-
"license": "BlueOak-1.0.0",
-
"dependencies": {
-
"lru-cache": "^10.2.0",
-
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
-
},
-
"engines": {
-
"node": ">=16 || 14 >=14.18"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/isaacs"
-
}
-
},
-
"node_modules/path-scurry/node_modules/lru-cache": {
-
"version": "10.4.3",
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
-
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
-
"license": "ISC"
-
},
-
"node_modules/path-to-regexp": {
-
"version": "0.1.12",
-
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
-
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
-
"license": "MIT"
-
},
-
"node_modules/picocolors": {
-
"version": "1.1.1",
-
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
-
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
-
"license": "ISC"
-
},
-
"node_modules/prebuild-install": {
-
"version": "7.1.3",
-
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz",
-
"integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"detect-libc": "^2.0.0",
-
"expand-template": "^2.0.3",
-
"github-from-package": "0.0.0",
-
"minimist": "^1.2.3",
-
"mkdirp-classic": "^0.5.3",
-
"napi-build-utils": "^2.0.0",
-
"node-abi": "^3.3.0",
-
"pump": "^3.0.0",
-
"rc": "^1.2.7",
-
"simple-get": "^4.0.0",
-
"tar-fs": "^2.0.0",
-
"tunnel-agent": "^0.6.0"
-
},
-
"bin": {
-
"prebuild-install": "bin.js"
-
},
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/pretty-repl": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/pretty-repl/-/pretty-repl-4.0.1.tgz",
-
"integrity": "sha512-Ve+ZNS5fwxylks3TTR4su7SaNAHVOh++7J5R8VKFAHIjmAMS8X79rnETc/JJoqay52cfgeHum7vm2+9hFSys9Q==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-regex": "^5.0.1",
-
"chalk": "^4.1.1",
-
"emphasize": "^4.2.0",
-
"strip-ansi": "^6.0.0"
-
},
-
"engines": {
-
"node": ">=14"
-
}
-
},
-
"node_modules/proto-list": {
-
"version": "1.2.4",
-
"resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz",
-
"integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==",
-
"license": "ISC"
-
},
-
"node_modules/proxy-addr": {
-
"version": "2.0.7",
-
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
-
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
-
"license": "MIT",
-
"dependencies": {
-
"forwarded": "0.2.0",
-
"ipaddr.js": "1.9.1"
-
},
-
"engines": {
-
"node": ">= 0.10"
-
}
-
},
-
"node_modules/pump": {
-
"version": "3.0.2",
-
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
-
"integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"end-of-stream": "^1.1.0",
-
"once": "^1.3.1"
-
}
-
},
-
"node_modules/punycode": {
-
"version": "2.3.1",
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
-
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/qs": {
-
"version": "6.13.0",
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
-
"integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
-
"license": "BSD-3-Clause",
-
"dependencies": {
-
"side-channel": "^1.0.6"
-
},
-
"engines": {
-
"node": ">=0.6"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/range-parser": {
-
"version": "1.2.1",
-
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
-
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/raw-body": {
-
"version": "2.5.2",
-
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz",
-
"integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==",
-
"license": "MIT",
-
"dependencies": {
-
"bytes": "3.1.2",
-
"http-errors": "2.0.0",
-
"iconv-lite": "0.4.24",
-
"unpipe": "1.0.0"
-
},
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/rc": {
-
"version": "1.2.8",
-
"resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
-
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
-
"license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
-
"optional": true,
-
"dependencies": {
-
"deep-extend": "^0.6.0",
-
"ini": "~1.3.0",
-
"minimist": "^1.2.0",
-
"strip-json-comments": "~2.0.1"
-
},
-
"bin": {
-
"rc": "cli.js"
-
}
-
},
-
"node_modules/readable-stream": {
-
"version": "3.6.2",
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
-
"integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"inherits": "^2.0.3",
-
"string_decoder": "^1.1.1",
-
"util-deprecate": "^1.0.1"
-
},
-
"engines": {
-
"node": ">= 6"
-
}
-
},
-
"node_modules/resolve-mongodb-srv": {
-
"version": "1.1.5",
-
"resolved": "https://registry.npmjs.org/resolve-mongodb-srv/-/resolve-mongodb-srv-1.1.5.tgz",
-
"integrity": "sha512-flu1XTSLDJHvTnWu2aJh2w9jgGPcNYJn2obMkuzXiyWSz0MLXu9IRCjvirJ4zRoCPHJJPt3uLQVNJTrzFRWd1w==",
-
"license": "Apache-2.0",
-
"optional": true,
-
"dependencies": {
-
"whatwg-url": "^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0"
-
},
-
"bin": {
-
"resolve-mongodb-srv": "bin/resolve-mongodb-srv.js"
-
}
-
},
-
"node_modules/run-applescript": {
-
"version": "5.0.0",
-
"resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz",
-
"integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==",
-
"license": "MIT",
-
"dependencies": {
-
"execa": "^5.0.0"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/run-applescript/node_modules/execa": {
-
"version": "5.1.1",
-
"resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
-
"integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
-
"license": "MIT",
-
"dependencies": {
-
"cross-spawn": "^7.0.3",
-
"get-stream": "^6.0.0",
-
"human-signals": "^2.1.0",
-
"is-stream": "^2.0.0",
-
"merge-stream": "^2.0.0",
-
"npm-run-path": "^4.0.1",
-
"onetime": "^5.1.2",
-
"signal-exit": "^3.0.3",
-
"strip-final-newline": "^2.0.0"
-
},
-
"engines": {
-
"node": ">=10"
-
},
-
"funding": {
-
"url": "https://github.com/sindresorhus/execa?sponsor=1"
-
}
-
},
-
"node_modules/run-applescript/node_modules/human-signals": {
-
"version": "2.1.0",
-
"resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
-
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
-
"license": "Apache-2.0",
-
"engines": {
-
"node": ">=10.17.0"
-
}
-
},
-
"node_modules/run-applescript/node_modules/is-stream": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
-
"integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/run-applescript/node_modules/mimic-fn": {
-
"version": "2.1.0",
-
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
-
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/run-applescript/node_modules/npm-run-path": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
-
"integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
-
"license": "MIT",
-
"dependencies": {
-
"path-key": "^3.0.0"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/run-applescript/node_modules/onetime": {
-
"version": "5.1.2",
-
"resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
-
"integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
-
"license": "MIT",
-
"dependencies": {
-
"mimic-fn": "^2.1.0"
-
},
-
"engines": {
-
"node": ">=6"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/run-applescript/node_modules/signal-exit": {
-
"version": "3.0.7",
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
-
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
-
"license": "ISC"
-
},
-
"node_modules/run-applescript/node_modules/strip-final-newline": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
-
"integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/safe-buffer": {
-
"version": "5.2.1",
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
-
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/feross"
-
},
-
{
-
"type": "patreon",
-
"url": "https://www.patreon.com/feross"
-
},
-
{
-
"type": "consulting",
-
"url": "https://feross.org/support"
-
}
-
],
-
"license": "MIT"
-
},
-
"node_modules/safer-buffer": {
-
"version": "2.1.2",
-
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
-
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
-
"license": "MIT"
-
},
-
"node_modules/semver": {
-
"version": "7.7.1",
-
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
-
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
-
"license": "ISC",
-
"bin": {
-
"semver": "bin/semver.js"
-
},
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/send": {
-
"version": "0.19.0",
-
"resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz",
-
"integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==",
-
"license": "MIT",
-
"dependencies": {
-
"debug": "2.6.9",
-
"depd": "2.0.0",
-
"destroy": "1.2.0",
-
"encodeurl": "~1.0.2",
-
"escape-html": "~1.0.3",
-
"etag": "~1.8.1",
-
"fresh": "0.5.2",
-
"http-errors": "2.0.0",
-
"mime": "1.6.0",
-
"ms": "2.1.3",
-
"on-finished": "2.4.1",
-
"range-parser": "~1.2.1",
-
"statuses": "2.0.1"
-
},
-
"engines": {
-
"node": ">= 0.8.0"
-
}
-
},
-
"node_modules/send/node_modules/debug": {
-
"version": "2.6.9",
-
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
-
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
-
"license": "MIT",
-
"dependencies": {
-
"ms": "2.0.0"
-
}
-
},
-
"node_modules/send/node_modules/debug/node_modules/ms": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
-
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
-
"license": "MIT"
-
},
-
"node_modules/send/node_modules/encodeurl": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
-
"integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/serve-static": {
-
"version": "1.16.2",
-
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz",
-
"integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==",
-
"license": "MIT",
-
"dependencies": {
-
"encodeurl": "~2.0.0",
-
"escape-html": "~1.0.3",
-
"parseurl": "~1.3.3",
-
"send": "0.19.0"
-
},
-
"engines": {
-
"node": ">= 0.8.0"
-
}
-
},
-
"node_modules/setprototypeof": {
-
"version": "1.2.0",
-
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
-
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
-
"license": "ISC"
-
},
-
"node_modules/shebang-command": {
-
"version": "2.0.0",
-
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
-
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
-
"license": "MIT",
-
"dependencies": {
-
"shebang-regex": "^3.0.0"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/shebang-regex": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
-
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/side-channel": {
-
"version": "1.1.0",
-
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
-
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
-
"license": "MIT",
-
"dependencies": {
-
"es-errors": "^1.3.0",
-
"object-inspect": "^1.13.3",
-
"side-channel-list": "^1.0.0",
-
"side-channel-map": "^1.0.1",
-
"side-channel-weakmap": "^1.0.2"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/side-channel-list": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
-
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
-
"license": "MIT",
-
"dependencies": {
-
"es-errors": "^1.3.0",
-
"object-inspect": "^1.13.3"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/side-channel-map": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
-
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
-
"license": "MIT",
-
"dependencies": {
-
"call-bound": "^1.0.2",
-
"es-errors": "^1.3.0",
-
"get-intrinsic": "^1.2.5",
-
"object-inspect": "^1.13.3"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/side-channel-weakmap": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
-
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
-
"license": "MIT",
-
"dependencies": {
-
"call-bound": "^1.0.2",
-
"es-errors": "^1.3.0",
-
"get-intrinsic": "^1.2.5",
-
"object-inspect": "^1.13.3",
-
"side-channel-map": "^1.0.1"
-
},
-
"engines": {
-
"node": ">= 0.4"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/ljharb"
-
}
-
},
-
"node_modules/signal-exit": {
-
"version": "4.1.0",
-
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
-
"integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
-
"license": "ISC",
-
"engines": {
-
"node": ">=14"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/isaacs"
-
}
-
},
-
"node_modules/simple-concat": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz",
-
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/feross"
-
},
-
{
-
"type": "patreon",
-
"url": "https://www.patreon.com/feross"
-
},
-
{
-
"type": "consulting",
-
"url": "https://feross.org/support"
-
}
-
],
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/simple-get": {
-
"version": "4.0.1",
-
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
-
"integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/feross"
-
},
-
{
-
"type": "patreon",
-
"url": "https://www.patreon.com/feross"
-
},
-
{
-
"type": "consulting",
-
"url": "https://feross.org/support"
-
}
-
],
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"decompress-response": "^6.0.0",
-
"once": "^1.3.1",
-
"simple-concat": "^1.0.0"
-
}
-
},
-
"node_modules/smart-buffer": {
-
"version": "4.2.0",
-
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
-
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 6.0.0",
-
"npm": ">= 3.0.0"
-
}
-
},
-
"node_modules/socks": {
-
"version": "2.8.4",
-
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.4.tgz",
-
"integrity": "sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==",
-
"license": "MIT",
-
"dependencies": {
-
"ip-address": "^9.0.5",
-
"smart-buffer": "^4.2.0"
-
},
-
"engines": {
-
"node": ">= 10.0.0",
-
"npm": ">= 3.0.0"
-
}
-
},
-
"node_modules/socks-proxy-agent": {
-
"version": "8.0.5",
-
"resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz",
-
"integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
-
"license": "MIT",
-
"dependencies": {
-
"agent-base": "^7.1.2",
-
"debug": "^4.3.4",
-
"socks": "^2.8.3"
-
},
-
"engines": {
-
"node": ">= 14"
-
}
-
},
-
"node_modules/source-map": {
-
"version": "0.6.1",
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
-
"license": "BSD-3-Clause",
-
"optional": true,
-
"engines": {
-
"node": ">=0.10.0"
-
}
-
},
-
"node_modules/sparse-bitfield": {
-
"version": "3.0.3",
-
"resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
-
"integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==",
-
"license": "MIT",
-
"dependencies": {
-
"memory-pager": "^1.0.2"
-
}
-
},
-
"node_modules/sprintf-js": {
-
"version": "1.1.3",
-
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
-
"integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==",
-
"license": "BSD-3-Clause"
-
},
-
"node_modules/ssh2": {
-
"version": "1.16.0",
-
"resolved": "https://registry.npmjs.org/ssh2/-/ssh2-1.16.0.tgz",
-
"integrity": "sha512-r1X4KsBGedJqo7h8F5c4Ybpcr5RjyP+aWIG007uBPRjmdQWfEiVLzSK71Zji1B9sKxwaCvD8y8cwSkYrlLiRRg==",
-
"hasInstallScript": true,
-
"dependencies": {
-
"asn1": "^0.2.6",
-
"bcrypt-pbkdf": "^1.0.2"
-
},
-
"engines": {
-
"node": ">=10.16.0"
-
},
-
"optionalDependencies": {
-
"cpu-features": "~0.0.10",
-
"nan": "^2.20.0"
-
}
-
},
-
"node_modules/statuses": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
-
"integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/string_decoder": {
-
"version": "1.3.0",
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
-
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"safe-buffer": "~5.2.0"
-
}
-
},
-
"node_modules/string-width": {
-
"version": "5.1.2",
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
-
"integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
-
"license": "MIT",
-
"dependencies": {
-
"eastasianwidth": "^0.2.0",
-
"emoji-regex": "^9.2.2",
-
"strip-ansi": "^7.0.1"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/string-width-cjs": {
-
"name": "string-width",
-
"version": "4.2.3",
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
-
"license": "MIT",
-
"dependencies": {
-
"emoji-regex": "^8.0.0",
-
"is-fullwidth-code-point": "^3.0.0",
-
"strip-ansi": "^6.0.1"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/string-width-cjs/node_modules/emoji-regex": {
-
"version": "8.0.0",
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-
"license": "MIT"
-
},
-
"node_modules/string-width/node_modules/ansi-regex": {
-
"version": "6.1.0",
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
-
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
-
}
-
},
-
"node_modules/string-width/node_modules/strip-ansi": {
-
"version": "7.1.0",
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
-
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-regex": "^6.0.1"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
-
}
-
},
-
"node_modules/strip-ansi": {
-
"version": "6.0.1",
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-regex": "^5.0.1"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/strip-ansi-cjs": {
-
"name": "strip-ansi",
-
"version": "6.0.1",
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
-
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-regex": "^5.0.1"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/strip-final-newline": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
-
"integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/strip-json-comments": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
-
"integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==",
-
"license": "MIT",
-
"optional": true,
-
"engines": {
-
"node": ">=0.10.0"
-
}
-
},
-
"node_modules/strnum": {
-
"version": "1.1.2",
-
"resolved": "https://registry.npmjs.org/strnum/-/strnum-1.1.2.tgz",
-
"integrity": "sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==",
-
"funding": [
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/NaturalIntelligence"
-
}
-
],
-
"license": "MIT"
-
},
-
"node_modules/supports-color": {
-
"version": "7.2.0",
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
-
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
-
"license": "MIT",
-
"dependencies": {
-
"has-flag": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/system-ca": {
-
"version": "2.0.1",
-
"resolved": "https://registry.npmjs.org/system-ca/-/system-ca-2.0.1.tgz",
-
"integrity": "sha512-9ZDV9yl8ph6Op67wDGPr4LykX86usE9x3le+XZSHfVMiiVJ5IRgmCWjLgxyz35ju9H3GDIJJZm4ogAeIfN5cQQ==",
-
"license": "Apache-2.0",
-
"optionalDependencies": {
-
"macos-export-certificate-and-key": "^1.2.0",
-
"win-export-certificate-and-key": "^2.1.0"
-
}
-
},
-
"node_modules/tar": {
-
"version": "6.2.1",
-
"resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz",
-
"integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==",
-
"license": "ISC",
-
"dependencies": {
-
"chownr": "^2.0.0",
-
"fs-minipass": "^2.0.0",
-
"minipass": "^5.0.0",
-
"minizlib": "^2.1.1",
-
"mkdirp": "^1.0.3",
-
"yallist": "^4.0.0"
-
},
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/tar-fs": {
-
"version": "2.1.2",
-
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz",
-
"integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"chownr": "^1.1.1",
-
"mkdirp-classic": "^0.5.2",
-
"pump": "^3.0.0",
-
"tar-stream": "^2.1.4"
-
}
-
},
-
"node_modules/tar-fs/node_modules/chownr": {
-
"version": "1.1.4",
-
"resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
-
"integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
-
"license": "ISC",
-
"optional": true
-
},
-
"node_modules/tar-stream": {
-
"version": "2.2.0",
-
"resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
-
"integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
-
"license": "MIT",
-
"optional": true,
-
"dependencies": {
-
"bl": "^4.0.3",
-
"end-of-stream": "^1.4.1",
-
"fs-constants": "^1.0.0",
-
"inherits": "^2.0.3",
-
"readable-stream": "^3.1.1"
-
},
-
"engines": {
-
"node": ">=6"
-
}
-
},
-
"node_modules/tar/node_modules/minipass": {
-
"version": "5.0.0",
-
"resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
-
"integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
-
"license": "ISC",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/text-table": {
-
"version": "0.2.0",
-
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
-
"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
-
"license": "MIT"
-
},
-
"node_modules/titleize": {
-
"version": "3.0.0",
-
"resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz",
-
"integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/sponsors/sindresorhus"
-
}
-
},
-
"node_modules/toidentifier": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
-
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=0.6"
-
}
-
},
-
"node_modules/tr46": {
-
"version": "5.0.0",
-
"resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz",
-
"integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==",
-
"license": "MIT",
-
"dependencies": {
-
"punycode": "^2.3.1"
-
},
-
"engines": {
-
"node": ">=18"
-
}
-
},
-
"node_modules/tslib": {
-
"version": "2.8.1",
-
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
-
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
-
"license": "0BSD"
-
},
-
"node_modules/tunnel-agent": {
-
"version": "0.6.0",
-
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
-
"integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==",
-
"license": "Apache-2.0",
-
"optional": true,
-
"dependencies": {
-
"safe-buffer": "^5.0.1"
-
},
-
"engines": {
-
"node": "*"
-
}
-
},
-
"node_modules/tweetnacl": {
-
"version": "0.14.5",
-
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
-
"integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==",
-
"license": "Unlicense"
-
},
-
"node_modules/type-is": {
-
"version": "1.6.18",
-
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
-
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
-
"license": "MIT",
-
"dependencies": {
-
"media-typer": "0.3.0",
-
"mime-types": "~2.1.24"
-
},
-
"engines": {
-
"node": ">= 0.6"
-
}
-
},
-
"node_modules/unpipe": {
-
"version": "1.0.0",
-
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
-
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/untildify": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
-
"integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/update-browserslist-db": {
-
"version": "1.1.3",
-
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
-
"integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
-
"funding": [
-
{
-
"type": "opencollective",
-
"url": "https://opencollective.com/browserslist"
-
},
-
{
-
"type": "tidelift",
-
"url": "https://tidelift.com/funding/github/npm/browserslist"
-
},
-
{
-
"type": "github",
-
"url": "https://github.com/sponsors/ai"
-
}
-
],
-
"license": "MIT",
-
"dependencies": {
-
"escalade": "^3.2.0",
-
"picocolors": "^1.1.1"
-
},
-
"bin": {
-
"update-browserslist-db": "cli.js"
-
},
-
"peerDependencies": {
-
"browserslist": ">= 4.21.0"
-
}
-
},
-
"node_modules/util-deprecate": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
-
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/utils-merge": {
-
"version": "1.0.1",
-
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
-
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.4.0"
-
}
-
},
-
"node_modules/uuid": {
-
"version": "9.0.1",
-
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
-
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
-
"funding": [
-
"https://github.com/sponsors/broofa",
-
"https://github.com/sponsors/ctavan"
-
],
-
"license": "MIT",
-
"bin": {
-
"uuid": "dist/bin/uuid"
-
}
-
},
-
"node_modules/vary": {
-
"version": "1.1.2",
-
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
-
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 0.8"
-
}
-
},
-
"node_modules/web-streams-polyfill": {
-
"version": "3.3.3",
-
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
-
"integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
-
"license": "MIT",
-
"engines": {
-
"node": ">= 8"
-
}
-
},
-
"node_modules/webidl-conversions": {
-
"version": "7.0.0",
-
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
-
"integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
-
"license": "BSD-2-Clause",
-
"engines": {
-
"node": ">=12"
-
}
-
},
-
"node_modules/whatwg-url": {
-
"version": "14.1.1",
-
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.1.1.tgz",
-
"integrity": "sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==",
-
"license": "MIT",
-
"dependencies": {
-
"tr46": "^5.0.0",
-
"webidl-conversions": "^7.0.0"
-
},
-
"engines": {
-
"node": ">=18"
-
}
-
},
-
"node_modules/which": {
-
"version": "2.0.2",
-
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
-
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
-
"license": "ISC",
-
"dependencies": {
-
"isexe": "^2.0.0"
-
},
-
"bin": {
-
"node-which": "bin/node-which"
-
},
-
"engines": {
-
"node": ">= 8"
-
}
-
},
-
"node_modules/win-export-certificate-and-key": {
-
"version": "2.1.0",
-
"resolved": "https://registry.npmjs.org/win-export-certificate-and-key/-/win-export-certificate-and-key-2.1.0.tgz",
-
"integrity": "sha512-WeMLa/2uNZcS/HWGKU2G1Gzeh3vHpV/UFvwLhJLKxPHYFAbubxxVcJbqmPXaqySWK1Ymymh16zKK5WYIJ3zgzA==",
-
"hasInstallScript": true,
-
"license": "Apache-2.0",
-
"optional": true,
-
"os": [
-
"win32"
-
],
-
"dependencies": {
-
"bindings": "^1.5.0",
-
"node-addon-api": "^3.1.0"
-
}
-
},
-
"node_modules/win-export-certificate-and-key/node_modules/node-addon-api": {
-
"version": "3.2.1",
-
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz",
-
"integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==",
-
"license": "MIT",
-
"optional": true
-
},
-
"node_modules/wrap-ansi": {
-
"version": "8.1.0",
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
-
"integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-styles": "^6.1.0",
-
"string-width": "^5.0.1",
-
"strip-ansi": "^7.0.1"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
-
}
-
},
-
"node_modules/wrap-ansi-cjs": {
-
"name": "wrap-ansi",
-
"version": "7.0.0",
-
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
-
"integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-styles": "^4.0.0",
-
"string-width": "^4.1.0",
-
"strip-ansi": "^6.0.0"
-
},
-
"engines": {
-
"node": ">=10"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
-
}
-
},
-
"node_modules/wrap-ansi-cjs/node_modules/emoji-regex": {
-
"version": "8.0.0",
-
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
-
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
-
"license": "MIT"
-
},
-
"node_modules/wrap-ansi-cjs/node_modules/string-width": {
-
"version": "4.2.3",
-
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
-
"integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
-
"license": "MIT",
-
"dependencies": {
-
"emoji-regex": "^8.0.0",
-
"is-fullwidth-code-point": "^3.0.0",
-
"strip-ansi": "^6.0.1"
-
},
-
"engines": {
-
"node": ">=8"
-
}
-
},
-
"node_modules/wrap-ansi/node_modules/ansi-regex": {
-
"version": "6.1.0",
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
-
"integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/ansi-regex?sponsor=1"
-
}
-
},
-
"node_modules/wrap-ansi/node_modules/ansi-styles": {
-
"version": "6.2.1",
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
-
"integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
-
"license": "MIT",
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
-
}
-
},
-
"node_modules/wrap-ansi/node_modules/strip-ansi": {
-
"version": "7.1.0",
-
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
-
"integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
-
"license": "MIT",
-
"dependencies": {
-
"ansi-regex": "^6.0.1"
-
},
-
"engines": {
-
"node": ">=12"
-
},
-
"funding": {
-
"url": "https://github.com/chalk/strip-ansi?sponsor=1"
-
}
-
},
-
"node_modules/wrappy": {
-
"version": "1.0.2",
-
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
-
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
-
"license": "ISC",
-
"optional": true
-
},
-
"node_modules/yallist": {
-
"version": "4.0.0",
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
-
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
-
"license": "ISC"
-
},
-
"node_modules/yargs-parser": {
-
"version": "20.2.9",
-
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
-
"integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
-
"license": "ISC",
-
"engines": {
-
"node": ">=10"
-
}
-
},
-
"node_modules/zod": {
-
"version": "3.24.2",
-
"resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz",
-
"integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==",
-
"license": "MIT",
-
"funding": {
-
"url": "https://github.com/sponsors/colinhacks"
-
}
-
}
-
}
-
}
···
+41 -20
pkgs/by-name/mo/mongosh/package.nix
···
{
lib,
buildNpmPackage,
-
fetchurl,
testers,
-
mongosh,
}:
-
let
-
source = lib.importJSON ./source.json;
-
in
-
buildNpmPackage {
pname = "mongosh";
-
inherit (source) version;
-
src = fetchurl {
-
url = "https://registry.npmjs.org/mongosh/-/${source.filename}";
-
hash = source.integrity;
};
-
postPatch = ''
-
ln -s ${./package-lock.json} package-lock.json
-
'';
-
npmDepsHash = source.deps;
-
makeCacheWritable = true;
-
dontNpmBuild = true;
-
npmFlags = [ "--omit=optional" ];
passthru = {
tests.version = testers.testVersion {
-
package = mongosh;
};
-
updateScript = ./update.sh;
};
meta = {
···
license = lib.licenses.asl20;
mainProgram = "mongosh";
};
-
}
···
{
lib,
buildNpmPackage,
+
fetchFromGitHub,
+
fetchpatch,
+
libmongocrypt,
+
krb5,
testers,
+
nix-update-script,
}:
+
buildNpmPackage (finalAttrs: {
pname = "mongosh";
+
version = "2.5.1";
+
+
src = fetchFromGitHub {
+
owner = "mongodb-js";
+
repo = "mongosh";
+
# Tracking a few commits ahead of 2.5.1 to ensure the package-lock.json patch below applies
+
#tag = "v${finalAttrs.version}";
+
rev = "2163e8b10a77af18e0cedfa164526506c051593e";
+
+
hash = "sha256-DYX8NqAISwzBpdilcv3YVrL72byXMeC4z/nLqd2nf2c=";
};
+
patches = [
+
# https://github.com/mongodb-js/mongosh/pull/2452
+
(fetchpatch {
+
url = "https://github.com/mongodb-js/mongosh/commit/30f66260fce3e1744298d086bd2b54b2d2bfffbb.patch";
+
hash = "sha256-c2QM/toeoagfhvuh4r+/5j7ZyV6DEr9brA9mXpEy1kM=";
+
})
+
./disable-telemetry.patch
+
];
+
npmDepsHash = "sha256-6uXEKAAGXxaODjXIszYml5Af4zSuEzy/QKdMgSzLD84=";
+
npmFlags = [
+
"--omit=optional"
+
"--ignore-scripts"
+
];
+
npmBuildScript = "compile";
+
dontNpmInstall = true;
+
installPhase = ''
+
runHook preInstall
+
npmWorkspace=packages/mongosh npmInstallHook
+
cp -r packages configs $out/lib/node_modules/mongosh/
+
rm $out/lib/node_modules/mongosh/node_modules/@mongosh/docker-build-scripts # dangling symlink
+
runHook postInstall
+
'';
passthru = {
tests.version = testers.testVersion {
+
package = finalAttrs.finalPackage;
};
+
updateScript = nix-update-script { };
};
meta = {
···
license = lib.licenses.asl20;
mainProgram = "mongosh";
};
+
})
-6
pkgs/by-name/mo/mongosh/source.json
···
-
{
-
"version": "2.4.2",
-
"integrity": "sha512-sNgCITVstYsOkHDH05//wGQ/FJnFfq5gHGoHpIMehX/r2vSm3LEcCW366JlLvRmFj/f4NRGjvFI9c1Ks30W+Zw==",
-
"filename": "mongosh-2.4.2.tgz",
-
"deps": "sha256-aXjK0cW48nih2nI/m2i25zRpmLQ/KHo0KMiNJSvb13g="
-
}
···
-25
pkgs/by-name/mo/mongosh/update.sh
···
-
#!/usr/bin/env nix-shell
-
#! nix-shell -i bash -p nodejs libarchive prefetch-npm-deps moreutils jq
-
# shellcheck shell=bash
-
-
set -exuo pipefail
-
-
cd -- "$(dirname -- "${BASH_SOURCE[0]}")"
-
-
TMPDIR="$(mktemp -d)"
-
trap 'rm -r -- "$TMPDIR"' EXIT
-
-
pushd -- "$TMPDIR"
-
npm pack mongosh --json | jq '.[0] | { version, integrity, filename }' > source.json
-
bsdtar -x -f "$(jq -r .filename source.json)"
-
-
pushd package
-
npm install --omit=optional --package-lock-only
-
popd
-
-
DEPS="$(prefetch-npm-deps package/package-lock.json)"
-
jq ".deps = \"$DEPS\"" source.json | sponge source.json
-
-
popd
-
-
cp -t . -- "$TMPDIR/source.json" "$TMPDIR/package/package-lock.json"
···
+31
pkgs/by-name/ni/nixf-diagnose/package.nix
···
···
+
{
+
lib,
+
rustPlatform,
+
fetchFromGitHub,
+
nixf,
+
}:
+
+
rustPlatform.buildRustPackage (finalAttrs: {
+
pname = "nixf-diagnose";
+
version = "0.1.2";
+
+
src = fetchFromGitHub {
+
owner = "inclyc";
+
repo = "nixf-diagnose";
+
tag = finalAttrs.version;
+
hash = "sha256-gkeU3EwAl9810eRRp5/ddf1h0qpV6FrBBdntNBpBtsM=";
+
};
+
+
env.NIXF_TIDY_PATH = lib.getExe nixf;
+
+
useFetchCargoVendor = true;
+
cargoHash = "sha256-nrr2/lTWPyH7MsG2hSMJjbFCpHsKWINEP8jwSYPhocg=";
+
+
meta = {
+
description = "CLI wrapper for nixf-tidy with fancy diagnostic output";
+
mainProgram = "nixf-diagnose";
+
homepage = "https://github.com/inclyc/nixf-diagnose";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ inclyc ];
+
};
+
})
+3 -3
pkgs/by-name/ob/oboete/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "oboete";
-
version = "0.1.8";
src = fetchFromGitHub {
owner = "mariinkys";
repo = "oboete";
tag = version;
-
hash = "sha256-tQn3ihGHkR91zNtBIiyyIEEo21Q0ZSKLEaV/3UI9pwU=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-91JMgdpMXL0a7oZXAG5xgiulOIyVXQ5x09wN3XDeSy0=";
nativeBuildInputs = [ libcosmicAppHook ];
···
rustPlatform.buildRustPackage rec {
pname = "oboete";
+
version = "0.1.9";
src = fetchFromGitHub {
owner = "mariinkys";
repo = "oboete";
tag = version;
+
hash = "sha256-Xs9o6V/rUtRkUp7F2hJXLz8PP7XWtqx4uaONo3Q23uo=";
};
useFetchCargoVendor = true;
+
cargoHash = "sha256-bhSkQcDqYhkRwqLbiOLXprQnMqjDKRetZ97K1ES5hrw=";
nativeBuildInputs = [ libcosmicAppHook ];
+2 -2
pkgs/by-name/pa/paretosecurity/package.nix
···
webkitgtk_4_1
];
pname = "paretosecurity";
-
version = "0.2.15";
src = fetchFromGitHub {
owner = "ParetoSecurity";
repo = "agent";
rev = finalAttrs.version;
-
hash = "sha256-8lRIDW17oyQpoGuHGckSxL++jaeX3qPr2kvXBAeszjc=";
};
vendorHash = "sha256-YnyACP/hJYxi4AWMwr0We4YUTbWwahKAIYN6RnHmzls=";
···
webkitgtk_4_1
];
pname = "paretosecurity";
+
version = "0.2.17";
src = fetchFromGitHub {
owner = "ParetoSecurity";
repo = "agent";
rev = finalAttrs.version;
+
hash = "sha256-2Ev6LJWa+iPV7/Y/o9HrNf4vR4dbnIOim+qb4HdRXqU=";
};
vendorHash = "sha256-YnyACP/hJYxi4AWMwr0We4YUTbWwahKAIYN6RnHmzls=";
+33
pkgs/by-name/pl/plakativ/package.nix
···
···
+
{
+
lib,
+
python3Packages,
+
fetchPypi,
+
guiSupport ? true,
+
}:
+
let
+
pname = "plakativ";
+
version = "0.5.3";
+
in
+
python3Packages.buildPythonApplication {
+
inherit pname version;
+
+
src = fetchPypi {
+
inherit pname version;
+
hash = "sha256-6TvMznd5obkn/gsQTyZ6Pc/dF55I53987EbuSNAlY58=";
+
};
+
+
dependencies =
+
with python3Packages;
+
[
+
pymupdf
+
]
+
++ lib.optional guiSupport tkinter;
+
+
meta = {
+
description = "Convert a PDF into a large poster that can be printed on multiple smaller pages";
+
mainProgram = "plakativ";
+
homepage = "https://gitlab.mister-muffin.de/josch/plakativ";
+
license = lib.licenses.gpl3Only;
+
maintainers = with lib.maintainers; [ marcin-serwin ];
+
};
+
}
+2 -2
pkgs/by-name/po/podman-desktop/package.nix
···
in
stdenv.mkDerivation (finalAttrs: {
pname = "podman-desktop";
-
version = "1.18.0";
passthru.updateScript = nix-update-script { };
···
owner = "containers";
repo = "podman-desktop";
tag = "v${finalAttrs.version}";
-
hash = "sha256-u3Irn+hSyTNTLl8QenMZbISE5aFhb58mOSOooVoijKw=";
};
pnpmDeps = pnpm_9.fetchDeps {
···
in
stdenv.mkDerivation (finalAttrs: {
pname = "podman-desktop";
+
version = "1.18.1";
passthru.updateScript = nix-update-script { };
···
owner = "containers";
repo = "podman-desktop";
tag = "v${finalAttrs.version}";
+
hash = "sha256-GYdetO/WiEQAvVSvu81tKqkOH7YUgkB7RVW0Crd/2ww=";
};
pnpmDeps = pnpm_9.fetchDeps {
+3 -3
pkgs/by-name/pr/process-compose/package.nix
···
in
buildGoModule rec {
pname = "process-compose";
-
version = "1.63.0";
src = fetchFromGitHub {
owner = "F1bonacc1";
repo = pname;
rev = "v${version}";
-
hash = "sha256-FnxpaaZLpYMqLGXv/9HP3jh0DuujXoDH2H+omRzgeyQ=";
# populate values that require us to use git. By doing this in postFetch we
# can delete .git afterwards and maintain better reproducibility of the src.
leaveDotGit = true;
···
installShellFiles
];
-
vendorHash = "sha256-4ktj2mRSrY81xvQJd76jo9WJw/ohHXypWuSANp9C+6U=";
doCheck = false;
···
in
buildGoModule rec {
pname = "process-compose";
+
version = "1.64.1";
src = fetchFromGitHub {
owner = "F1bonacc1";
repo = pname;
rev = "v${version}";
+
hash = "sha256-qv/fVfuQD7Nan5Nn1RkwXoGZuPYSRWQaojEn6MCF9BQ=";
# populate values that require us to use git. By doing this in postFetch we
# can delete .git afterwards and maintain better reproducibility of the src.
leaveDotGit = true;
···
installShellFiles
];
+
vendorHash = "sha256-NEKHTSLEF8jBSmAnHq/q+kyV8vPz3DTNj4Jquf5rnso=";
doCheck = false;
+2 -1
pkgs/by-name/si/signal-desktop-bin/generic.nix
···
--replace-fail "/${bindir}/signal-desktop" ${meta.mainProgram} \
--replace-fail "StartupWMClass=Signal" "StartupWMClass=signal"
# Note: The following path contains bundled libraries:
# $out/lib/signal-desktop/resources/app.asar.unpacked/node_modules/
patchelf --add-needed ${libpulseaudio}/lib/libpulse.so "$out/lib/signal-desktop/resources/app.asar.unpacked/node_modules/@signalapp/ringrtc/build/linux/libringrtc-${ARCH}.node"
···
equirosa
urandom
bkchr
-
teutat3s
emily
Gliczy
];
···
--replace-fail "/${bindir}/signal-desktop" ${meta.mainProgram} \
--replace-fail "StartupWMClass=Signal" "StartupWMClass=signal"
+
mv $out/share/applications/signal{-desktop,}.desktop
+
# Note: The following path contains bundled libraries:
# $out/lib/signal-desktop/resources/app.asar.unpacked/node_modules/
patchelf --add-needed ${libpulseaudio}/lib/libpulse.so "$out/lib/signal-desktop/resources/app.asar.unpacked/node_modules/@signalapp/ringrtc/build/linux/libringrtc-${ARCH}.node"
···
equirosa
urandom
bkchr
emily
Gliczy
];
+2 -1
pkgs/by-name/si/signal-desktop/package.nix
···
desktopItems = [
(makeDesktopItem {
-
name = finalAttrs.pname;
desktopName = "Signal";
exec = "${finalAttrs.meta.mainProgram} %U";
type = "Application";
···
++ lib.optional withAppleEmojis unfree;
maintainers = with lib.maintainers; [
marcin-serwin
];
mainProgram = "signal-desktop";
platforms = [
···
desktopItems = [
(makeDesktopItem {
+
name = "signal";
desktopName = "Signal";
exec = "${finalAttrs.meta.mainProgram} %U";
type = "Application";
···
++ lib.optional withAppleEmojis unfree;
maintainers = with lib.maintainers; [
marcin-serwin
+
teutat3s
];
mainProgram = "signal-desktop";
platforms = [
+3 -3
pkgs/by-name/sn/snipe-it/package.nix
···
php84.buildComposerProject2 (finalAttrs: {
pname = "snipe-it";
-
version = "8.1.2";
src = fetchFromGitHub {
owner = "grokability";
repo = "snipe-it";
tag = "v${finalAttrs.version}";
-
hash = "sha256-tF7lTkmowJAEz2BGNWK2yHkPYafS9Rs5Z98snsbCNQU=";
};
-
vendorHash = "sha256-wVRmvxcrsu5ZBPYrIx9p4+ddWTgBBaeLvyqFMPj3iIg=";
postInstall = ''
snipe_it_out="$out/share/php/snipe-it"
···
php84.buildComposerProject2 (finalAttrs: {
pname = "snipe-it";
+
version = "8.1.3";
src = fetchFromGitHub {
owner = "grokability";
repo = "snipe-it";
tag = "v${finalAttrs.version}";
+
hash = "sha256-SzL1api9hObdvhKRtBrzgvZNuJHAoeB2GCt2etCZ6Kw=";
};
+
vendorHash = "sha256-KOzPzKN1HXFidjXWe8tNPwFJ8DmdrkCDKeChNhGcTDo=";
postInstall = ''
snipe_it_out="$out/share/php/snipe-it"
+3 -3
pkgs/by-name/sp/spotify-player/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "spotify-player";
-
version = "0.20.4";
src = fetchFromGitHub {
owner = "aome510";
repo = "spotify-player";
tag = "v${version}";
-
hash = "sha256-5N/zTkNgcIk/Ml11Oo+jyoO0r2Hh9SxFL+tdhD/1X/4=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-0vIhAJ3u+PfujUGI07fddDs33P35Q4CSDz1sMuQwVws=";
nativeBuildInputs =
[
···
rustPlatform.buildRustPackage rec {
pname = "spotify-player";
+
version = "0.20.5";
src = fetchFromGitHub {
owner = "aome510";
repo = "spotify-player";
tag = "v${version}";
+
hash = "sha256-NlMQgVkMVCVrMv4IyFtPmRkAmf2k4F0dp6e8s63aBHg=";
};
useFetchCargoVendor = true;
+
cargoHash = "sha256-glQh6PzwJp5o35aXRW4+Pq2iSeGg9vjR5fJQomPpSOc=";
nativeBuildInputs =
[
+25 -11
pkgs/by-name/st/stalwart-mail/package.nix
···
rocksdb,
callPackage,
withFoundationdb ? false,
}:
rustPlatform.buildRustPackage rec {
-
pname = "stalwart-mail";
version = "0.11.8";
src = fetchFromGitHub {
···
# Issue: https://github.com/stalwartlabs/mail-server/issues/1104
buildNoDefaultFeatures = true;
-
buildFeatures = [
-
"sqlite"
-
"postgres"
-
"mysql"
-
"rocks"
-
"elastic"
-
"s3"
-
"redis"
-
] ++ lib.optionals withFoundationdb [ "foundationdb" ];
env = {
OPENSSL_NO_VENDOR = true;
···
description = "Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)";
homepage = "https://github.com/stalwartlabs/mail-server";
changelog = "https://github.com/stalwartlabs/mail-server/blob/main/CHANGELOG.md";
-
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [
happysalada
onny
···
rocksdb,
callPackage,
withFoundationdb ? false,
+
stalwartEnterprise ? false,
}:
rustPlatform.buildRustPackage rec {
+
pname = "stalwart-mail" + (lib.optionalString stalwartEnterprise "-enterprise");
version = "0.11.8";
src = fetchFromGitHub {
···
# Issue: https://github.com/stalwartlabs/mail-server/issues/1104
buildNoDefaultFeatures = true;
+
buildFeatures =
+
[
+
"sqlite"
+
"postgres"
+
"mysql"
+
"rocks"
+
"elastic"
+
"s3"
+
"redis"
+
]
+
++ lib.optionals withFoundationdb [ "foundationdb" ]
+
++ lib.optionals stalwartEnterprise [ "enterprise" ];
env = {
OPENSSL_NO_VENDOR = true;
···
description = "Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)";
homepage = "https://github.com/stalwartlabs/mail-server";
changelog = "https://github.com/stalwartlabs/mail-server/blob/main/CHANGELOG.md";
+
license =
+
[ lib.licenses.agpl3Only ]
+
++ lib.optionals stalwartEnterprise [
+
{
+
fullName = "Stalwart Enterprise License 1.0 (SELv1) Agreement";
+
url = "https://github.com/stalwartlabs/mail-server/blob/main/LICENSES/LicenseRef-SEL.txt";
+
free = false;
+
redistributable = false;
+
}
+
];
+
maintainers = with lib.maintainers; [
happysalada
onny
+3 -3
pkgs/by-name/sy/synapse-admin-etkecc/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "synapse-admin-etkecc";
-
version = "0.10.3-etke39";
src = fetchFromGitHub {
owner = "etkecc";
repo = "synapse-admin";
tag = "v${finalAttrs.version}";
-
hash = "sha256-1jE4QrHAnH27FrfpgM8rKd4I2AAJArtL0jgcWVc8TrU=";
};
yarnOfflineCache = fetchYarnDeps {
yarnLock = finalAttrs.src + "/yarn.lock";
-
hash = "sha256-60rS/OfPEQmmZ5j7mUjMPyK9prgNOX7MkYpu9djdjxQ=";
};
nativeBuildInputs = [
···
stdenv.mkDerivation (finalAttrs: {
pname = "synapse-admin-etkecc";
+
version = "0.10.4-etke40";
src = fetchFromGitHub {
owner = "etkecc";
repo = "synapse-admin";
tag = "v${finalAttrs.version}";
+
hash = "sha256-QIOQ25K/QCpSAz3HMOADSIVb3iqfdNCNmWrn7xD0ytU=";
};
yarnOfflineCache = fetchYarnDeps {
yarnLock = finalAttrs.src + "/yarn.lock";
+
hash = "sha256-YQZN9tj0zGnC4gmTvHM32mdaOw5RFuUL2ZKd9/8GNZA=";
};
nativeBuildInputs = [
+3 -3
pkgs/by-name/ue/uesave/package.nix
···
}:
rustPlatform.buildRustPackage rec {
pname = "uesave";
-
version = "0.5.0";
src = fetchFromGitHub {
owner = "trumank";
repo = "uesave-rs";
rev = "v${version}";
-
hash = "sha256-9gOOSLejVfR1KJMhcNuKDkuTOvPC6sNG8xQOZlt8NxI=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-rAbZfAAW+/7wjsVg9x/OkoCmSbUWeuIkRUYlF+PY0Vs=";
nativeInstallCheckInputs = [
versionCheckHook
···
}:
rustPlatform.buildRustPackage rec {
pname = "uesave";
+
version = "0.6.2";
src = fetchFromGitHub {
owner = "trumank";
repo = "uesave-rs";
rev = "v${version}";
+
hash = "sha256-cwkeuHmtIS8zTxTSa1qLtWfN2OZinqKngMEYvrCCAk0=";
};
useFetchCargoVendor = true;
+
cargoHash = "sha256-QGhaaBvxKYnljrkCCcFZLALppvM15c8Xtn36SecaNJ8=";
nativeInstallCheckInputs = [
versionCheckHook
+2 -2
pkgs/by-name/ug/ugs/package.nix
···
in
stdenv.mkDerivation rec {
pname = "ugs";
-
version = "2.1.13";
src = fetchzip {
url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip";
-
hash = "sha256-LgbZds747/ll9kwIlDR62c9GcnxTcz1TNbAAVXwg3wY=";
};
dontUnpack = true;
···
in
stdenv.mkDerivation rec {
pname = "ugs";
+
version = "2.1.14";
src = fetchzip {
url = "https://github.com/winder/Universal-G-Code-Sender/releases/download/v${version}/UniversalGcodeSender.zip";
+
hash = "sha256-yPamI5Ww56J+jQ3IZW2VKtyW19SHZ1Cxhq2dOAOiUMo=";
};
dontUnpack = true;
+2 -2
pkgs/by-name/ya/yandex-music/package.nix
···
assert lib.assertMsg (vibeAnimationMaxFps >= 0) "Vibe animation max FPS must be greater then 0";
stdenvNoCC.mkDerivation rec {
pname = "yandex-music";
-
version = "5.46.0";
src = fetchFromGitHub {
owner = "cucumber-sp";
repo = "yandex-music-linux";
rev = "v${version}";
-
hash = "sha256-JyDpJCNHmPV1l9+//3sgJGkD+pewuoAb33hgTUi5Ukc=";
};
nativeBuildInputs = [
···
assert lib.assertMsg (vibeAnimationMaxFps >= 0) "Vibe animation max FPS must be greater then 0";
stdenvNoCC.mkDerivation rec {
pname = "yandex-music";
+
version = "5.50.0";
src = fetchFromGitHub {
owner = "cucumber-sp";
repo = "yandex-music-linux";
rev = "v${version}";
+
hash = "sha256-xn/9LjRLm6CNLrnrLiYr9deeo09iRMEKCRFuM3SELjw=";
};
nativeBuildInputs = [
+4 -4
pkgs/by-name/ya/yandex-music/ym_info.json
···
{
-
"version": "5.46.0",
-
"exe_name": "Yandex_Music_x64_5.46.0.exe",
-
"exe_link": "https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.46.0.exe",
-
"exe_hash": "sha256-gvdJ/ucPeSG/oSD6ullFzWdRYzu0ovxo0qK8ZjLHi+g="
}
···
{
+
"version": "5.50.0",
+
"exe_name": "Yandex_Music_x64_5.50.0.exe",
+
"exe_link": "https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.50.0.exe",
+
"exe_hash": "sha256-l0QyY8iJkBO0hPUZ1gA0wyJgppO46nURa3L7JzxRBG0="
}
+2 -2
pkgs/by-name/zm/zmap/package.nix
···
stdenv.mkDerivation rec {
pname = "zmap";
-
version = "4.3.3";
src = fetchFromGitHub {
owner = "zmap";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-BxvmbLZCuGsUZ+ajWUOrchojJ5lipTDOrHKb+fmKTbM=";
};
cmakeFlags = [ "-DRESPECT_INSTALL_PREFIX_CONFIG=ON" ];
···
stdenv.mkDerivation rec {
pname = "zmap";
+
version = "4.3.4";
src = fetchFromGitHub {
owner = "zmap";
repo = pname;
rev = "v${version}";
+
sha256 = "sha256-fHCVo8OwQUzpdDq7dMBxvK15Ojth5UmNoPTVuTGUP58=";
};
cmakeFlags = [ "-DRESPECT_INSTALL_PREFIX_CONFIG=ON" ];
+2 -2
pkgs/development/python-modules/docling/default.nix
···
buildPythonPackage rec {
pname = "docling";
-
version = "2.31.0";
pyproject = true;
src = fetchFromGitHub {
owner = "docling-project";
repo = "docling";
tag = "v${version}";
-
hash = "sha256-hvNvplEjF/zEchJBN2yJ0/D5Yec/Grr6kdpzRLXeyZU=";
};
build-system = [
···
buildPythonPackage rec {
pname = "docling";
+
version = "2.31.1";
pyproject = true;
src = fetchFromGitHub {
owner = "docling-project";
repo = "docling";
tag = "v${version}";
+
hash = "sha256-XGOEYGv5l+7PO03S1YljjU//BuJZ1xpclrVnKTff7bg=";
};
build-system = [
+14 -4
pkgs/development/python-modules/litellm/default.nix
···
uvloop,
uvicorn,
nixosTests,
}:
buildPythonPackage rec {
pname = "litellm";
-
version = "1.65.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "BerriAI";
repo = "litellm";
tag = "v${version}-stable";
-
hash = "sha256-q6FDgSwU3G41bVvdofsTBVG90xoqi+NP6zUg9geNz9I=";
};
build-system = [ poetry-core ];
···
pythonImportsCheck = [ "litellm" ];
# access network
doCheck = false;
-
passthru.tests = {
-
inherit (nixosTests) litellm;
};
meta = {
···
uvloop,
uvicorn,
nixosTests,
+
nix-update-script,
}:
buildPythonPackage rec {
pname = "litellm";
+
version = "1.69.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "BerriAI";
repo = "litellm";
tag = "v${version}-stable";
+
hash = "sha256-W2uql9fKzwAmSgeLTuESguh+dVn+b3JNTeGlCc9NP2A=";
};
build-system = [ poetry-core ];
···
pythonImportsCheck = [ "litellm" ];
+
# Relax dependency check on openai, may not be needed in the future
+
pythonRelaxDeps = [ "openai" ];
+
# access network
doCheck = false;
+
passthru = {
+
tests = { inherit (nixosTests) litellm; };
+
updateScript = nix-update-script {
+
extraArgs = [
+
"--version-regex"
+
"v([0-9]+\\.[0-9]+\\.[0-9]+)-stable"
+
];
+
};
};
meta = {
+2 -2
pkgs/development/python-modules/openai/default.nix
···
buildPythonPackage rec {
pname = "openai";
-
version = "1.78.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "openai";
repo = "openai-python";
tag = "v${version}";
-
hash = "sha256-LY9px7l0xY1nnCagepm5p1USw4WW15Sc1UN7+Ep7bqo=";
};
postPatch = ''substituteInPlace pyproject.toml --replace-fail "hatchling==1.26.3" "hatchling"'';
···
buildPythonPackage rec {
pname = "openai";
+
version = "1.78.1";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "openai";
repo = "openai-python";
tag = "v${version}";
+
hash = "sha256-rdK4usuFVhPpDL3jnSkapJfDfLOI5EH8zeS0a7xoy/g=";
};
postPatch = ''substituteInPlace pyproject.toml --replace-fail "hatchling==1.26.3" "hatchling"'';
+16 -11
pkgs/development/python-modules/plotpy/default.nix
···
buildPythonPackage rec {
pname = "plotpy";
-
version = "2.7.3";
pyproject = true;
src = fetchFromGitHub {
owner = "PlotPyStack";
repo = "PlotPy";
tag = "v${version}";
-
hash = "sha256-Z8aCDTBRdksbjjH5P+OXln3CHciw1MuYQN3K6KOcouk=";
};
build-system = [
···
passthru = {
tests = {
-
# Upstream doesn't officially supports all of them, although they use
-
# qtpy, see: https://github.com/PlotPyStack/PlotPy/issues/20 . When this
-
# package was created, all worked besides withPySide2, with which there
-
# was a peculiar segmentation fault during the tests. In anycase, PySide2
-
# shouldn't be used for modern applications.
withPyQt6 = plotpy.override {
pyqt6 = pyqt6;
qt6 = qt6;
};
-
withPySide6 = plotpy.override {
-
pyqt6 = pyside6;
-
qt6 = qt6;
-
};
withPyQt5 = plotpy.override {
pyqt6 = pyqt5;
qt6 = qt5;
};
withPySide2 = plotpy.override {
pyqt6 = pyside2;
qt6 = qt5;
};
};
};
···
buildPythonPackage rec {
pname = "plotpy";
+
version = "2.7.4";
pyproject = true;
src = fetchFromGitHub {
owner = "PlotPyStack";
repo = "PlotPy";
tag = "v${version}";
+
hash = "sha256-FmSFcCAJZyzD9qRE+L2oxWtyh2spJSLRq+xtx4e1Rhg=";
};
build-system = [
···
passthru = {
tests = {
withPyQt6 = plotpy.override {
pyqt6 = pyqt6;
qt6 = qt6;
};
withPyQt5 = plotpy.override {
pyqt6 = pyqt5;
qt6 = qt5;
};
+
};
+
# Upstream doesn't officially supports all of them, although they use
+
# qtpy, see: https://github.com/PlotPyStack/PlotPy/issues/20
+
knownFailingTests = {
+
# Was failing with a peculiar segmentation fault during the tests, since
+
# this package was added to Nixpkgs. This is not too bad as PySide2
+
# shouldn't be used for modern applications.
withPySide2 = plotpy.override {
pyqt6 = pyside2;
qt6 = qt5;
+
};
+
# Has started failing too similarly to pyside2, ever since a certain
+
# version bump. See also:
+
# https://github.com/PlotPyStack/PlotPy/blob/v2.7.4/README.md?plain=1#L62
+
withPySide6 = plotpy.override {
+
pyqt6 = pyside6;
+
qt6 = qt6;
};
};
};
+11 -3
pkgs/os-specific/linux/kernel/manual-config.nix
···
if kernelConf.target == "uImage" && stdenv.hostPlatform.linuxArch == "arm" then
"uinstall"
else if
-
kernelConf.target == "zImage"
-
|| kernelConf.target == "Image.gz"
-
|| kernelConf.target == "vmlinuz.efi"
then
"zinstall"
else
···
if kernelConf.target == "uImage" && stdenv.hostPlatform.linuxArch == "arm" then
"uinstall"
else if
+
(
+
kernelConf.target == "zImage"
+
|| kernelConf.target == "Image.gz"
+
|| kernelConf.target == "vmlinuz.efi"
+
)
+
&& builtins.elem stdenv.hostPlatform.linuxArch [
+
"arm"
+
"arm64"
+
"parisc"
+
"riscv"
+
]
then
"zinstall"
else
+4 -4
pkgs/os-specific/linux/kernel/zen-kernels.nix
···
variants = {
# ./update-zen.py zen
zen = {
-
version = "6.14.5"; # zen
suffix = "zen1"; # zen
-
sha256 = "12ikiicar6agap4i7qpzlxabqrgqdc69im3ly9m6rrydhb5ig2an"; # zen
isLqx = false;
};
# ./update-zen.py lqx
lqx = {
-
version = "6.14.5"; # lqx
suffix = "lqx1"; # lqx
-
sha256 = "18h9qxd1ljkqff4nh96nviqzhss2jzaia3h0wijwa6r7d5w4nk2z"; # lqx
isLqx = true;
};
};
···
variants = {
# ./update-zen.py zen
zen = {
+
version = "6.14.6"; # zen
suffix = "zen1"; # zen
+
sha256 = "0qrx0c8bza9jj84ax209h3b9w2yn2sh122qj9ki77c8wgp6rwvrm"; # zen
isLqx = false;
};
# ./update-zen.py lqx
lqx = {
+
version = "6.14.6"; # lqx
suffix = "lqx1"; # lqx
+
sha256 = "0l2k4c1jv167dxx99r62anb1jwp4hz698z6ysdaagary103x8wk3"; # lqx
isLqx = true;
};
};
+3 -3
pkgs/os-specific/linux/rtl8821ce/default.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "rtl8821ce";
-
version = "0-unstable-2025-03-31";
src = fetchFromGitHub {
owner = "tomaspinho";
repo = "rtl8821ce";
-
rev = "98cff1d7dcbf17b36a98bac342df75dfe0b79017";
-
hash = "sha256-23UJE3EzWufjuAU+iBOk5Ia2xUWxQQGI6/eCp1UmRUA=";
};
hardeningDisable = [ "pic" ];
···
stdenv.mkDerivation (finalAttrs: {
pname = "rtl8821ce";
+
version = "0-unstable-2025-05-02";
src = fetchFromGitHub {
owner = "tomaspinho";
repo = "rtl8821ce";
+
rev = "6208d1dd190b7cb60bbbf760505bcb1c250518c2";
+
hash = "sha256-d2KWiUxx3/rZvobOzvK5nyGdovovOf8g2MaEd2QW+Pc=";
};
hardeningDisable = [ "pic" ];
+6 -22
pkgs/tools/audio/beets/default.nix
···
config,
fetchFromGitHub,
python3Packages,
-
fetchpatch,
}:
/*
** To customize the enabled beets plugins, use the pluginOverrides input to the
···
*/
let
extraPatches = [
-
(fetchpatch {
-
# Already on master. TODO: remove when updating to the next release
-
# Issue: https://github.com/beetbox/beets/issues/5527
-
# PR: https://github.com/beetbox/beets/pull/5650
-
name = "fix-im-backend";
-
url = "https://github.com/beetbox/beets/commit/1f938674015ee71431fe9bd97c2214f58473efd2.patch";
-
hash = "sha256-koCYeiUhk1ifo6CptOSu3p7Nz0FFUeiuArTknM/tpVQ=";
-
excludes = [
-
"docs/changelog.rst"
-
];
-
})
# Bash completion fix for Nix
./patches/bash-completion-always-print.patch
-
# Remove after next release.
-
(fetchpatch {
-
url = "https://github.com/beetbox/beets/commit/bcc79a5b09225050ce7c88f63dfa56f49f8782a8.patch?full_index=1";
-
hash = "sha256-Y2Q5Co3UlDGKuzfxUvdUY3rSMNpsBoDW03ZWZOfzp3Y=";
-
})
];
in
lib.makeExtensible (
···
beets-stable = callPackage ./common.nix rec {
inherit python3Packages extraPatches;
-
version = "2.2.0";
src = fetchFromGitHub {
owner = "beetbox";
repo = "beets";
tag = "v${version}";
-
hash = "sha256-jhwXRgUUQJgQ/PLwvY1UfHCJ9UC8DcdBpE/janao0RM=";
};
};
···
beets-unstable = callPackage ./common.nix {
inherit python3Packages;
-
version = "2.2.0-unstable-2025-03-12";
src = fetchFromGitHub {
owner = "beetbox";
repo = "beets";
-
rev = "670a3bcd17a46883c71cf07dd313fcd0dff4be9d";
-
hash = "sha256-hSY7FhpPL4poOY1/gqk7oLNgQ7KA/MJqx50xOLIP0QA=";
};
};
alternatives = callPackage ./plugins/alternatives.nix { beets = self.beets-minimal; };
audible = callPackage ./plugins/audible.nix { beets = self.beets-minimal; };
copyartifacts = callPackage ./plugins/copyartifacts.nix { beets = self.beets-minimal; };
}
// lib.optionalAttrs config.allowAliases {
extrafiles = throw "extrafiles is unmaintained since 2020 and broken since beets 2.0.0";
···
config,
fetchFromGitHub,
python3Packages,
}:
/*
** To customize the enabled beets plugins, use the pluginOverrides input to the
···
*/
let
extraPatches = [
# Bash completion fix for Nix
./patches/bash-completion-always-print.patch
];
in
lib.makeExtensible (
···
beets-stable = callPackage ./common.nix rec {
inherit python3Packages extraPatches;
+
version = "2.3.0";
src = fetchFromGitHub {
owner = "beetbox";
repo = "beets";
tag = "v${version}";
+
hash = "sha256-mH3m2O+q5Ys9DJD3ulmhViyf/VPEpHevjmNerVe327s=";
};
};
···
beets-unstable = callPackage ./common.nix {
inherit python3Packages;
+
version = "2.3.0";
src = fetchFromGitHub {
owner = "beetbox";
repo = "beets";
+
rev = "250b0da900c095a09bedc1a0717381010c01a3c6";
+
hash = "sha256-mH3m2O+q5Ys9DJD3ulmhViyf/VPEpHevjmNerVe327s=";
};
};
alternatives = callPackage ./plugins/alternatives.nix { beets = self.beets-minimal; };
audible = callPackage ./plugins/audible.nix { beets = self.beets-minimal; };
copyartifacts = callPackage ./plugins/copyartifacts.nix { beets = self.beets-minimal; };
+
filetote = callPackage ./plugins/filetote.nix { beets = self.beets-minimal; };
}
// lib.optionalAttrs config.allowAliases {
extrafiles = throw "extrafiles is unmaintained since 2020 and broken since beets 2.0.0";
+2 -2
pkgs/tools/audio/beets/plugins/alternatives.nix
···
python3Packages.buildPythonApplication rec {
pname = "beets-alternatives";
-
version = "0.13.2";
pyproject = true;
src = fetchFromGitHub {
repo = "beets-alternatives";
owner = "geigerzaehler";
tag = "v${version}";
-
hash = "sha256-OoQsP+QVIOnSA4oy1a8JJ3VeCUS+GR8sPPOysvmRMqI=";
};
nativeBuildInputs = [
···
python3Packages.buildPythonApplication rec {
pname = "beets-alternatives";
+
version = "0.13.3";
pyproject = true;
src = fetchFromGitHub {
repo = "beets-alternatives";
owner = "geigerzaehler";
tag = "v${version}";
+
hash = "sha256-j56AzbpZFACXy5KqafE8PCC+zM6pXrxr/rWy9UjZPQg=";
};
nativeBuildInputs = [
+9 -7
pkgs/tools/audio/beets/plugins/audible.nix
···
hash = "sha256-Sds16h+W9t7N755ADPXXDi+SxwouBMxP9ApUqaXedqY=";
};
pythonRelaxDeps = true;
build-system = with python3Packages; [
hatchling
];
-
dependencies =
-
[ beets ]
-
++ (with python3Packages; [
-
markdownify
-
natsort
-
tldextract
-
]);
passthru = {
updateScript = nix-update-script { };
···
hash = "sha256-Sds16h+W9t7N755ADPXXDi+SxwouBMxP9ApUqaXedqY=";
};
+
nativeBuildInputs = [
+
beets
+
];
+
pythonRelaxDeps = true;
build-system = with python3Packages; [
hatchling
];
+
dependencies = with python3Packages; [
+
markdownify
+
natsort
+
tldextract
+
];
passthru = {
updateScript = nix-update-script { };
+10 -4
pkgs/tools/audio/beets/plugins/copyartifacts.nix
···
};
postPatch = ''
-
sed -i -e '/install_requires/,/\]/{/beets/d}' setup.py
sed -i -e '/namespace_packages/d' setup.py
printf 'from pkgutil import extend_path\n__path__ = extend_path(__path__, __name__)\n' >beetsplug/__init__.py
···
sed -i -e 's/util\.py3_path/os.fsdecode/g' tests/_common.py
'';
-
build-system = with python3Packages; [ setuptools ];
-
dependencies = with python3Packages; [ six ];
nativeCheckInputs = [
python3Packages.pytestCheckHook
-
beets
writableTmpDirAsHomeHook
];
···
};
postPatch = ''
sed -i -e '/namespace_packages/d' setup.py
printf 'from pkgutil import extend_path\n__path__ = extend_path(__path__, __name__)\n' >beetsplug/__init__.py
···
sed -i -e 's/util\.py3_path/os.fsdecode/g' tests/_common.py
'';
+
nativeBuildInputs = [
+
beets
+
];
+
build-system = with python3Packages; [
+
setuptools
+
];
+
+
dependencies = with python3Packages; [
+
six
+
];
nativeCheckInputs = [
python3Packages.pytestCheckHook
writableTmpDirAsHomeHook
];
+83
pkgs/tools/audio/beets/plugins/filetote.nix
···
···
+
{
+
lib,
+
fetchFromGitHub,
+
python3Packages,
+
beets,
+
beetsPackages,
+
writableTmpDirAsHomeHook,
+
}:
+
+
python3Packages.buildPythonApplication rec {
+
pname = "beets-filetote";
+
version = "1.0.1";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "gtronset";
+
repo = "beets-filetote";
+
tag = "v${version}";
+
hash = "sha256-LTJwZI/kQc+Iv0y8jAi5Xdh4wLEwbTA9hV76ndQsQzU=";
+
};
+
+
postPatch = ''
+
substituteInPlace pyproject.toml --replace-fail "poetry-core<2.0.0" "poetry-core"
+
'';
+
+
nativeBuildInputs = [
+
beets
+
];
+
+
build-system = [ python3Packages.poetry-core ];
+
+
dependencies = with python3Packages; [
+
mediafile
+
reflink
+
toml
+
typeguard
+
];
+
+
optional-dependencies = {
+
lint = with python3Packages; [
+
black
+
check-manifest
+
flake8
+
flake8-bugbear
+
flake8-bugbear-pyi
+
isort
+
mypy
+
pylint
+
typing_extensions
+
];
+
test = with python3Packages; [
+
beetsPackages.audible
+
mediafile
+
pytest
+
reflink
+
toml
+
typeguard
+
];
+
dev = optional-dependencies.lint ++ optional-dependencies.test ++ [ python3Packages.tox ];
+
};
+
+
pytestFlagsArray = [ "-r fEs" ];
+
+
disabledTestPaths = [
+
"tests/test_cli_operation.py"
+
"tests/test_pruning.py"
+
"tests/test_version.py"
+
];
+
+
nativeCheckInputs = [
+
python3Packages.pytestCheckHook
+
writableTmpDirAsHomeHook
+
] ++ optional-dependencies.test;
+
+
meta = with lib; {
+
description = "Beets plugin to move non-music files during the import process";
+
homepage = "https://github.com/gtronset/beets-filetote";
+
changelog = "https://github.com/gtronset/beets-filetote/blob/${src.rev}/CHANGELOG.md";
+
maintainers = with maintainers; [ dansbandit ];
+
license = licenses.mit;
+
inherit (beets.meta) platforms;
+
};
+
}
+335
pkgs/tools/filesystems/ceph/arrow-cpp-19.nix
···
···
+
# This is is arrow-cpp < 20 used as a workaround for
+
# Ceph not supporting >= yet, taken from nixpkgs commit
+
# 97ae53798f6a7c7c3c259ad8c2cbcede6ca34b2a~
+
# This should be entirely removed when upstream bug
+
# https://tracker.ceph.com/issues/71269
+
# is fixed.
+
{
+
stdenv,
+
lib,
+
fetchurl,
+
fetchFromGitHub,
+
fixDarwinDylibNames,
+
autoconf,
+
aws-sdk-cpp,
+
aws-sdk-cpp-arrow ? aws-sdk-cpp.override {
+
apis = [
+
"cognito-identity"
+
"config"
+
"identity-management"
+
"s3"
+
"sts"
+
"transfer"
+
];
+
},
+
boost,
+
brotli,
+
bzip2,
+
cmake,
+
crc32c,
+
curl,
+
flatbuffers,
+
gflags,
+
glog,
+
google-cloud-cpp,
+
grpc,
+
gtest,
+
libbacktrace,
+
lz4,
+
minio,
+
ninja,
+
nlohmann_json,
+
openssl,
+
perl,
+
pkg-config,
+
protobuf_29,
+
python3,
+
rapidjson,
+
re2,
+
snappy,
+
sqlite,
+
thrift,
+
tzdata,
+
utf8proc,
+
which,
+
zlib,
+
zstd,
+
testers,
+
enableShared ? !stdenv.hostPlatform.isStatic,
+
enableFlight ? stdenv.buildPlatform == stdenv.hostPlatform,
+
# Disable also on RiscV
+
# configure: error: cannot determine number of significant virtual address bits
+
enableJemalloc ?
+
!stdenv.hostPlatform.isDarwin && !stdenv.hostPlatform.isAarch64 && !stdenv.hostPlatform.isRiscV64,
+
enableS3 ? true,
+
# google-cloud-cpp fails to build on RiscV
+
enableGcs ? !stdenv.hostPlatform.isDarwin && !stdenv.hostPlatform.isRiscV64,
+
}:
+
+
let
+
# https://github.com/apache/arrow/issues/45807
+
protobuf = protobuf_29;
+
+
arrow-testing = fetchFromGitHub {
+
name = "arrow-testing";
+
owner = "apache";
+
repo = "arrow-testing";
+
rev = "4d209492d514c2d3cb2d392681b9aa00e6d8da1c";
+
hash = "sha256-IkiCbuy0bWyClPZ4ZEdkEP7jFYLhM7RCuNLd6Lazd4o=";
+
};
+
+
parquet-testing = fetchFromGitHub {
+
name = "parquet-testing";
+
owner = "apache";
+
repo = "parquet-testing";
+
rev = "c7cf1374cf284c0c73024cd1437becea75558bf8";
+
hash = "sha256-DThjyZ34LajHwXZy1IhYKUGUG/ejQ9WvBNuI8eUKmSs=";
+
};
+
+
version = "19.0.1";
+
in
+
stdenv.mkDerivation (finalAttrs: {
+
pname = "arrow-cpp";
+
inherit version;
+
+
src = fetchFromGitHub {
+
owner = "apache";
+
repo = "arrow";
+
rev = "apache-arrow-${version}";
+
hash = "sha256-toHwUIOZRpgR0K7pQtT5nqWpO9G7AuHYTcvA6UVg9lA=";
+
};
+
+
sourceRoot = "${finalAttrs.src.name}/cpp";
+
+
# versions are all taken from
+
# https://github.com/apache/arrow/blob/apache-arrow-${version}/cpp/thirdparty/versions.txt
+
+
# jemalloc: arrow uses a custom prefix to prevent default allocator symbol
+
# collisions as well as custom build flags
+
${if enableJemalloc then "ARROW_JEMALLOC_URL" else null} = fetchurl {
+
url = "https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2";
+
hash = "sha256-LbgtHnEZ3z5xt2QCGbbf6EeJvAU3mDw7esT3GJrs/qo=";
+
};
+
+
# mimalloc: arrow uses custom build flags for mimalloc
+
ARROW_MIMALLOC_URL = fetchFromGitHub {
+
owner = "microsoft";
+
repo = "mimalloc";
+
rev = "v2.0.6";
+
hash = "sha256-u2ITXABBN/dwU+mCIbL3tN1f4c17aBuSdNTV+Adtohc=";
+
};
+
+
ARROW_XSIMD_URL = fetchFromGitHub {
+
owner = "xtensor-stack";
+
repo = "xsimd";
+
rev = "13.0.0";
+
hash = "sha256-qElJYW5QDj3s59L3NgZj5zkhnUMzIP2mBa1sPks3/CE=";
+
};
+
+
ARROW_SUBSTRAIT_URL = fetchFromGitHub {
+
owner = "substrait-io";
+
repo = "substrait";
+
rev = "v0.44.0";
+
hash = "sha256-V739IFTGPtbGPlxcOi8sAaYSDhNUEpITvN9IqdPReug=";
+
};
+
+
nativeBuildInputs = [
+
cmake
+
pkg-config
+
ninja
+
autoconf # for vendored jemalloc
+
flatbuffers
+
] ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
+
buildInputs =
+
[
+
boost
+
brotli
+
bzip2
+
flatbuffers
+
gflags
+
glog
+
gtest
+
libbacktrace
+
lz4
+
nlohmann_json # alternative JSON parser to rapidjson
+
protobuf # substrait requires protobuf
+
rapidjson
+
re2
+
snappy
+
thrift
+
utf8proc
+
zlib
+
zstd
+
]
+
++ lib.optionals enableFlight [
+
grpc
+
openssl
+
protobuf
+
sqlite
+
]
+
++ lib.optionals enableS3 [
+
aws-sdk-cpp-arrow
+
openssl
+
]
+
++ lib.optionals enableGcs [
+
crc32c
+
curl
+
google-cloud-cpp
+
grpc
+
nlohmann_json
+
];
+
+
preConfigure = ''
+
patchShebangs build-support/
+
substituteInPlace "src/arrow/vendored/datetime/tz.cpp" \
+
--replace-fail 'discover_tz_dir();' '"${tzdata}/share/zoneinfo";'
+
'';
+
+
cmakeFlags =
+
[
+
"-DCMAKE_FIND_PACKAGE_PREFER_CONFIG=ON"
+
"-DARROW_BUILD_SHARED=${if enableShared then "ON" else "OFF"}"
+
"-DARROW_BUILD_STATIC=${if enableShared then "OFF" else "ON"}"
+
"-DARROW_BUILD_TESTS=${if enableShared then "ON" else "OFF"}"
+
"-DARROW_BUILD_INTEGRATION=ON"
+
"-DARROW_BUILD_UTILITIES=ON"
+
"-DARROW_EXTRA_ERROR_CONTEXT=ON"
+
"-DARROW_VERBOSE_THIRDPARTY_BUILD=ON"
+
"-DARROW_DEPENDENCY_SOURCE=SYSTEM"
+
"-Dxsimd_SOURCE=AUTO"
+
"-DARROW_DEPENDENCY_USE_SHARED=${if enableShared then "ON" else "OFF"}"
+
"-DARROW_COMPUTE=ON"
+
"-DARROW_CSV=ON"
+
"-DARROW_DATASET=ON"
+
"-DARROW_FILESYSTEM=ON"
+
"-DARROW_FLIGHT_SQL=${if enableFlight then "ON" else "OFF"}"
+
"-DARROW_HDFS=ON"
+
"-DARROW_IPC=ON"
+
"-DARROW_JEMALLOC=${if enableJemalloc then "ON" else "OFF"}"
+
"-DARROW_JSON=ON"
+
"-DARROW_USE_GLOG=ON"
+
"-DARROW_WITH_BACKTRACE=ON"
+
"-DARROW_WITH_BROTLI=ON"
+
"-DARROW_WITH_BZ2=ON"
+
"-DARROW_WITH_LZ4=ON"
+
"-DARROW_WITH_NLOHMANN_JSON=ON"
+
"-DARROW_WITH_SNAPPY=ON"
+
"-DARROW_WITH_UTF8PROC=ON"
+
"-DARROW_WITH_ZLIB=ON"
+
"-DARROW_WITH_ZSTD=ON"
+
"-DARROW_MIMALLOC=ON"
+
"-DARROW_SUBSTRAIT=ON"
+
"-DARROW_FLIGHT=${if enableFlight then "ON" else "OFF"}"
+
"-DARROW_FLIGHT_TESTING=${if enableFlight then "ON" else "OFF"}"
+
"-DARROW_S3=${if enableS3 then "ON" else "OFF"}"
+
"-DARROW_GCS=${if enableGcs then "ON" else "OFF"}"
+
# Parquet options:
+
"-DARROW_PARQUET=ON"
+
"-DPARQUET_BUILD_EXECUTABLES=ON"
+
"-DPARQUET_REQUIRE_ENCRYPTION=ON"
+
]
+
++ lib.optionals (!enableShared) [ "-DARROW_TEST_LINKAGE=static" ]
+
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
"-DCMAKE_INSTALL_RPATH=@loader_path/../lib" # needed for tools executables
+
]
+
++ lib.optionals (!stdenv.hostPlatform.isx86_64) [ "-DARROW_USE_SIMD=OFF" ]
+
++ lib.optionals enableS3 [
+
"-DAWSSDK_CORE_HEADER_FILE=${aws-sdk-cpp-arrow}/include/aws/core/Aws.h"
+
];
+
+
doInstallCheck = true;
+
ARROW_TEST_DATA = lib.optionalString finalAttrs.doInstallCheck "${arrow-testing}/data";
+
PARQUET_TEST_DATA = lib.optionalString finalAttrs.doInstallCheck "${parquet-testing}/data";
+
GTEST_FILTER =
+
let
+
# Upstream Issue: https://issues.apache.org/jira/browse/ARROW-11398
+
filteredTests =
+
lib.optionals stdenv.hostPlatform.isAarch64 [
+
"TestFilterKernelWithNumeric/3.CompareArrayAndFilterRandomNumeric"
+
"TestFilterKernelWithNumeric/7.CompareArrayAndFilterRandomNumeric"
+
"TestCompareKernel.PrimitiveRandomTests"
+
]
+
++ lib.optionals enableS3 [
+
"S3OptionsTest.FromUri"
+
"S3RegionResolutionTest.NonExistentBucket"
+
"S3RegionResolutionTest.PublicBucket"
+
"S3RegionResolutionTest.RestrictedBucket"
+
"TestMinioServer.Connect"
+
"TestS3FS.*"
+
"TestS3FSGeneric.*"
+
]
+
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
# TODO: revisit at 12.0.0 or when
+
# https://github.com/apache/arrow/commit/295c6644ca6b67c95a662410b2c7faea0920c989
+
# is available, see
+
# https://github.com/apache/arrow/pull/15288#discussion_r1071244661
+
"ExecPlanExecution.StressSourceSinkStopped"
+
];
+
in
+
lib.optionalString finalAttrs.doInstallCheck "-${lib.concatStringsSep ":" filteredTests}";
+
+
__darwinAllowLocalNetworking = true;
+
+
nativeInstallCheckInputs =
+
[
+
perl
+
which
+
sqlite
+
]
+
++ lib.optionals enableS3 [ minio ]
+
++ lib.optionals enableFlight [ python3 ];
+
+
installCheckPhase =
+
let
+
disabledTests = [
+
# flaky
+
"arrow-flight-test"
+
# requires networking
+
"arrow-gcsfs-test"
+
"arrow-flight-integration-test"
+
];
+
in
+
''
+
runHook preInstallCheck
+
+
ctest -L unittest --exclude-regex '^(${lib.concatStringsSep "|" disabledTests})$'
+
+
runHook postInstallCheck
+
'';
+
+
meta = with lib; {
+
description = "Cross-language development platform for in-memory data";
+
homepage = "https://arrow.apache.org/docs/cpp/";
+
license = licenses.asl20;
+
platforms = platforms.unix;
+
maintainers = with maintainers; [
+
tobim
+
veprbl
+
cpcloud
+
];
+
pkgConfigModules = [
+
"arrow"
+
"arrow-acero"
+
"arrow-compute"
+
"arrow-csv"
+
"arrow-dataset"
+
"arrow-filesystem"
+
"arrow-flight"
+
"arrow-flight-sql"
+
"arrow-flight-testing"
+
"arrow-json"
+
"arrow-substrait"
+
"arrow-testing"
+
"parquet"
+
];
+
};
+
passthru = {
+
inherit
+
enableFlight
+
enableJemalloc
+
enableS3
+
enableGcs
+
;
+
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
+
};
+
})
+9
pkgs/top-level/all-packages.nix
···
# If we want to switch for that before upstream fixes it, use this patch:
# https://github.com/NixOS/nixpkgs/pull/281858#issuecomment-1899648638
fmt = fmt_9;
})
ceph
ceph-client
···
};
stalwart-mail-webadmin = stalwart-mail.webadmin;
ruby-zoom = callPackage ../tools/text/ruby-zoom { };
···
# If we want to switch for that before upstream fixes it, use this patch:
# https://github.com/NixOS/nixpkgs/pull/281858#issuecomment-1899648638
fmt = fmt_9;
+
+
# Remove once Ceph supports arrow-cpp >= 20, see:
+
# * https://tracker.ceph.com/issues/71269
+
# * https://github.com/NixOS/nixpkgs/issues/406306
+
arrow-cpp = callPackage ../tools/filesystems/ceph/arrow-cpp-19.nix { };
})
ceph
ceph-client
···
};
stalwart-mail-webadmin = stalwart-mail.webadmin;
+
+
stalwart-mail-enterprise = stalwart-mail.override {
+
stalwartEnterprise = true;
+
};
ruby-zoom = callPackage ../tools/text/ruby-zoom { };