From 6f8217e1a6c3a1a6dd4f9d36ea8d20f7d37e9cb7 Mon Sep 17 00:00:00 2001 From: Yassine Doghri Date: Mon, 1 Jan 2024 22:54:59 +0000 Subject: [PATCH] chore: update CI4 + shield + other php and js packages --- app/Config/App.php | 3 +- app/Config/Autoload.php | 9 +- app/Config/Boot/development.php | 2 +- app/Config/Boot/testing.php | 2 +- app/Config/Cache.php | 3 +- app/Config/Email.php | 2 +- app/Config/Filters.php | 8 +- app/Config/Kint.php | 15 +- app/Config/Modules.php | 4 +- app/Config/Publisher.php | 2 +- app/Config/Session.php | 2 +- app/Models/EpisodeModel.php | 1 + app/Models/PlatformModel.php | 2 +- app/Views/errors/cli/error_exception.php | 17 +- app/Views/errors/html/error_exception.php | 33 +- composer.json | 10 +- composer.lock | 119 +- env | 2 +- package.json | 18 +- pnpm-lock.yaml | 3211 +++++++++++---------- spark | 2 +- 21 files changed, 1808 insertions(+), 1659 deletions(-) diff --git a/app/Config/App.php b/app/Config/App.php index 164763a3..52613a86 100644 --- a/app/Config/App.php +++ b/app/Config/App.php @@ -29,8 +29,7 @@ class App extends BaseConfig * 'http://accounts.example.com/': * ['media.example.com', 'accounts.example.com'] * - * @var string[] - * @phpstan-var list + * @var list */ public array $allowedHostnames = []; diff --git a/app/Config/Autoload.php b/app/Config/Autoload.php index 47a8548f..051f0529 100644 --- a/app/Config/Autoload.php +++ b/app/Config/Autoload.php @@ -41,8 +41,7 @@ class Autoload extends AutoloadConfig * 'App' => APPPATH * ]; * - * @var array|string> - * @phpstan-var array> + * @var array|string> */ public $psr4 = [ APP_NAMESPACE => APPPATH, @@ -100,8 +99,7 @@ class Autoload extends AutoloadConfig * '/path/to/my/file.php', * ]; * - * @var string[] - * @phpstan-var list + * @var list */ public $files = [APPPATH . 'Libraries/ViewComponents/Helpers/view_components_helper.php']; @@ -114,8 +112,7 @@ class Autoload extends AutoloadConfig * 'form', * ]; * - * @var string[] - * @phpstan-var list + * @var list */ public $helpers = ['auth', 'setting']; } diff --git a/app/Config/Boot/development.php b/app/Config/Boot/development.php index 3f6dd938..e131d316 100644 --- a/app/Config/Boot/development.php +++ b/app/Config/Boot/development.php @@ -12,7 +12,7 @@ declare(strict_types=1); * * If you set 'display_errors' to '1', CI4's detailed error report will show. */ -error_reporting(-1); +error_reporting(E_ALL); ini_set('display_errors', '1'); /** diff --git a/app/Config/Boot/testing.php b/app/Config/Boot/testing.php index ae8eb6b4..46e757da 100644 --- a/app/Config/Boot/testing.php +++ b/app/Config/Boot/testing.php @@ -16,7 +16,7 @@ declare(strict_types=1); * make sure they don't make it to production. And save us hours of * painful debugging. */ -error_reporting(-1); +error_reporting(E_ALL); ini_set('display_errors', '1'); /** diff --git a/app/Config/Cache.php b/app/Config/Cache.php index 7a938005..ecf562ff 100644 --- a/app/Config/Cache.php +++ b/app/Config/Cache.php @@ -4,6 +4,7 @@ declare(strict_types=1); namespace Config; +use CodeIgniter\Cache\CacheInterface; use CodeIgniter\Cache\Handlers\DummyHandler; use CodeIgniter\Cache\Handlers\FileHandler; use CodeIgniter\Cache\Handlers\MemcachedHandler; @@ -159,7 +160,7 @@ class Cache extends BaseConfig * This is an array of cache engine alias' and class names. Only engines * that are listed here are allowed to be used. * - * @var array + * @var array> */ public array $validHandlers = [ 'dummy' => DummyHandler::class, diff --git a/app/Config/Email.php b/app/Config/Email.php index 588d064f..79948ba0 100644 --- a/app/Config/Email.php +++ b/app/Config/Email.php @@ -30,7 +30,7 @@ class Email extends BaseConfig public string $mailPath = '/usr/sbin/sendmail'; /** - * SMTP Server Address + * SMTP Server Hostname */ public string $SMTPHost = ''; diff --git a/app/Config/Filters.php b/app/Config/Filters.php index 632aec72..d057d6f2 100644 --- a/app/Config/Filters.php +++ b/app/Config/Filters.php @@ -18,9 +18,8 @@ class Filters extends BaseConfig /** * Configures aliases for Filter classes to make reading things nicer and simpler. * - * @var array|string> [filter_name => classname] - * or [filter_name => [classname1, classname2, ...]] - * @phpstan-var array> + * @var array> [filter_name => classname] + * or [filter_name => [classname1, classname2, ...]] */ public array $aliases = [ 'csrf' => CSRF::class, @@ -34,8 +33,7 @@ class Filters extends BaseConfig /** * List of filter aliases that are always applied before and after every request. * - * @var array>>|array> - * @phpstan-var array>|array>> + * @var array>>|array> */ public array $globals = [ 'before' => [ diff --git a/app/Config/Kint.php b/app/Config/Kint.php index d68979ab..0ef705ea 100644 --- a/app/Config/Kint.php +++ b/app/Config/Kint.php @@ -5,7 +5,10 @@ declare(strict_types=1); namespace Config; use CodeIgniter\Config\BaseConfig; +use Kint\Parser\ConstructablePluginInterface; use Kint\Renderer\AbstractRenderer; +use Kint\Renderer\Rich\TabPluginInterface; +use Kint\Renderer\Rich\ValuePluginInterface; /** * -------------------------------------------------------------------------- @@ -26,9 +29,9 @@ class Kint extends BaseConfig */ /** - * @var string[] + * @var list|ConstructablePluginInterface>|null */ - public array $plugins = []; + public ?array $plugins = []; public int $maxDepth = 6; @@ -49,14 +52,14 @@ class Kint extends BaseConfig public int $richSort = AbstractRenderer::SORT_FULL; /** - * @var string[] + * @var array>|null */ - public array $richObjectPlugins = []; + public ?array $richObjectPlugins = []; /** - * @var string[] + * @var array>|null */ - public array $richTabPlugins = []; + public ?array $richTabPlugins = []; /* |-------------------------------------------------------------------------- diff --git a/app/Config/Modules.php b/app/Config/Modules.php index 206bb473..bfceb1f3 100644 --- a/app/Config/Modules.php +++ b/app/Config/Modules.php @@ -60,7 +60,7 @@ class Modules extends BaseModules * ], * ] * - * @var array{only?:string[], exclude?:string[]} + * @var array{only?: list, exclude?: list} */ public $composerPackages = []; @@ -74,7 +74,7 @@ class Modules extends BaseModules * * If it is not listed, only the base application elements will be used. * - * @var string[] + * @var list */ public $aliases = ['events', 'filters', 'registrars', 'routes', 'services']; } diff --git a/app/Config/Publisher.php b/app/Config/Publisher.php index 103f1eef..16dd6783 100644 --- a/app/Config/Publisher.php +++ b/app/Config/Publisher.php @@ -19,7 +19,7 @@ class Publisher extends BasePublisher * to directories not in this list will result in a PublisherException. Files that do no fit the pattern will cause * copy/merge to fail. * - * @var array + * @var array */ public $restrictions = [ ROOTPATH => '*', diff --git a/app/Config/Session.php b/app/Config/Session.php index 73ad8e56..34439837 100644 --- a/app/Config/Session.php +++ b/app/Config/Session.php @@ -21,7 +21,7 @@ class Session extends BaseConfig * - `CodeIgniter\Session\Handlers\MemcachedHandler` * - `CodeIgniter\Session\Handlers\RedisHandler` * - * @phpstan-var class-string + * @var class-string */ public string $driver = FileHandler::class; diff --git a/app/Models/EpisodeModel.php b/app/Models/EpisodeModel.php index cb4b813f..4af946e5 100644 --- a/app/Models/EpisodeModel.php +++ b/app/Models/EpisodeModel.php @@ -218,6 +218,7 @@ class EpisodeModel extends UuidModel /** @var LazyUuidFromString $uuid */ $uuid = $this->uuid->{$this->uuidVersion}(); + // @phpstan-ignore-next-line if (! $this->update($episodeId, [ 'preview_id' => $uuid, ])) { diff --git a/app/Models/PlatformModel.php b/app/Models/PlatformModel.php index 7665a6f5..98a20c2c 100644 --- a/app/Models/PlatformModel.php +++ b/app/Models/PlatformModel.php @@ -84,7 +84,7 @@ class PlatformModel extends Model string $label, string $homeUrl, string $submitUrl = null - ): int | false { + ): bool { $data = [ 'slug' => $slug, 'type' => $type, diff --git a/app/Views/errors/cli/error_exception.php b/app/Views/errors/cli/error_exception.php index aa946812..d88d0ca3 100644 --- a/app/Views/errors/cli/error_exception.php +++ b/app/Views/errors/cli/error_exception.php @@ -5,17 +5,26 @@ declare(strict_types=1); use CodeIgniter\CLI\CLI; // The main Exception -CLI::newLine(); CLI::write('[' . get_class($exception) . ']', 'light_gray', 'red'); -CLI::newLine(); CLI::write($message); -CLI::newLine(); CLI::write('at ' . CLI::color(clean_path($exception->getFile()) . ':' . $exception->getLine(), 'green')); CLI::newLine(); +$last = $exception; + +while ($prevException = $last->getPrevious()) { + $last = $prevException; + + CLI::write(' Caused by:'); + CLI::write(' [' . get_class($prevException) . ']', 'red'); + CLI::write(' ' . $prevException->getMessage()); + CLI::write(' at ' . CLI::color(clean_path($prevException->getFile()) . ':' . $prevException->getLine(), 'green')); + CLI::newLine(); +} + // The backtrace if (defined('SHOW_DEBUG_BACKTRACE') && SHOW_DEBUG_BACKTRACE) { - $backtraces = $exception->getTrace(); + $backtraces = $last->getTrace(); if ($backtraces) { CLI::write('Backtrace:', 'green'); diff --git a/app/Views/errors/html/error_exception.php b/app/Views/errors/html/error_exception.php index 6f9383a3..7c1c2521 100644 --- a/app/Views/errors/html/error_exception.php +++ b/app/Views/errors/html/error_exception.php @@ -47,6 +47,29 @@ $errorId = uniqid('error', true); +
+ getPrevious()) { + $last = $prevException; + ?> + +
+    Caused by:
+    getCode() ? ' #' . $prevException->getCode() : '') ?>
+
+    getMessage())) ?>
+    getMessage())) ?>"
+       rel="noreferrer" target="_blank">search →
+    getFile()) . ':' . $prevException->getLine()) ?>
+    
+ + +
+
@@ -72,11 +95,11 @@ $errorId = uniqid('error', true); {PHP internal code} diff --git a/composer.json b/composer.json index 0fdcfb62..e225dae7 100644 --- a/composer.json +++ b/composer.json @@ -9,12 +9,12 @@ "php": "^8.1", "adaures/ipcat-php": "^v1.0.0", "adaures/podcast-persons-taxonomy": "^v1.0.1", - "aws/aws-sdk-php": "^3.294.4", + "aws/aws-sdk-php": "^3.295.3", "chrisjean/php-ico": "^1.0.4", "cocur/slugify": "^v4.5.1", - "codeigniter4/framework": "v4.4.3", + "codeigniter4/framework": "v4.4.4", "codeigniter4/settings": "v2.1.2", - "codeigniter4/shield": "v1.0.0-beta.8", + "codeigniter4/shield": "v1.0.0", "codeigniter4/tasks": "dev-develop", "geoip2/geoip2": "v3.0.0", "james-heinrich/getid3": "^2.0.0-beta5", @@ -24,7 +24,7 @@ "michalsn/codeigniter4-uuid": "v1.0.2", "mpratt/embera": "^2.0.36", "opawg/user-agents-v2-php": "dev-main", - "phpseclib/phpseclib": "~2.0.45", + "phpseclib/phpseclib": "~2.0.46", "vlucas/phpdotenv": "v5.6.0", "whichbrowser/parser": "^v2.1.7", "yassinedoghri/podcast-feed": "dev-main" @@ -35,7 +35,7 @@ "mikey179/vfsstream": "^v1.6.11", "phpstan/extension-installer": "^1.3.1", "phpstan/phpstan": "^1.10.50", - "phpunit/phpunit": "^10.5.3", + "phpunit/phpunit": "^10.5.5", "rector/rector": "^0.18.13", "symplify/coding-standard": "^12.0.7", "symplify/easy-coding-standard": "^12.0.13" diff --git a/composer.lock b/composer.lock index 5622644a..87b2f984 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2127030d8f3ed9c557e03a6ea20f11e2", + "content-hash": "69ff48ebf4e599995465a1839dc6001c", "packages": [ { "name": "adaures/ipcat-php", @@ -120,16 +120,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.294.4", + "version": "3.295.3", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "4f59bf50aa445fc3ec0b10648b205dd2465e9bec" + "reference": "3346f60c6c5075453f90f703693f764dad76a3a8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/4f59bf50aa445fc3ec0b10648b205dd2465e9bec", - "reference": "4f59bf50aa445fc3ec0b10648b205dd2465e9bec", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3346f60c6c5075453f90f703693f764dad76a3a8", + "reference": "3346f60c6c5075453f90f703693f764dad76a3a8", "shasum": "" }, "require": { @@ -205,9 +205,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.294.4" + "source": "https://github.com/aws/aws-sdk-php/tree/3.295.3" }, - "time": "2023-12-20T19:21:19+00:00" + "time": "2023-12-28T19:32:33+00:00" }, { "name": "brick/math", @@ -373,16 +373,16 @@ }, { "name": "codeigniter4/framework", - "version": "v4.4.3", + "version": "v4.4.4", "source": { "type": "git", "url": "https://github.com/codeigniter4/framework.git", - "reference": "a0339851ed3fa122a4a0e7930c62a1463e0cb257" + "reference": "7c170c4e6bde1b879ee67a8a5457c06cfc3ad07a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/codeigniter4/framework/zipball/a0339851ed3fa122a4a0e7930c62a1463e0cb257", - "reference": "a0339851ed3fa122a4a0e7930c62a1463e0cb257", + "url": "https://api.github.com/repos/codeigniter4/framework/zipball/7c170c4e6bde1b879ee67a8a5457c06cfc3ad07a", + "reference": "7c170c4e6bde1b879ee67a8a5457c06cfc3ad07a", "shasum": "" }, "require": { @@ -396,7 +396,7 @@ "require-dev": { "codeigniter/coding-standard": "^1.5", "fakerphp/faker": "^1.9", - "friendsofphp/php-cs-fixer": "3.13.0", + "friendsofphp/php-cs-fixer": "~3.41.0", "kint-php/kint": "^5.0.4", "mikey179/vfsstream": "^1.6", "nexusphp/cs-config": "^3.6", @@ -419,6 +419,7 @@ "ext-readline": "Improves CLI::input() usability", "ext-redis": "If you use Cache class RedisHandler", "ext-simplexml": "If you format XML", + "ext-sodium": "If you use Encryption SodiumHandler", "ext-sqlite3": "If you use SQLite3", "ext-sqlsrv": "If you use SQL Server", "ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()" @@ -439,7 +440,7 @@ "slack": "https://codeigniterchat.slack.com", "source": "https://github.com/codeigniter4/CodeIgniter4" }, - "time": "2023-10-26T22:45:01+00:00" + "time": "2023-12-28T10:37:53+00:00" }, { "name": "codeigniter4/settings", @@ -490,16 +491,16 @@ }, { "name": "codeigniter4/shield", - "version": "v1.0.0-beta.8", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/codeigniter4/shield.git", - "reference": "434e5a0e550d24199dc4f04033a872e8d3d847d7" + "reference": "7be6b60250158ade521a6f0fdb15ece02254d09a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/codeigniter4/shield/zipball/434e5a0e550d24199dc4f04033a872e8d3d847d7", - "reference": "434e5a0e550d24199dc4f04033a872e8d3d847d7", + "url": "https://api.github.com/repos/codeigniter4/shield/zipball/7be6b60250158ade521a6f0fdb15ece02254d09a", + "reference": "7be6b60250158ade521a6f0fdb15ece02254d09a", "shasum": "" }, "require": { @@ -518,7 +519,7 @@ "mockery/mockery": "^1.0", "phpstan/extension-installer": "^1.3", "phpstan/phpstan-strict-rules": "^1.5", - "rector/rector": "0.18.10" + "rector/rector": "0.18.13" }, "suggest": { "ext-curl": "Required to use the password validation rule via PwnedValidator class.", @@ -555,7 +556,7 @@ "slack": "https://codeigniterchat.slack.com", "source": "https://github.com/codeigniter4/shield" }, - "time": "2023-11-22T23:56:12+00:00" + "time": "2023-12-27T06:55:58+00:00" }, { "name": "codeigniter4/tasks", @@ -563,12 +564,12 @@ "source": { "type": "git", "url": "https://github.com/codeigniter4/tasks.git", - "reference": "f9a94eb7a4817ea74fa0c193626671922d1ac5fc" + "reference": "429a51a2a99ad68c82b6583f5c4ad0de8ad88e46" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/codeigniter4/tasks/zipball/f9a94eb7a4817ea74fa0c193626671922d1ac5fc", - "reference": "f9a94eb7a4817ea74fa0c193626671922d1ac5fc", + "url": "https://api.github.com/repos/codeigniter4/tasks/zipball/429a51a2a99ad68c82b6583f5c4ad0de8ad88e46", + "reference": "429a51a2a99ad68c82b6583f5c4ad0de8ad88e46", "shasum": "" }, "require": { @@ -579,7 +580,7 @@ "require-dev": { "codeigniter4/devkit": "^1.0", "codeigniter4/framework": "^4.1", - "rector/rector": "0.18.12" + "rector/rector": "0.18.13" }, "default-branch": true, "type": "library", @@ -637,7 +638,7 @@ "source": "https://github.com/codeigniter4/tasks/tree/develop", "issues": "https://github.com/codeigniter4/tasks/issues" }, - "time": "2023-12-17T16:05:01+00:00" + "time": "2023-12-22T18:29:10+00:00" }, { "name": "composer/ca-bundle", @@ -2165,16 +2166,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.45", + "version": "2.0.46", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "28d8f438a0064c9de80857e3270d071495544640" + "reference": "498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/28d8f438a0064c9de80857e3270d071495544640", - "reference": "28d8f438a0064c9de80857e3270d071495544640", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d", + "reference": "498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d", "shasum": "" }, "require": { @@ -2251,7 +2252,7 @@ ], "support": { "issues": "https://github.com/phpseclib/phpseclib/issues", - "source": "https://github.com/phpseclib/phpseclib/tree/2.0.45" + "source": "https://github.com/phpseclib/phpseclib/tree/2.0.46" }, "funding": [ { @@ -2267,7 +2268,7 @@ "type": "tidelift" } ], - "time": "2023-09-15T20:55:47+00:00" + "time": "2023-12-29T01:52:43+00:00" }, { "name": "psr/cache", @@ -3622,16 +3623,16 @@ }, { "name": "friendsofphp/php-cs-fixer", - "version": "v3.41.1", + "version": "v3.43.1", "source": { "type": "git", "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git", - "reference": "8b6ae8dcbaf23f09680643ab832a4a3a260265f6" + "reference": "91c0b47216aa43b09656b4d99aa9dade2f3ad8fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/8b6ae8dcbaf23f09680643ab832a4a3a260265f6", - "reference": "8b6ae8dcbaf23f09680643ab832a4a3a260265f6", + "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/91c0b47216aa43b09656b4d99aa9dade2f3ad8fc", + "reference": "91c0b47216aa43b09656b4d99aa9dade2f3ad8fc", "shasum": "" }, "require": { @@ -3661,8 +3662,7 @@ "php-cs-fixer/accessible-object": "^1.1", "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4", "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4", - "phpunit/phpunit": "^9.6", - "symfony/phpunit-bridge": "^6.3.8 || ^7.0", + "phpunit/phpunit": "^9.6 || ^10.5.5", "symfony/yaml": "^5.4 || ^6.0 || ^7.0" }, "suggest": { @@ -3697,7 +3697,7 @@ ], "support": { "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues", - "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.41.1" + "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.43.1" }, "funding": [ { @@ -3705,7 +3705,7 @@ "type": "github" } ], - "time": "2023-12-10T19:59:27+00:00" + "time": "2023-12-29T09:42:16+00:00" }, { "name": "mikey179/vfsstream", @@ -4341,16 +4341,16 @@ }, { "name": "phpunit/phpunit", - "version": "10.5.3", + "version": "10.5.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "6fce887c71076a73f32fd3e0774a6833fc5c7f19" + "reference": "ed21115d505b4b4f7dc7b5651464e19a2c7f7856" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6fce887c71076a73f32fd3e0774a6833fc5c7f19", - "reference": "6fce887c71076a73f32fd3e0774a6833fc5c7f19", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ed21115d505b4b4f7dc7b5651464e19a2c7f7856", + "reference": "ed21115d505b4b4f7dc7b5651464e19a2c7f7856", "shasum": "" }, "require": { @@ -4410,7 +4410,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", - "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.3" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.5" }, "funding": [ { @@ -4426,7 +4426,7 @@ "type": "tidelift" } ], - "time": "2023-12-13T07:25:23+00:00" + "time": "2023-12-27T15:13:52+00:00" }, { "name": "psr/container", @@ -4804,16 +4804,16 @@ }, { "name": "sebastian/diff", - "version": "5.0.3", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/diff.git", - "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b" + "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b", - "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b", + "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/fbf413a49e54f6b9b17e12d900ac7f6101591b7f", + "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f", "shasum": "" }, "require": { @@ -4826,7 +4826,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "5.0-dev" + "dev-main": "5.1-dev" } }, "autoload": { @@ -4850,7 +4850,7 @@ "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", "security": "https://github.com/sebastianbergmann/diff/security/policy", - "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3" + "source": "https://github.com/sebastianbergmann/diff/tree/5.1.0" }, "funding": [ { @@ -4858,7 +4858,7 @@ "type": "github" } ], - "time": "2023-05-01T07:48:21+00:00" + "time": "2023-12-22T10:55:06+00:00" }, { "name": "sebastian/environment", @@ -6218,21 +6218,21 @@ }, { "name": "symfony/service-contracts", - "version": "v3.4.0", + "version": "v3.4.1", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838" + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/b3313c2dbffaf71c8de2934e2ea56ed2291a3838", - "reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0", + "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0", "shasum": "" }, "require": { "php": ">=8.1", - "psr/container": "^2.0" + "psr/container": "^1.1|^2.0" }, "conflict": { "ext-psr": "<1.1|>=2" @@ -6276,7 +6276,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.4.0" + "source": "https://github.com/symfony/service-contracts/tree/v3.4.1" }, "funding": [ { @@ -6292,7 +6292,7 @@ "type": "tidelift" } ], - "time": "2023-07-30T20:28:31+00:00" + "time": "2023-12-26T14:02:43+00:00" }, { "name": "symfony/stopwatch", @@ -6640,7 +6640,6 @@ "aliases": [], "minimum-stability": "stable", "stability-flags": { - "codeigniter4/shield": 10, "codeigniter4/tasks": 20, "james-heinrich/getid3": 10, "opawg/user-agents-v2-php": 20, @@ -6652,5 +6651,5 @@ "php": "^8.1" }, "platform-dev": [], - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/env b/env index cb99e19c..e60354b3 100644 --- a/env +++ b/env @@ -140,4 +140,4 @@ # CURLRequest #-------------------------------------------------------------------- -# curlrequest.shareOptions = true +# curlrequest.shareOptions = false diff --git a/package.json b/package.json index a585193f..7c5e29b2 100644 --- a/package.json +++ b/package.json @@ -30,11 +30,11 @@ "dependencies": { "@amcharts/amcharts4": "^4.10.38", "@amcharts/amcharts4-geodata": "^4.1.28", - "@codemirror/commands": "^6.3.2", + "@codemirror/commands": "^6.3.3", "@codemirror/lang-xml": "^6.0.2", - "@codemirror/language": "^6.9.3", - "@codemirror/state": "^6.3.3", - "@codemirror/view": "^6.22.3", + "@codemirror/language": "^6.10.0", + "@codemirror/state": "^6.4.0", + "@codemirror/view": "^6.23.0", "@floating-ui/dom": "^1.5.3", "@github/clipboard-copy-element": "^1.3.0", "@github/hotkey": "^3.1.0", @@ -49,7 +49,7 @@ "leaflet.markercluster": "^1.5.3", "lit": "^3.1.0", "marked": "^11.1.0", - "wavesurfer.js": "^7.5.3", + "wavesurfer.js": "^7.6.0", "xml-formatter": "^3.6.0" }, "devDependencies": { @@ -63,8 +63,8 @@ "@tailwindcss/forms": "^0.5.7", "@tailwindcss/typography": "^0.5.10", "@types/leaflet": "^1.9.8", - "@typescript-eslint/eslint-plugin": "^6.15.0", - "@typescript-eslint/parser": "^6.15.0", + "@typescript-eslint/eslint-plugin": "^6.16.0", + "@typescript-eslint/parser": "^6.16.0", "all-contributors-cli": "^6.26.1", "commitizen": "^4.3.0", "cross-env": "^7.0.3", @@ -84,8 +84,8 @@ "prettier": "2.8.8", "prettier-plugin-organize-imports": "^3.2.4", "semantic-release": "^22.0.12", - "stylelint": "^16.0.2", - "stylelint-config-standard": "^35.0.0", + "stylelint": "^16.1.0", + "stylelint-config-standard": "^36.0.0", "svgo": "^3.1.0", "tailwindcss": "^3.4.0", "typescript": "^5.3.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ab6339c1..284b8523 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,20 +12,20 @@ dependencies: specifier: ^4.1.28 version: 4.1.28 "@codemirror/commands": - specifier: ^6.3.2 - version: 6.3.2 - "@codemirror/lang-xml": - specifier: ^6.0.2 - version: 6.0.2(@codemirror/view@6.22.3) - "@codemirror/language": - specifier: ^6.9.3 - version: 6.9.3 - "@codemirror/state": specifier: ^6.3.3 version: 6.3.3 + "@codemirror/lang-xml": + specifier: ^6.0.2 + version: 6.0.2(@codemirror/view@6.23.0) + "@codemirror/language": + specifier: ^6.10.0 + version: 6.10.0 + "@codemirror/state": + specifier: ^6.4.0 + version: 6.4.0 "@codemirror/view": - specifier: ^6.22.3 - version: 6.22.3 + specifier: ^6.23.0 + version: 6.23.0 "@floating-ui/dom": specifier: ^1.5.3 version: 1.5.3 @@ -52,7 +52,7 @@ dependencies: version: 10.2.0 codemirror: specifier: ^6.0.1 - version: 6.0.1(@lezer/common@1.1.1) + version: 6.0.1(@lezer/common@1.2.0) flatpickr: specifier: ^4.6.13 version: 4.6.13 @@ -69,8 +69,8 @@ dependencies: specifier: ^11.1.0 version: 11.1.0 wavesurfer.js: - specifier: ^7.5.3 - version: 7.5.3 + specifier: ^7.6.0 + version: 7.6.0 xml-formatter: specifier: ^3.6.0 version: 3.6.0 @@ -107,11 +107,11 @@ devDependencies: specifier: ^1.9.8 version: 1.9.8 "@typescript-eslint/eslint-plugin": - specifier: ^6.15.0 - version: 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3) + specifier: ^6.16.0 + version: 6.16.0(@typescript-eslint/parser@6.16.0)(eslint@8.56.0)(typescript@5.3.3) "@typescript-eslint/parser": - specifier: ^6.15.0 - version: 6.15.0(eslint@8.56.0)(typescript@5.3.3) + specifier: ^6.16.0 + version: 6.16.0(eslint@8.56.0)(typescript@5.3.3) all-contributors-cli: specifier: ^6.26.1 version: 6.26.1 @@ -170,11 +170,11 @@ devDependencies: specifier: ^22.0.12 version: 22.0.12(typescript@5.3.3) stylelint: - specifier: ^16.0.2 - version: 16.0.2(typescript@5.3.3) + specifier: ^16.1.0 + version: 16.1.0(typescript@5.3.3) stylelint-config-standard: - specifier: ^35.0.0 - version: 35.0.0(stylelint@16.0.2) + specifier: ^36.0.0 + version: 36.0.0(stylelint@16.1.0) svgo: specifier: ^3.1.0 version: 3.1.0 @@ -186,7 +186,7 @@ devDependencies: version: 5.3.3 vite: specifier: ^5.0.10 - version: 5.0.10(@types/node@18.18.9) + version: 5.0.10(@types/node@18.19.3) vite-plugin-pwa: specifier: ^0.17.4 version: 0.17.4(vite@5.0.10)(workbox-build@7.0.0)(workbox-window@7.0.0) @@ -233,14 +233,14 @@ packages: integrity: sha512-mX1MYvXCU/wMr6q1WQRVRS1qAbxyiYBfkkdC2ZpT+0uKYIWVUHo+phtbRgAE9t/3ymfWiDEZ813lcAtbokMf3w==, } dependencies: - "@babel/runtime": 7.22.11 - core-js: 3.32.1 + "@babel/runtime": 7.23.6 + core-js: 3.35.0 d3-force: 3.0.0 d3-geo: 3.1.0 d3-geo-projection: 4.0.0 d3-selection: 3.0.0 d3-transition: 3.0.1(d3-selection@3.0.0) - pdfmake: 0.2.7 + pdfmake: 0.2.8 polylabel: 1.1.0 raf: 3.4.1 regression: 2.0.1 @@ -257,7 +257,7 @@ packages: engines: { node: ">=6.0.0" } dependencies: "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + "@jridgewell/trace-mapping": 0.3.20 dev: true /@apideck/better-ajv-errors@0.3.6(ajv@8.12.0): @@ -275,54 +275,43 @@ packages: leven: 3.1.0 dev: true - /@babel/code-frame@7.22.10: + /@babel/code-frame@7.23.5: resolution: { - integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==, + integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/highlight": 7.22.10 + "@babel/highlight": 7.23.4 chalk: 2.4.2 dev: true - /@babel/code-frame@7.22.13: + /@babel/compat-data@7.23.5: resolution: { - integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/highlight": 7.22.20 - chalk: 2.4.2 - dev: true - - /@babel/compat-data@7.22.9: - resolution: - { - integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==, + integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==, } engines: { node: ">=6.9.0" } dev: true - /@babel/core@7.22.11: + /@babel/core@7.23.6: resolution: { - integrity: sha512-lh7RJrtPdhibbxndr6/xx0w8+CVlY5FJZiaSz908Fpy+G0xkBFTvwLcKJFF4PJxVfGhVWNebikpWGnOoC71juQ==, + integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==, } engines: { node: ">=6.9.0" } dependencies: "@ampproject/remapping": 2.2.1 - "@babel/code-frame": 7.22.10 - "@babel/generator": 7.22.10 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) - "@babel/helpers": 7.22.11 - "@babel/parser": 7.22.11 - "@babel/template": 7.22.5 - "@babel/traverse": 7.22.11 - "@babel/types": 7.22.11 - convert-source-map: 1.9.0 + "@babel/code-frame": 7.23.5 + "@babel/generator": 7.23.6 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.6) + "@babel/helpers": 7.23.6 + "@babel/parser": 7.23.6 + "@babel/template": 7.22.15 + "@babel/traverse": 7.23.6 + "@babel/types": 7.23.6 + convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -331,16 +320,16 @@ packages: - supports-color dev: true - /@babel/generator@7.22.10: + /@babel/generator@7.23.6: resolution: { - integrity: sha512-79KIf7YiWjjdZ81JnLujDRApWtl7BxTqWD88+FFdQEIOG8LJ0etDOM7CXuIgGJa55sGOwZVwuEsaLEm0PJ5/+A==, + integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + "@jridgewell/trace-mapping": 0.3.20 jsesc: 2.5.2 dev: true @@ -351,104 +340,104 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.10: + /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: resolution: { - integrity: sha512-Av0qubwDQxC56DoUReVDeLfMEjYYSN1nZrTUrWkXd7hpU73ymRANkbuDm3yni9npkn+RXy9nNbEJZEzXr7xrfQ==, + integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true - /@babel/helper-compilation-targets@7.22.10: + /@babel/helper-compilation-targets@7.23.6: resolution: { - integrity: sha512-JMSwHD4J7SLod0idLq5PKgI+6g/hLD/iuWBq08ZX49xE14VpVEojJ5rHWptpirV2j020MvypRLAXAO50igCJ5Q==, + integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/compat-data": 7.22.9 - "@babel/helper-validator-option": 7.22.5 - browserslist: 4.22.1 + "@babel/compat-data": 7.23.5 + "@babel/helper-validator-option": 7.23.5 + browserslist: 4.22.2 lru-cache: 5.1.1 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.22.11(@babel/core@7.22.11): + /@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.23.6): resolution: { - integrity: sha512-y1grdYL4WzmUDBRGK0pDbIoFd7UZKoDurDzWEoNMYoj1EL+foGRQNyPWDcC+YyegN5y1DUsFFmzjGijB3nSVAQ==, + integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-member-expression-to-functions": 7.22.5 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 + "@babel/helper-member-expression-to-functions": 7.23.0 "@babel/helper-optimise-call-expression": 7.22.5 - "@babel/helper-replace-supers": 7.22.9(@babel/core@7.22.11) + "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.6) "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 "@babel/helper-split-export-declaration": 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.11): + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.6): resolution: { - integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==, + integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.11): + /@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.23.6): resolution: { - integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==, + integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 + "@babel/core": 7.23.6 + "@babel/helper-compilation-targets": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.4 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-environment-visitor@7.22.5: + /@babel/helper-environment-visitor@7.22.20: resolution: { - integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, + integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, } engines: { node: ">=6.9.0" } dev: true - /@babel/helper-function-name@7.22.5: + /@babel/helper-function-name@7.23.0: resolution: { - integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, + integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/template": 7.22.5 - "@babel/types": 7.22.11 + "@babel/template": 7.22.15 + "@babel/types": 7.23.6 dev: true /@babel/helper-hoist-variables@7.22.5: @@ -458,41 +447,41 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true - /@babel/helper-member-expression-to-functions@7.22.5: + /@babel/helper-member-expression-to-functions@7.23.0: resolution: { - integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==, + integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true - /@babel/helper-module-imports@7.22.5: + /@babel/helper-module-imports@7.22.15: resolution: { - integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, + integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.11): + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==, + integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-module-imports": 7.22.5 + "@babel/core": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-module-imports": 7.22.15 "@babel/helper-simple-access": 7.22.5 "@babel/helper-split-export-declaration": 7.22.6 "@babel/helper-validator-identifier": 7.22.20 @@ -505,7 +494,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true /@babel/helper-plugin-utils@7.22.5: @@ -516,33 +505,33 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.11): + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.6): resolution: { - integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==, + integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-wrap-function": 7.22.10 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-wrap-function": 7.22.20 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.11): + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6): resolution: { - integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==, + integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-member-expression-to-functions": 7.22.5 + "@babel/core": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-member-expression-to-functions": 7.23.0 "@babel/helper-optimise-call-expression": 7.22.5 dev: true @@ -553,7 +542,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true /@babel/helper-skip-transparent-expression-wrappers@7.22.5: @@ -563,7 +552,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true /@babel/helper-split-export-declaration@7.22.6: @@ -573,13 +562,13 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true - /@babel/helper-string-parser@7.22.5: + /@babel/helper-string-parser@7.23.4: resolution: { - integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, + integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==, } engines: { node: ">=6.9.0" } dev: true @@ -592,64 +581,44 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-validator-identifier@7.22.5: + /@babel/helper-validator-option@7.23.5: resolution: { - integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, + integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==, } engines: { node: ">=6.9.0" } dev: true - /@babel/helper-validator-option@7.22.5: + /@babel/helper-wrap-function@7.22.20: resolution: { - integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, - } - engines: { node: ">=6.9.0" } - dev: true - - /@babel/helper-wrap-function@7.22.10: - resolution: - { - integrity: sha512-OnMhjWjuGYtdoO3FmsEFWvBStBAe2QOgwOLsLNDjN+aaiMD8InJk1/O3HSD8lkqTjCgg5YI34Tz15KNNA3p+nQ==, + integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-function-name": 7.22.5 - "@babel/template": 7.22.5 - "@babel/types": 7.22.11 + "@babel/helper-function-name": 7.23.0 + "@babel/template": 7.22.15 + "@babel/types": 7.23.6 dev: true - /@babel/helpers@7.22.11: + /@babel/helpers@7.23.6: resolution: { - integrity: sha512-vyOXC8PBWaGc5h7GMsNx68OH33cypkEDJCHvYVVgVbbxJDROYVtexSk0gK5iCF1xNjRIN2s8ai7hwkWDq5szWg==, + integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/template": 7.22.5 - "@babel/traverse": 7.22.11 - "@babel/types": 7.22.11 + "@babel/template": 7.22.15 + "@babel/traverse": 7.23.6 + "@babel/types": 7.23.6 transitivePeerDependencies: - supports-color dev: true - /@babel/highlight@7.22.10: + /@babel/highlight@7.23.4: resolution: { - integrity: sha512-78aUtVcT7MUscr0K5mIEnkwxPE0MaxkR5RxRwuHaQ+JuU5AmTPhY+do2mdzVTnIJJpyBglql2pehuBIWHug+WQ==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/helper-validator-identifier": 7.22.5 - chalk: 2.4.2 - js-tokens: 4.0.0 - dev: true - - /@babel/highlight@7.22.20: - resolution: - { - integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==, + integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, } engines: { node: ">=6.9.0" } dependencies: @@ -658,46 +627,60 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser@7.22.11: + /@babel/parser@7.23.6: resolution: { - integrity: sha512-R5zb8eJIBPJriQtbH/htEQy4k7E2dHWlD2Y2VT07JCzwYZHBxV5ZYtM0UhXSNMT74LyxuM+b1jdL7pSesXbC/g==, + integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==, } engines: { node: ">=6.0.0" } hasBin: true dependencies: - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.11): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==, + integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.11): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==, + integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.13.0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-transform-optional-chaining": 7.22.12(@babel/core@7.22.11) + "@babel/plugin-transform-optional-chaining": 7.23.4(@babel/core@7.23.6) dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11): + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.6): + resolution: + { + integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-plugin-utils": 7.22.5 + dev: true + + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6): resolution: { integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, @@ -706,10 +689,10 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.11): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6): resolution: { integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, @@ -717,11 +700,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.11): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.6): resolution: { integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, @@ -729,11 +712,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.11): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.6): resolution: { integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, @@ -742,11 +725,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.11): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6): resolution: { integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, @@ -754,11 +737,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.11): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6): resolution: { integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, @@ -766,37 +749,37 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.11): + /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, + integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.11): + /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, + integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.11): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6): resolution: { integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, @@ -804,11 +787,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.11): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.6): resolution: { integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, @@ -816,11 +799,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.11): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6): resolution: { integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, @@ -828,11 +811,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.11): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.6): resolution: { integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, @@ -840,11 +823,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.11): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.6): resolution: { integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, @@ -852,11 +835,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.11): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.6): resolution: { integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, @@ -864,11 +847,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.11): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.6): resolution: { integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, @@ -876,11 +859,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.11): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.6): resolution: { integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, @@ -888,11 +871,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.11): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.6): resolution: { integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, @@ -901,11 +884,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.11): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6): resolution: { integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, @@ -914,11 +897,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.11): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.6): resolution: { integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, @@ -927,369 +910,370 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, + integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-0pAlmeRJn6wU84zzZsEOx1JV1Jf8fqO9ok7wofIJwUnplYo247dcd24P+cMJht7ts9xkzdtB0EPHmOb7F+KzXw==, + integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-environment-visitor": 7.22.5 + "@babel/core": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.9(@babel/core@7.22.11) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.11) + "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.23.6) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, + integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-imports": 7.22.5 + "@babel/core": 7.23.6 + "@babel/helper-module-imports": 7.22.15 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.9(@babel/core@7.22.11) + "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, + integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.10(@babel/core@7.22.11): + /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-1+kVpGAOOI1Albt6Vse7c8pHzcZQdQKW+wJH+g8mCaszOdDVwRXa/slHPqIw+oJAJANTKDMuM2cBdV0Dg618Vg==, + integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, + integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==, + integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.12.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.11) + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.11): + /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.6): resolution: { - integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==, + integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 "@babel/helper-optimise-call-expression": 7.22.5 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.9(@babel/core@7.22.11) + "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.6) "@babel/helper-split-export-declaration": 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, + integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/template": 7.22.5 + "@babel/template": 7.22.15 dev: true - /@babel/plugin-transform-destructuring@7.22.10(@babel/core@7.22.11): + /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-dPJrL0VOyxqLM9sritNbMSGx/teueHF/htMKrPT7DNxccXxRDPYqlgPFFdr8u+F+qUZOkZoXue/6rL5O5GduEw==, + integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, + integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, + integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==, + integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.11) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, + integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.10 + "@babel/core": 7.23.6 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==, + integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.11) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-for-of@7.23.6(@babel/core@7.23.6): resolution: { - integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==, + integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + dev: true + + /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.6): + resolution: + { + integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.23.6 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-function-name": 7.23.0 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, + integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 - "@babel/helper-function-name": 7.22.5 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.6) + dev: true + + /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.6): + resolution: + { + integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + dependencies: + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==, + integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.11) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, + integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==, + integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.11) - dev: true - - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.11): - resolution: - { - integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==, + integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-modules-commonjs@7.22.11(@babel/core@7.22.11): - resolution: - { - integrity: sha512-o2+bg7GDS60cJMgz9jWqRUsWkMzLCxp+jFDeDUT5sjRlAxcJWZ2ylNdI7QQ2+CH5hWu7OnN+Cv3htt7AkSf96g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-simple-access": 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==, + integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-validator-identifier": 7.22.20 dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, + integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-transforms": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.6): resolution: { integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, @@ -1298,411 +1282,411 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, + integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==, + integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.11) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==, + integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.11) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-nX8cPFa6+UmbepISvlf5jhQyaC7ASs/7UxHmMkuJ/k5xSHvDPPaibMo+v3TXwU/Pjqhep/nFNpd3zn4YR59pnw==, + integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.22.9 - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 + "@babel/compat-data": 7.23.5 + "@babel/core": 7.23.6 + "@babel/helper-compilation-targets": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-transform-parameters": 7.22.5(@babel/core@7.22.11) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-transform-parameters": 7.23.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, + integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.9(@babel/core@7.22.11) + "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==, + integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.11) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-optional-chaining@7.22.12(@babel/core@7.22.11): + /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-7XXCVqZtyFWqjDsYDY4T45w4mlx1rf7aOgkc/Ww76xkgBiOlmjPkx36PBLHa1k1rwWvVgYMPsbuVnIamx2ZQJw==, + integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.11) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==, + integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, + integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.11): + /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.6): resolution: { - integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==, + integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.22.11(@babel/core@7.22.11) + "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.11) + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, + integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.11): + /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==, + integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, + integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, + integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, + integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, + integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, + integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, + integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.11): + /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==, + integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, + integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, + integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.11): + /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.6): resolution: { - integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, + integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-create-regexp-features-plugin": 7.22.9(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/preset-env@7.22.10(@babel/core@7.22.11): + /@babel/preset-env@7.23.6(@babel/core@7.23.6): resolution: { - integrity: sha512-riHpLb1drNkpLlocmSyEg4oYJIQFeXAK/d7rI6mbD0XsvoTOOweXDmQPG/ErxsEhWk3rl3Q/3F6RFQlVFS8m0A==, + integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.22.9 - "@babel/core": 7.22.11 - "@babel/helper-compilation-targets": 7.22.10 + "@babel/compat-data": 7.23.5 + "@babel/core": 7.23.6 + "@babel/helper-compilation-targets": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.22.5 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.11) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.11) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.22.11) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.11) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.11) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.11) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.11) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.22.11) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.22.11) - "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-async-generator-functions": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-block-scoping": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-classes": 7.22.6(@babel/core@7.22.11) - "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-destructuring": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-for-of": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-modules-amd": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-modules-commonjs": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-modules-systemjs": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-object-rest-spread": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-optional-chaining": 7.22.12(@babel/core@7.22.11) - "@babel/plugin-transform-parameters": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.22.11) - "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.22.11) - "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.22.11) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.22.11) - "@babel/types": 7.22.11 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.22.11) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.22.11) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.22.11) - core-js-compat: 3.32.1 + "@babel/helper-validator-option": 7.23.5 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.6) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.23.6) + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-import-assertions": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-syntax-import-attributes": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.23.6) + "@babel/plugin-transform-arrow-functions": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-async-generator-functions": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-async-to-generator": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-block-scoped-functions": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-block-scoping": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-class-properties": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-class-static-block": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-classes": 7.23.5(@babel/core@7.23.6) + "@babel/plugin-transform-computed-properties": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-destructuring": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-dotall-regex": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-duplicate-keys": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-dynamic-import": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-exponentiation-operator": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-export-namespace-from": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-for-of": 7.23.6(@babel/core@7.23.6) + "@babel/plugin-transform-function-name": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-json-strings": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-literals": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-logical-assignment-operators": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-member-expression-literals": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-modules-amd": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-modules-commonjs": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-modules-systemjs": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-modules-umd": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-new-target": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-nullish-coalescing-operator": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-numeric-separator": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-object-rest-spread": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-object-super": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-optional-catch-binding": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-optional-chaining": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-parameters": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-private-methods": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-private-property-in-object": 7.23.4(@babel/core@7.23.6) + "@babel/plugin-transform-property-literals": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-regenerator": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-reserved-words": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-shorthand-properties": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-spread": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-sticky-regex": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-template-literals": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-typeof-symbol": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-escapes": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-property-regex": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-regex": 7.23.3(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-sets-regex": 7.23.3(@babel/core@7.23.6) + "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.23.6) + babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.23.6) + babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.23.6) + babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.23.6) + core-js-compat: 3.35.0 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.11): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.6): resolution: { integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, @@ -1710,9 +1694,9 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/types": 7.22.11 + "@babel/types": 7.23.6 esutils: 2.0.3 dev: true @@ -1723,64 +1707,64 @@ packages: } dev: true - /@babel/runtime@7.22.11: + /@babel/runtime@7.23.6: resolution: { - integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==, + integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==, } engines: { node: ">=6.9.0" } dependencies: - regenerator-runtime: 0.14.0 + regenerator-runtime: 0.14.1 - /@babel/template@7.22.5: + /@babel/template@7.22.15: resolution: { - integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, + integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.22.13 - "@babel/parser": 7.22.11 - "@babel/types": 7.22.11 + "@babel/code-frame": 7.23.5 + "@babel/parser": 7.23.6 + "@babel/types": 7.23.6 dev: true - /@babel/traverse@7.22.11: + /@babel/traverse@7.23.6: resolution: { - integrity: sha512-mzAenteTfomcB7mfPtyi+4oe5BZ6MXxWcn4CX+h4IRJ+OOGXBrWU6jDQavkQI9Vuc5P+donFabBfFCcmWka9lQ==, + integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.22.13 - "@babel/generator": 7.22.10 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 + "@babel/code-frame": 7.23.5 + "@babel/generator": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 "@babel/helper-hoist-variables": 7.22.5 "@babel/helper-split-export-declaration": 7.22.6 - "@babel/parser": 7.22.11 - "@babel/types": 7.22.11 + "@babel/parser": 7.23.6 + "@babel/types": 7.23.6 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types@7.22.11: + /@babel/types@7.23.6: resolution: { - integrity: sha512-siazHiGuZRz9aB9NpHy9GOs9xiQPKnMzgdr493iI1M67vRXpnEq8ZOOKzezC5q7zwuQ6sDhdSp4SD9ixKSqKZg==, + integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-string-parser": 7.22.5 + "@babel/helper-string-parser": 7.23.4 "@babel/helper-validator-identifier": 7.22.20 to-fast-properties: 2.0.0 dev: true - /@codemirror/autocomplete@6.9.0(@codemirror/language@6.9.3)(@codemirror/state@6.3.3)(@codemirror/view@6.22.3)(@lezer/common@1.0.4): + /@codemirror/autocomplete@6.11.1(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.0): resolution: { - integrity: sha512-Fbwm0V/Wn3BkEJZRhr0hi5BhCo5a7eBL6LYaliPjOSwCyfOpnjXY59HruSxOUNV+1OYer0Tgx1zRNQttjXyDog==, + integrity: sha512-L5UInv8Ffd6BPw0P3EF7JLYAMeEbclY7+6Q11REt8vhih8RuLreKtPy/xk8wPxs4EQgYqzI7cdgpiYwWlbS/ow==, } peerDependencies: "@codemirror/language": ^6.0.0 @@ -1788,106 +1772,89 @@ packages: "@codemirror/view": ^6.0.0 "@lezer/common": ^1.0.0 dependencies: - "@codemirror/language": 6.9.3 - "@codemirror/state": 6.3.3 - "@codemirror/view": 6.22.3 - "@lezer/common": 1.0.4 + "@codemirror/language": 6.10.0 + "@codemirror/state": 6.4.0 + "@codemirror/view": 6.23.0 + "@lezer/common": 1.2.0 dev: false - /@codemirror/autocomplete@6.9.0(@codemirror/language@6.9.3)(@codemirror/state@6.3.3)(@codemirror/view@6.22.3)(@lezer/common@1.1.1): + /@codemirror/commands@6.3.3: resolution: { - integrity: sha512-Fbwm0V/Wn3BkEJZRhr0hi5BhCo5a7eBL6LYaliPjOSwCyfOpnjXY59HruSxOUNV+1OYer0Tgx1zRNQttjXyDog==, - } - peerDependencies: - "@codemirror/language": ^6.0.0 - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - "@lezer/common": ^1.0.0 - dependencies: - "@codemirror/language": 6.9.3 - "@codemirror/state": 6.3.3 - "@codemirror/view": 6.22.3 - "@lezer/common": 1.1.1 - dev: false - - /@codemirror/commands@6.3.2: - resolution: - { - integrity: sha512-tjoi4MCWDNxgIpoLZ7+tezdS9OEB6pkiDKhfKx9ReJ/XBcs2G2RXIu+/FxXBlWsPTsz6C9q/r4gjzrsxpcnqCQ==, + integrity: sha512-dO4hcF0fGT9tu1Pj1D2PvGvxjeGkbC6RGcZw6Qs74TH+Ed1gw98jmUgd2axWvIZEqTeTuFrg1lEB1KV6cK9h1A==, } dependencies: - "@codemirror/language": 6.9.3 - "@codemirror/state": 6.3.3 - "@codemirror/view": 6.22.3 - "@lezer/common": 1.1.1 + "@codemirror/language": 6.10.0 + "@codemirror/state": 6.4.0 + "@codemirror/view": 6.23.0 + "@lezer/common": 1.2.0 dev: false - /@codemirror/lang-xml@6.0.2(@codemirror/view@6.22.3): + /@codemirror/lang-xml@6.0.2(@codemirror/view@6.23.0): resolution: { integrity: sha512-JQYZjHL2LAfpiZI2/qZ/qzDuSqmGKMwyApYmEUUCTxLM4MWS7sATUEfIguZQr9Zjx/7gcdnewb039smF6nC2zw==, } dependencies: - "@codemirror/autocomplete": 6.9.0(@codemirror/language@6.9.3)(@codemirror/state@6.3.3)(@codemirror/view@6.22.3)(@lezer/common@1.0.4) - "@codemirror/language": 6.9.3 - "@codemirror/state": 6.3.3 - "@lezer/common": 1.0.4 - "@lezer/xml": 1.0.2 + "@codemirror/autocomplete": 6.11.1(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.0) + "@codemirror/language": 6.10.0 + "@codemirror/state": 6.4.0 + "@lezer/common": 1.2.0 + "@lezer/xml": 1.0.4 transitivePeerDependencies: - "@codemirror/view" dev: false - /@codemirror/language@6.9.3: + /@codemirror/language@6.10.0: resolution: { - integrity: sha512-qq48pYzoi6ldYWV/52+Z9Ou6QouVI+8YwvxFbUypI33NbjG2UeRHKENRyhwljTTiOqjQ33FjyZj6EREQ9apAOQ==, + integrity: sha512-2vaNn9aPGCRFKWcHPFksctzJ8yS5p7YoaT+jHpc0UGKzNuAIx4qy6R5wiqbP+heEEdyaABA582mNqSHzSoYdmg==, } dependencies: - "@codemirror/state": 6.3.3 - "@codemirror/view": 6.22.3 - "@lezer/common": 1.1.1 - "@lezer/highlight": 1.1.6 - "@lezer/lr": 1.3.10 + "@codemirror/state": 6.4.0 + "@codemirror/view": 6.23.0 + "@lezer/common": 1.2.0 + "@lezer/highlight": 1.2.0 + "@lezer/lr": 1.3.14 style-mod: 4.1.0 dev: false - /@codemirror/lint@6.4.0: + /@codemirror/lint@6.4.2: resolution: { - integrity: sha512-6VZ44Ysh/Zn07xrGkdtNfmHCbGSHZzFBdzWi0pbd7chAQ/iUcpLGX99NYRZTa7Ugqg4kEHCqiHhcZnH0gLIgSg==, + integrity: sha512-wzRkluWb1ptPKdzlsrbwwjYCPLgzU6N88YBAmlZi8WFyuiEduSd05MnJYNogzyc8rPK7pj6m95ptUApc8sHKVA==, } dependencies: - "@codemirror/state": 6.3.3 - "@codemirror/view": 6.22.3 + "@codemirror/state": 6.4.0 + "@codemirror/view": 6.23.0 crelt: 1.0.6 dev: false - /@codemirror/search@6.5.1: + /@codemirror/search@6.5.5: resolution: { - integrity: sha512-4jupk4JwkeVbrN2pStY74q6OJEYqwosB4koA66nyLeVedadtX9MHI38j2vbYmnfDGurDApP3OZO46MrWalcjiQ==, + integrity: sha512-PIEN3Ke1buPod2EHbJsoQwlbpkz30qGZKcnmH1eihq9+bPQx8gelauUwLYaY4vBOuBAuEhmpDLii4rj/uO0yMA==, } dependencies: - "@codemirror/state": 6.3.3 - "@codemirror/view": 6.22.3 + "@codemirror/state": 6.4.0 + "@codemirror/view": 6.23.0 crelt: 1.0.6 dev: false - /@codemirror/state@6.3.3: + /@codemirror/state@6.4.0: resolution: { - integrity: sha512-0wufKcTw2dEwEaADajjHf6hBy1sh3M6V0e+q4JKIhLuiMSe5td5HOWpUdvKth1fT1M9VYOboajoBHpkCd7PG7A==, + integrity: sha512-hm8XshYj5Fo30Bb922QX9hXB/bxOAVH+qaqHBzw5TKa72vOeslyGwd4X8M0c1dJ9JqxlaMceOQ8RsL9tC7gU0A==, } dev: false - /@codemirror/view@6.22.3: + /@codemirror/view@6.23.0: resolution: { - integrity: sha512-rqnq+Zospwoi3x1vZ8BGV1MlRsaGljX+6qiGYmIpJ++M+LCC+wjfDaPklhwpWSgv7pr/qx29KiAKQBH5+DOn4w==, + integrity: sha512-/51px9N4uW8NpuWkyUX+iam5+PM6io2fm+QmRnzwqBy5v/pwGg9T0kILFtYeum8hjuvENtgsGNKluOfqIICmeQ==, } dependencies: - "@codemirror/state": 6.3.3 + "@codemirror/state": 6.4.0 style-mod: 4.1.0 w3c-keyname: 2.2.8 dev: false @@ -2017,10 +1984,10 @@ packages: "@commitlint/execute-rule": 18.4.3 "@commitlint/resolve-extends": 18.4.3 "@commitlint/types": 18.4.3 - "@types/node": 18.18.9 + "@types/node": 18.19.3 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.3.3) - cosmiconfig-typescript-loader: 5.0.0(@types/node@18.18.9)(cosmiconfig@8.3.6)(typescript@5.3.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@5.3.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -2058,7 +2025,7 @@ packages: dependencies: "@commitlint/top-level": 18.4.3 "@commitlint/types": 18.4.3 - fs-extra: 11.1.1 + fs-extra: 11.2.0 git-raw-commits: 2.0.11 minimist: 1.2.8 dev: true @@ -2121,66 +2088,66 @@ packages: chalk: 4.1.2 dev: true - /@csstools/cascade-layer-name-parser@1.0.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2): + /@csstools/cascade-layer-name-parser@1.0.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2): resolution: { - integrity: sha512-v/5ODKNBMfBl0us/WQjlfsvSlYxfZLhNMVIsuCPib2ulTwGKYbKJbwqw671+qH9Y4wvWVnu7LBChvml/wBKjFg==, + integrity: sha512-HkxRNs6ZIV0VjLFw6k5G8K35vd9r+O8B1Vr+QVD8M5Y44eQxyHtc42BdF74FQatXACPnitOR1+sRx2oWdnKTQw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: - "@csstools/css-parser-algorithms": ^2.3.2 - "@csstools/css-tokenizer": ^2.2.1 + "@csstools/css-parser-algorithms": ^2.4.0 + "@csstools/css-tokenizer": ^2.2.2 dependencies: - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 dev: true - /@csstools/color-helpers@3.0.2: + /@csstools/color-helpers@4.0.0: resolution: { - integrity: sha512-NMVs/l7Y9eIKL5XjbCHEgGcG8LOUT2qVcRjX6EzkCdlvftHVKr2tHIPzHavfrULRZ5Q2gxrJ9f44dAlj6fX97Q==, + integrity: sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w==, } engines: { node: ^14 || ^16 || >=18 } dev: true - /@csstools/css-calc@1.1.4(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2): + /@csstools/css-calc@1.1.5(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2): resolution: { - integrity: sha512-ZV1TSmToiNcQL1P3hfzlzZzA02mmVkVmXGaUDUqpYUG84PmLhVSZpKX+KfxAuOcK7de04UXSQPBrAvaya6iiGg==, + integrity: sha512-UhI5oSRAUtTHY3MyGahqn0ZzQOHVoPpfvUcOmYipAZ1rILAvCBoyiLSsa/clv1Xxct0SMKIq93KO5Bfl1cb6tQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: - "@csstools/css-parser-algorithms": ^2.3.2 - "@csstools/css-tokenizer": ^2.2.1 + "@csstools/css-parser-algorithms": ^2.4.0 + "@csstools/css-tokenizer": ^2.2.2 dependencies: - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 dev: true - /@csstools/css-color-parser@1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2): + /@csstools/css-color-parser@1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2): resolution: { - integrity: sha512-SlGd8E6ron24JYQPQAIzu5tvmWi1H4sDKTdA7UDnwF45oJv7AVESbOlOO1YjfBhrQFuvLWUgKiOY9DwGoAxwTA==, + integrity: sha512-PUhSg1MgU2sjYhA6moOmxYesqVqYTJwcVw12boTNbDX7Af+VK02MkgvmBBY2Z2qU6UN5HOQ+wrF0qQJGsTFY7w==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: - "@csstools/css-parser-algorithms": ^2.3.2 - "@csstools/css-tokenizer": ^2.2.1 + "@csstools/css-parser-algorithms": ^2.4.0 + "@csstools/css-tokenizer": ^2.2.2 dependencies: - "@csstools/color-helpers": 3.0.2 - "@csstools/css-calc": 1.1.4(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/color-helpers": 4.0.0 + "@csstools/css-calc": 1.1.5(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 dev: true - /@csstools/css-parser-algorithms@2.3.2(@csstools/css-tokenizer@2.2.2): + /@csstools/css-parser-algorithms@2.4.0(@csstools/css-tokenizer@2.2.2): resolution: { - integrity: sha512-sLYGdAdEY2x7TSw9FtmdaTrh2wFtRJO5VMbBrA8tEqEod7GEggFmxTSK9XqExib3yMuYNcvcTdCZIP6ukdjAIA==, + integrity: sha512-/PPLr2g5PAUCKAPEbfyk6/baZA+WJHQtUhPkoCQMpyRE8I0lXrG1QFRN8e5s3ZYxM8d/g5BZc6lH3s8Op7/VEg==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: - "@csstools/css-tokenizer": ^2.2.1 + "@csstools/css-tokenizer": ^2.2.2 dependencies: "@csstools/css-tokenizer": 2.2.2 dev: true @@ -2193,85 +2160,85 @@ packages: engines: { node: ^14 || ^16 || >=18 } dev: true - /@csstools/media-query-list-parser@2.1.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2): + /@csstools/media-query-list-parser@2.1.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2): resolution: { - integrity: sha512-IxVBdYzR8pYe89JiyXQuYk4aVVoCPhMJkz6ElRwlVysjwURTsTk/bmY/z4FfeRE+CRBMlykPwXEVUg8lThv7AQ==, + integrity: sha512-R6AKl9vaU0It7D7TR2lQn0pre5aQfdeqHRePlaRCY8rHL3l9eVlNRpsEVDKFi/zAjzv68CxH2M5kqbhPFPKjvw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: - "@csstools/css-parser-algorithms": ^2.3.2 - "@csstools/css-tokenizer": ^2.2.1 + "@csstools/css-parser-algorithms": ^2.4.0 + "@csstools/css-tokenizer": ^2.2.2 dependencies: - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 dev: true - /@csstools/postcss-cascade-layers@4.0.1(postcss@8.4.32): + /@csstools/postcss-cascade-layers@4.0.2(postcss@8.4.32): resolution: { - integrity: sha512-UYFuFL9GgVnftg9v7tBvVEBRLaBeAD66euD+yYy5fYCUld9ZIWTJNCE30hm6STMEdt6FL5xzeVw1lAZ1tpvUEg==, + integrity: sha512-PqM+jvg5T2tB4FHX+akrMGNWAygLupD4FNUjcv4PSvtVuWZ6ISxuo37m4jFGU7Jg3rCfloGzKd0+xfr5Ec3vZQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/selector-specificity": 3.0.0(postcss-selector-parser@6.0.13) + "@csstools/selector-specificity": 3.0.1(postcss-selector-parser@6.0.14) postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true - /@csstools/postcss-color-function@3.0.7(postcss@8.4.32): + /@csstools/postcss-color-function@3.0.8(postcss@8.4.32): resolution: { - integrity: sha512-/PIB20G1TPCXmQlaJLWIYzTZRZpj6csT4ijgnshIj/kcmniIRroAfDa0xSWnfuO1eNo0NptIaPU7jzUukWn55Q==, + integrity: sha512-jvbF7eCRbIcxWqby0kk2Mt85QtGzRRpFFYdlJCJ80Tuiv43PY+auS/nBl8pDQQ4Ndm4vsm4IC/wCZDcJUmpJmg==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 dev: true - /@csstools/postcss-color-mix-function@2.0.7(postcss@8.4.32): + /@csstools/postcss-color-mix-function@2.0.8(postcss@8.4.32): resolution: { - integrity: sha512-57/g8aGo5eKFjEeJMiRKh8Qq43K2rCyk5ZZTvJ34TNl4zUtYU5DvLkIkOnhCtL8/a4z9oMA42aOnFPddRrScUQ==, + integrity: sha512-sGhk+TdZ2TeXspc6LSYSYC8WgzLlxoknUaObKgB0mk+dNjRQgSSIeCU+qrCwvHmwM+uTNKtiS8mntDzyQLHTTA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 dev: true - /@csstools/postcss-exponential-functions@1.0.1(postcss@8.4.32): + /@csstools/postcss-exponential-functions@1.0.2(postcss@8.4.32): resolution: { - integrity: sha512-ZLK2iSK4DUxeypGce2PnQSdYugUqDTwxnhNiq1o6OyKMNYgYs4eKbvEhFG8JKr1sJWbeqBi5jRr0017l2EWVvg==, + integrity: sha512-VRIYrwNCkZRqzsGB4jGT+XcNXsoiwyqy0Vf7C3I/5OPcf7WcWK3G1sBYFqqgWLGtpwc7m1m8TcorGY1xdh5abg==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-calc": 1.1.4(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-calc": 1.1.5(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 postcss: 8.4.32 dev: true - /@csstools/postcss-font-format-keywords@3.0.0(postcss@8.4.32): + /@csstools/postcss-font-format-keywords@3.0.1(postcss@8.4.32): resolution: { - integrity: sha512-ntkGj+1uDa/u6lpjPxnkPcjJn7ChO/Kcy08YxctOZI7vwtrdYvFhmE476dq8bj1yna306+jQ9gzXIG/SWfOaRg==, + integrity: sha512-D1lcG2sfotTq6yBEOMV3myFxJLT10F3DLYZJMbiny5YToqzHWodZen8WId3UTimm0mEHitXqAUNL5jdd6RzVdA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2281,70 +2248,70 @@ packages: postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-gamut-mapping@1.0.0(postcss@8.4.32): + /@csstools/postcss-gamut-mapping@1.0.1(postcss@8.4.32): resolution: { - integrity: sha512-6UQyK8l9YaG5Ao5rBDcCnKHrLsHiQ1E0zeFQuqDJqEtinVzAPb/MwSw3TenZXL1Rnd7th3tb+4CBFHBXdW5tbQ==, + integrity: sha512-GDVzfNbnc7x3GusFklvt0mYXIWVzxEtEtTFEW664NgZh/5V7Z89hZKBMl9piOAHXuxijfHtE+kul/ShfeLUvcA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 postcss: 8.4.32 dev: true - /@csstools/postcss-gradients-interpolation-method@4.0.7(postcss@8.4.32): + /@csstools/postcss-gradients-interpolation-method@4.0.8(postcss@8.4.32): resolution: { - integrity: sha512-GT1CzE/Tyr/ei4j5BwKESkHAgg+Gzys/0mAY7W+UiR+XrcYk5hDbOrE/YJIx1rflfO/7La1bDoZtA0YnLl4qNA==, + integrity: sha512-bmvCNzuUvWPPdgASh0T14ffTay/FdzXsXfp0wXT1pYoUPmkH9M6yyxwPEkHq5djjzSb2jiLl4Ta3XM1uOREQ2w==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 dev: true - /@csstools/postcss-hwb-function@3.0.6(postcss@8.4.32): + /@csstools/postcss-hwb-function@3.0.7(postcss@8.4.32): resolution: { - integrity: sha512-uQgWt2Ho2yy2S6qthWY7mD5v57NKxi6dD1NB8nAybU5bJSsm+hLXRGm3/zbOH4xNrqO3Cl60DFSNlSrUME3Xjg==, + integrity: sha512-iXs1gxKtev8YNP5bOF26TAsnMfcxnCRLpKItQ067RphYECKEK/xWm4Z0r4ChmV1U1eq+lbdH5ZIb2cju4o5akA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 postcss: 8.4.32 dev: true - /@csstools/postcss-ic-unit@3.0.2(postcss@8.4.32): + /@csstools/postcss-ic-unit@3.0.3(postcss@8.4.32): resolution: { - integrity: sha512-n28Er7W9qc48zNjJnvTKuVHY26/+6YlA9WzJRksIHiAWOMxSH5IksXkw7FpkIOd+jLi59BMrX/BWrZMgjkLBHg==, + integrity: sha512-MpcmIL0/uMm/cFWh5V/9nbKKJ7jRr2qTYW5Q6zoE6HZ6uzOBJr2KRERv5/x8xzEBQ1MthDT7iP1EBp9luSQy7g==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-initial@1.0.0(postcss@8.4.32): + /@csstools/postcss-initial@1.0.1(postcss@8.4.32): resolution: { - integrity: sha512-1l7iHHjIl5qmVeGItugr4ZOlCREDP71mNKqoEyxlosIoiu3Os1nPWMHpuCvDLCLiWI/ONTOg3nzJh7gwHOrqUA==, + integrity: sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2353,24 +2320,24 @@ packages: postcss: 8.4.32 dev: true - /@csstools/postcss-is-pseudo-class@4.0.3(postcss@8.4.32): + /@csstools/postcss-is-pseudo-class@4.0.4(postcss@8.4.32): resolution: { - integrity: sha512-/dt5M9Ty/x3Yiq0Nm/5PJJzwkVFchJgdjKVnryBPtoMCb9ohb/nDIJOwr/Wr3hK3FDs1EA1GE6PyRYsUmQPS8Q==, + integrity: sha512-vTVO/uZixpTVAOQt3qZRUFJ/K1L03OfNkeJ8sFNDVNdVy/zW0h1L5WT7HIPMDUkvSrxQkFaCCybTZkUP7UESlQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/selector-specificity": 3.0.0(postcss-selector-parser@6.0.13) + "@csstools/selector-specificity": 3.0.1(postcss-selector-parser@6.0.14) postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true - /@csstools/postcss-logical-float-and-clear@2.0.0(postcss@8.4.32): + /@csstools/postcss-logical-float-and-clear@2.0.1(postcss@8.4.32): resolution: { - integrity: sha512-Wki4vxsF6icRvRz8eF9bPpAvwaAt0RHwhVOyzfoFg52XiIMjb6jcbHkGxwpJXP4DVrnFEwpwmrz5aTRqOW82kg==, + integrity: sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2379,10 +2346,10 @@ packages: postcss: 8.4.32 dev: true - /@csstools/postcss-logical-overflow@1.0.0(postcss@8.4.32): + /@csstools/postcss-logical-overflow@1.0.1(postcss@8.4.32): resolution: { - integrity: sha512-cIrZ8f7bGGvr+W53nEuMspcwaeaI2YTmz6LZ4yiAO5z14/PQgOOv+Pn+qjvPOPoadeY2BmpaoTzZKvdAQuM17w==, + integrity: sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2391,10 +2358,10 @@ packages: postcss: 8.4.32 dev: true - /@csstools/postcss-logical-overscroll-behavior@1.0.0(postcss@8.4.32): + /@csstools/postcss-logical-overscroll-behavior@1.0.1(postcss@8.4.32): resolution: { - integrity: sha512-e89S2LWjnxf0SB2wNUAbqDyFb/Fow/tlOe1XqOLbNx4rf3LrQokM9qldVx7sarnddml3ORE5LDUmlKpPOOeJTA==, + integrity: sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2403,10 +2370,10 @@ packages: postcss: 8.4.32 dev: true - /@csstools/postcss-logical-resize@2.0.0(postcss@8.4.32): + /@csstools/postcss-logical-resize@2.0.1(postcss@8.4.32): resolution: { - integrity: sha512-lCQ1aX8c5+WI4t5EoYf3alTzJNNocMqTb+u1J9CINdDhFh1fjovqK+0aHalUHsNstZmzFPNzIkU4Mb3eM9U8SA==, + integrity: sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2416,10 +2383,10 @@ packages: postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-logical-viewport-units@2.0.3(postcss@8.4.32): + /@csstools/postcss-logical-viewport-units@2.0.4(postcss@8.4.32): resolution: { - integrity: sha512-xeVxqND5rlQyqLGdH7rX34sIm/JbbQKxpKQP8oD1YQqUHHCLQR9NUS57WqJKajxKN6AcNAMWJhb5LUH5RfPcyA==, + integrity: sha512-jetp/ArGAniWbjWBh5UQ07ztawfSbqCFd0QelX4R4pVIxrXahUEhz5VZHebMPVCg02J8GsQn0br6fdRpY6t7lw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2429,41 +2396,41 @@ packages: postcss: 8.4.32 dev: true - /@csstools/postcss-media-minmax@1.1.0(postcss@8.4.32): + /@csstools/postcss-media-minmax@1.1.1(postcss@8.4.32): resolution: { - integrity: sha512-t5Li/DPC5QmW/6VFLfUvsw/4dNYYseWR0tOXDeJg/9EKUodBgNawz5tuk5vYKtNvoj+Q08odMuXcpS5YJj0AFA==, + integrity: sha512-mBY46/Hr+A8cDjoX0OoPRBOVrkANym9540dSB9rN3dllPZdM1E112i/tVxWsrR1s1yE9gfF0pk+7lf9l+qSeHA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-calc": 1.1.4(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-calc": 1.1.5(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/media-query-list-parser": 2.1.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) + "@csstools/media-query-list-parser": 2.1.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) postcss: 8.4.32 dev: true - /@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.3(postcss@8.4.32): + /@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.4(postcss@8.4.32): resolution: { - integrity: sha512-IPL8AvnwMYW+cWtp+j8cW3MFN0RyXNT4hLOvs6Rf2N+NcbvXhSyKxZuE3W9Cv4KjaNoNoGx1d0UhT6tktq6tUw==, + integrity: sha512-IaIZZhH0Qy9UDn7u+N3cuwwPG0Po3ZKOdDh+ClR7xvisSqniG+PuVrOEWYJrFKOt2//UHLhd7KHDqr2u9LKS9Q==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/media-query-list-parser": 2.1.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) + "@csstools/media-query-list-parser": 2.1.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) postcss: 8.4.32 dev: true - /@csstools/postcss-nested-calc@3.0.0(postcss@8.4.32): + /@csstools/postcss-nested-calc@3.0.1(postcss@8.4.32): resolution: { - integrity: sha512-HsB66aDWAouOwD/GcfDTS0a7wCuVWaTpXcjl5VKP0XvFxDiU+r0T8FG7xgb6ovZNZ+qzvGIwRM+CLHhDgXrYgQ==, + integrity: sha512-bwwababZpWRm0ByHaWBxTsDGTMhZKmtUNl3Wt0Eom8AY7ORgXx5qF9SSk1vEFrCi+HOfJT6M6W5KPgzXuQNRwQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2473,10 +2440,10 @@ packages: postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-normalize-display-values@3.0.1(postcss@8.4.32): + /@csstools/postcss-normalize-display-values@3.0.2(postcss@8.4.32): resolution: { - integrity: sha512-nUvRxI+ALJwkxZdPU4EDyuM380vP91sAGvI3jAOHs/sr3jfcCOzLkY6xKI1Mr526kZ3RivmMoYM/xq+XFyE/bw==, + integrity: sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2486,26 +2453,26 @@ packages: postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-oklab-function@3.0.7(postcss@8.4.32): + /@csstools/postcss-oklab-function@3.0.8(postcss@8.4.32): resolution: { - integrity: sha512-vBFTQD3CARB3u/XIGO44wWbcO7xG/4GsYqJlcPuUGRSK8mtxes6n4vvNFlIByyAZy2k4d4RY63nyvTbMpeNTaQ==, + integrity: sha512-L4xrwbgg+k08v+a88LDxJeIM6+kqaBJlYb/QgmEMfQpUbrfXTp87DuRc7utcRdDvY+qWK5vqz3h1xUtceB5LJQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 dev: true - /@csstools/postcss-progressive-custom-properties@3.0.2(postcss@8.4.32): + /@csstools/postcss-progressive-custom-properties@3.0.3(postcss@8.4.32): resolution: { - integrity: sha512-YEvTozk1SxnV/PGL5DllBVDuLQ+jiQhyCSQiZJ6CwBMU5JQ9hFde3i1qqzZHuclZfptjrU0JjlX4ePsOhxNzHw==, + integrity: sha512-WipTVh6JTMQfeIrzDV4wEPsV9NTzMK2jwXxyH6CGBktuWdivHnkioP/smp1x/0QDPQyx7NTS14RB+GV3zZZYEw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2515,83 +2482,83 @@ packages: postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-relative-color-syntax@2.0.7(postcss@8.4.32): + /@csstools/postcss-relative-color-syntax@2.0.8(postcss@8.4.32): resolution: { - integrity: sha512-2AiFbJSVF4EyymLxme4JzSrbXykHolx8DdZECHjYKMhoulhKLltx5ccYgtrK3BmXGd3v3nJrWFCc8JM8bjuiOg==, + integrity: sha512-wu/Oh7QKINpRXnmLMUbObVNlqwr843PSF4a3x3fMC0I+vUeoGqMfZuSPFtT+NnYYxfzUjEZ091GURPxee22VLQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 dev: true - /@csstools/postcss-scope-pseudo-class@3.0.0(postcss@8.4.32): + /@csstools/postcss-scope-pseudo-class@3.0.1(postcss@8.4.32): resolution: { - integrity: sha512-GFNVsD97OuEcfHmcT0/DAZWAvTM/FFBDQndIOLawNc1Wq8YqpZwBdHa063Lq+Irk7azygTT+Iinyg3Lt76p7rg==, + integrity: sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true - /@csstools/postcss-stepped-value-functions@3.0.2(postcss@8.4.32): + /@csstools/postcss-stepped-value-functions@3.0.3(postcss@8.4.32): resolution: { - integrity: sha512-I3wX44MZVv+tDuWfrd3BTvRB/YRIM2F5v1MBtTI89sxpFn47mNpTwpPYUOGPVCgKlRDfZSlxIUYhUQmqRQZZFQ==, + integrity: sha512-hzo9Wr3u7JJiM65/EyHgE/gJpBzhDwBSGOobFs2YQ0ZNTywUliYQoYJud1KKlByMRuhqvDLh9V95eIkLf/fZTQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-calc": 1.1.4(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-calc": 1.1.5(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 postcss: 8.4.32 dev: true - /@csstools/postcss-text-decoration-shorthand@3.0.3(postcss@8.4.32): + /@csstools/postcss-text-decoration-shorthand@3.0.4(postcss@8.4.32): resolution: { - integrity: sha512-d5J9m49HhqXRcw1S6vTZuviHi/iknUKGjBpChiNK1ARg9sSa3b8m5lsWz5Izs8ISORZdv2bZRwbw5Z2R6gQ9kQ==, + integrity: sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/color-helpers": 3.0.2 + "@csstools/color-helpers": 4.0.0 postcss: 8.4.32 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-trigonometric-functions@3.0.2(postcss@8.4.32): + /@csstools/postcss-trigonometric-functions@3.0.3(postcss@8.4.32): resolution: { - integrity: sha512-AwzNhF4QOKaLOKvMljwwFkeYXwufhRO15G+kKohHkyoNOL75xWkN+W2Y9ik9tSeAyDv+cYNlYaF+o/a79WjVjg==, + integrity: sha512-T/npTbDuMZ3vktEMuA05p1oeVd12Sy47qZP1vFhzNMUOdXGCK9vlm0tUSIlV5DdlbTJqKqq9FhGitZH9VTKrfQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-calc": 1.1.4(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-calc": 1.1.5(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 postcss: 8.4.32 dev: true - /@csstools/postcss-unset-value@3.0.0(postcss@8.4.32): + /@csstools/postcss-unset-value@3.0.1(postcss@8.4.32): resolution: { - integrity: sha512-P0JD1WHh3avVyKKRKjd0dZIjCEeaBer8t1BbwGMUDtSZaLhXlLNBqZ8KkqHzYWXOJgHleXAny2/sx8LYl6qhEA==, + integrity: sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -2600,19 +2567,7 @@ packages: postcss: 8.4.32 dev: true - /@csstools/selector-specificity@3.0.0(postcss-selector-parser@6.0.13): - resolution: - { - integrity: sha512-hBI9tfBtuPIi885ZsZ32IMEU/5nlZH/KOVYJCOh7gyMxaVLGmLedYqFN6Ui1LXkI8JlC8IsuC0rF0btcRZKd5g==, - } - engines: { node: ^14 || ^16 || >=18 } - peerDependencies: - postcss-selector-parser: ^6.0.13 - dependencies: - postcss-selector-parser: 6.0.13 - dev: true - - /@csstools/selector-specificity@3.0.1(postcss-selector-parser@6.0.13): + /@csstools/selector-specificity@3.0.1(postcss-selector-parser@6.0.14): resolution: { integrity: sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==, @@ -2621,13 +2576,25 @@ packages: peerDependencies: postcss-selector-parser: ^6.0.13 dependencies: - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true - /@esbuild/android-arm64@0.19.5: + /@esbuild/aix-ppc64@0.19.10: resolution: { - integrity: sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==, + integrity: sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q==, + } + engines: { node: ">=12" } + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.19.10: + resolution: + { + integrity: sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q==, } engines: { node: ">=12" } cpu: [arm64] @@ -2636,10 +2603,10 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.19.5: + /@esbuild/android-arm@0.19.10: resolution: { - integrity: sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==, + integrity: sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w==, } engines: { node: ">=12" } cpu: [arm] @@ -2648,10 +2615,10 @@ packages: dev: true optional: true - /@esbuild/android-x64@0.19.5: + /@esbuild/android-x64@0.19.10: resolution: { - integrity: sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==, + integrity: sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw==, } engines: { node: ">=12" } cpu: [x64] @@ -2660,10 +2627,10 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64@0.19.5: + /@esbuild/darwin-arm64@0.19.10: resolution: { - integrity: sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==, + integrity: sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA==, } engines: { node: ">=12" } cpu: [arm64] @@ -2672,10 +2639,10 @@ packages: dev: true optional: true - /@esbuild/darwin-x64@0.19.5: + /@esbuild/darwin-x64@0.19.10: resolution: { - integrity: sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==, + integrity: sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA==, } engines: { node: ">=12" } cpu: [x64] @@ -2684,10 +2651,10 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64@0.19.5: + /@esbuild/freebsd-arm64@0.19.10: resolution: { - integrity: sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==, + integrity: sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg==, } engines: { node: ">=12" } cpu: [arm64] @@ -2696,10 +2663,10 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64@0.19.5: + /@esbuild/freebsd-x64@0.19.10: resolution: { - integrity: sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==, + integrity: sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag==, } engines: { node: ">=12" } cpu: [x64] @@ -2708,10 +2675,10 @@ packages: dev: true optional: true - /@esbuild/linux-arm64@0.19.5: + /@esbuild/linux-arm64@0.19.10: resolution: { - integrity: sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==, + integrity: sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ==, } engines: { node: ">=12" } cpu: [arm64] @@ -2720,10 +2687,10 @@ packages: dev: true optional: true - /@esbuild/linux-arm@0.19.5: + /@esbuild/linux-arm@0.19.10: resolution: { - integrity: sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==, + integrity: sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg==, } engines: { node: ">=12" } cpu: [arm] @@ -2732,10 +2699,10 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.19.5: + /@esbuild/linux-ia32@0.19.10: resolution: { - integrity: sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==, + integrity: sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg==, } engines: { node: ">=12" } cpu: [ia32] @@ -2744,10 +2711,10 @@ packages: dev: true optional: true - /@esbuild/linux-loong64@0.19.5: + /@esbuild/linux-loong64@0.19.10: resolution: { - integrity: sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==, + integrity: sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA==, } engines: { node: ">=12" } cpu: [loong64] @@ -2756,10 +2723,10 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el@0.19.5: + /@esbuild/linux-mips64el@0.19.10: resolution: { - integrity: sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==, + integrity: sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A==, } engines: { node: ">=12" } cpu: [mips64el] @@ -2768,10 +2735,10 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64@0.19.5: + /@esbuild/linux-ppc64@0.19.10: resolution: { - integrity: sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==, + integrity: sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ==, } engines: { node: ">=12" } cpu: [ppc64] @@ -2780,10 +2747,10 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64@0.19.5: + /@esbuild/linux-riscv64@0.19.10: resolution: { - integrity: sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==, + integrity: sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA==, } engines: { node: ">=12" } cpu: [riscv64] @@ -2792,10 +2759,10 @@ packages: dev: true optional: true - /@esbuild/linux-s390x@0.19.5: + /@esbuild/linux-s390x@0.19.10: resolution: { - integrity: sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==, + integrity: sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA==, } engines: { node: ">=12" } cpu: [s390x] @@ -2804,10 +2771,10 @@ packages: dev: true optional: true - /@esbuild/linux-x64@0.19.5: + /@esbuild/linux-x64@0.19.10: resolution: { - integrity: sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==, + integrity: sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA==, } engines: { node: ">=12" } cpu: [x64] @@ -2816,10 +2783,10 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64@0.19.5: + /@esbuild/netbsd-x64@0.19.10: resolution: { - integrity: sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==, + integrity: sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q==, } engines: { node: ">=12" } cpu: [x64] @@ -2828,10 +2795,10 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64@0.19.5: + /@esbuild/openbsd-x64@0.19.10: resolution: { - integrity: sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==, + integrity: sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg==, } engines: { node: ">=12" } cpu: [x64] @@ -2840,10 +2807,10 @@ packages: dev: true optional: true - /@esbuild/sunos-x64@0.19.5: + /@esbuild/sunos-x64@0.19.10: resolution: { - integrity: sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==, + integrity: sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA==, } engines: { node: ">=12" } cpu: [x64] @@ -2852,10 +2819,10 @@ packages: dev: true optional: true - /@esbuild/win32-arm64@0.19.5: + /@esbuild/win32-arm64@0.19.10: resolution: { - integrity: sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==, + integrity: sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw==, } engines: { node: ">=12" } cpu: [arm64] @@ -2864,10 +2831,10 @@ packages: dev: true optional: true - /@esbuild/win32-ia32@0.19.5: + /@esbuild/win32-ia32@0.19.10: resolution: { - integrity: sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==, + integrity: sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ==, } engines: { node: ">=12" } cpu: [ia32] @@ -2876,10 +2843,10 @@ packages: dev: true optional: true - /@esbuild/win32-x64@0.19.5: + /@esbuild/win32-x64@0.19.10: resolution: { - integrity: sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==, + integrity: sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA==, } engines: { node: ">=12" } cpu: [x64] @@ -2901,10 +2868,10 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/regexpp@4.8.0: + /@eslint-community/regexpp@4.10.0: resolution: { - integrity: sha512-JylOEEzDiOryeUnFbQz+oViCXS0KsvR1mvHkoMiu5+UiBvy+RYX7tzlIIIEstF/gVa2tj9AQXk3dgnxv6KxhFg==, + integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==, } engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } dev: true @@ -2919,8 +2886,8 @@ packages: ajv: 6.12.6 debug: 4.3.4 espree: 9.6.1 - globals: 13.21.0 - ignore: 5.2.4 + globals: 13.24.0 + ignore: 5.3.0 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -2937,10 +2904,10 @@ packages: engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /@floating-ui/core@1.5.0: + /@floating-ui/core@1.5.2: resolution: { - integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==, + integrity: sha512-Ii3MrfY/GAIN3OhXNzpCKaLxHQfJF9qvwq/kEJYdqDxeIHa01K8sldugal6TmeeXl+WMvhv9cnVzUTaFFJF09A==, } dependencies: "@floating-ui/utils": 0.1.6 @@ -2952,7 +2919,7 @@ packages: integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==, } dependencies: - "@floating-ui/core": 1.5.0 + "@floating-ui/core": 1.5.2 "@floating-ui/utils": 0.1.6 dev: false @@ -2974,7 +2941,7 @@ packages: brotli: 1.3.3 browserify-optional: 1.0.1 clone: 1.0.4 - deep-equal: 1.1.1 + deep-equal: 1.1.2 dfa: 1.2.0 tiny-inflate: 1.0.3 unicode-properties: 1.4.1 @@ -2992,15 +2959,15 @@ packages: unicode-trie: 2.0.0 dev: false - /@foliojs-fork/pdfkit@0.13.0: + /@foliojs-fork/pdfkit@0.14.0: resolution: { - integrity: sha512-YXeG1fml9k97YNC9K8e292Pj2JzGt9uOIiBFuQFxHsdQ45BlxW+JU3RQK6JAvXU7kjhjP8rCcYvpk36JLD33sQ==, + integrity: sha512-nMOiQAv6id89MT3tVTCgc7HxD5ZMANwio2o5yvs5sexQkC0KI3BLaLakpsrHmFfeGFAhqPmZATZGbJGXTUebpg==, } dependencies: "@foliojs-fork/fontkit": 1.9.1 "@foliojs-fork/linebreak": 1.1.1 - crypto-js: 4.1.1 + crypto-js: 4.2.0 png-js: 1.0.0 dev: false @@ -3068,6 +3035,21 @@ packages: } dev: true + /@isaacs/cliui@8.0.2: + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: { node: ">=12" } + dependencies: + string-width: 5.1.2 + string-width-cjs: /string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: /strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi@7.0.0 + dev: true + /@jridgewell/gen-mapping@0.3.3: resolution: { @@ -3077,7 +3059,7 @@ packages: dependencies: "@jridgewell/set-array": 1.1.2 "@jridgewell/sourcemap-codec": 1.4.15 - "@jridgewell/trace-mapping": 0.3.19 + "@jridgewell/trace-mapping": 0.3.20 dev: true /@jridgewell/resolve-uri@3.1.1: @@ -3103,7 +3085,7 @@ packages: } dependencies: "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.19 + "@jridgewell/trace-mapping": 0.3.20 dev: true /@jridgewell/sourcemap-codec@1.4.15: @@ -3113,56 +3095,50 @@ packages: } dev: true - /@jridgewell/trace-mapping@0.3.19: + /@jridgewell/trace-mapping@0.3.20: resolution: { - integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, + integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==, } dependencies: "@jridgewell/resolve-uri": 3.1.1 "@jridgewell/sourcemap-codec": 1.4.15 dev: true - /@lezer/common@1.0.4: + /@lezer/common@1.2.0: resolution: { - integrity: sha512-lZHlk8p67x4aIDtJl6UQrXSOP6oi7dQR3W/geFVrENdA1JDaAJWldnVqVjPMJupbTKbzDfFcePfKttqVidS/dg==, + integrity: sha512-Wmvlm4q6tRpwiy20TnB3yyLTZim38Tkc50dPY8biQRwqE+ati/wD84rm3N15hikvdT4uSg9phs9ubjvcLmkpKg==, } dev: false - /@lezer/common@1.1.1: + /@lezer/highlight@1.2.0: resolution: { - integrity: sha512-aAPB9YbvZHqAW+bIwiuuTDGB4DG0sYNRObGLxud8cW7osw1ZQxfDuTZ8KQiqfZ0QJGcR34CvpTMDXEyo/+Htgg==, - } - dev: false - - /@lezer/highlight@1.1.6: - resolution: - { - integrity: sha512-cmSJYa2us+r3SePpRCjN5ymCqCPv+zyXmDl0ciWtVaNiORT/MxM7ZgOMQZADD0o51qOaOg24qc/zBViOIwAjJg==, + integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==, } dependencies: - "@lezer/common": 1.1.1 + "@lezer/common": 1.2.0 dev: false - /@lezer/lr@1.3.10: + /@lezer/lr@1.3.14: resolution: { - integrity: sha512-BZfVvf7Re5BIwJHlZXbJn9L8lus5EonxQghyn+ih8Wl36XMFBPTXC0KM0IdUtj9w/diPHsKlXVgL+AlX2jYJ0Q==, + integrity: sha512-z5mY4LStlA3yL7aHT/rqgG614cfcvklS+8oFRFBYrs4YaWLJyKKM4+nN6KopToX0o9Hj6zmH6M5kinOYuy06ug==, } dependencies: - "@lezer/common": 1.1.1 + "@lezer/common": 1.2.0 dev: false - /@lezer/xml@1.0.2: + /@lezer/xml@1.0.4: resolution: { - integrity: sha512-dlngsWceOtQBMuBPw5wtHpaxdPJ71aVntqjbpGkFtWsp4WtQmCnuTjQGocviymydN6M18fhj6UQX3oiEtSuY7w==, + integrity: sha512-WmXKb5eX8+rRfZYSNRR5TPee/ZoDgBdVS/rj1VCJGDKa5gNldIctQYibCoFVyNhvZsyL/8nHbZJZPM4gnXN2Vw==, } dependencies: - "@lezer/highlight": 1.1.6 - "@lezer/lr": 1.3.10 + "@lezer/common": 1.2.0 + "@lezer/highlight": 1.2.0 + "@lezer/lr": 1.3.14 dev: false /@lit-labs/ssr-dom-shim@1.1.2: @@ -3172,10 +3148,10 @@ packages: } dev: false - /@lit/reactive-element@2.0.1: + /@lit/reactive-element@2.0.2: resolution: { - integrity: sha512-eu50SQXHRthFwWJMp0oAFg95Rvm6MTPjxSXWuvAu7It90WVFLFpNBoIno7XOXSDvVgTrtKnUV4OLJqys2Svn4g==, + integrity: sha512-SVOwLAWUQg3Ji1egtOt1UiFe4zdDpnWHyc5qctSceJ5XIu0Uc76YmGpIjZgx9YJ0XtdW0Jm507sDvjOu+HnB8w==, } dependencies: "@lit-labs/ssr-dom-shim": 1.1.2 @@ -3208,7 +3184,7 @@ packages: engines: { node: ">= 8" } dependencies: "@nodelib/fs.scandir": 2.1.5 - fastq: 1.15.0 + fastq: 1.16.0 dev: true /@octokit/auth-token@4.0.0: @@ -3219,130 +3195,138 @@ packages: engines: { node: ">= 18" } dev: true - /@octokit/core@5.0.0: + /@octokit/core@5.0.2: resolution: { - integrity: sha512-YbAtMWIrbZ9FCXbLwT9wWB8TyLjq9mxpKdgB3dUNxQcIVTf9hJ70gRPwAcqGZdY6WdJPZ0I7jLaaNDCiloGN2A==, + integrity: sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==, } engines: { node: ">= 18" } dependencies: "@octokit/auth-token": 4.0.0 - "@octokit/graphql": 7.0.1 - "@octokit/request": 8.1.1 - "@octokit/request-error": 5.0.0 - "@octokit/types": 11.1.0 + "@octokit/graphql": 7.0.2 + "@octokit/request": 8.1.6 + "@octokit/request-error": 5.0.1 + "@octokit/types": 12.4.0 before-after-hook: 2.2.3 - universal-user-agent: 6.0.0 + universal-user-agent: 6.0.1 dev: true - /@octokit/endpoint@9.0.0: + /@octokit/endpoint@9.0.4: resolution: { - integrity: sha512-szrQhiqJ88gghWY2Htt8MqUDO6++E/EIXqJ2ZEp5ma3uGS46o7LZAzSLt49myB7rT+Hfw5Y6gO3LmOxGzHijAQ==, + integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==, } engines: { node: ">= 18" } dependencies: - "@octokit/types": 11.1.0 - is-plain-object: 5.0.0 - universal-user-agent: 6.0.0 + "@octokit/types": 12.4.0 + universal-user-agent: 6.0.1 dev: true - /@octokit/graphql@7.0.1: + /@octokit/graphql@7.0.2: resolution: { - integrity: sha512-T5S3oZ1JOE58gom6MIcrgwZXzTaxRnxBso58xhozxHpOqSTgDS6YNeEUvZ/kRvXgPrRz/KHnZhtb7jUMRi9E6w==, + integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==, } engines: { node: ">= 18" } dependencies: - "@octokit/request": 8.1.1 - "@octokit/types": 11.1.0 - universal-user-agent: 6.0.0 + "@octokit/request": 8.1.6 + "@octokit/types": 12.4.0 + universal-user-agent: 6.0.1 dev: true - /@octokit/openapi-types@18.0.0: + /@octokit/openapi-types@19.1.0: resolution: { - integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==, + integrity: sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==, } dev: true - /@octokit/plugin-paginate-rest@8.0.0(@octokit/core@5.0.0): + /@octokit/plugin-paginate-rest@9.1.5(@octokit/core@5.0.2): resolution: { - integrity: sha512-2xZ+baZWUg+qudVXnnvXz7qfrTmDeYPCzangBVq/1gXxii/OiS//4shJp9dnCCvj1x+JAm9ji1Egwm1BA47lPQ==, + integrity: sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==, } engines: { node: ">= 18" } peerDependencies: "@octokit/core": ">=5" dependencies: - "@octokit/core": 5.0.0 - "@octokit/types": 11.1.0 + "@octokit/core": 5.0.2 + "@octokit/types": 12.4.0 dev: true - /@octokit/plugin-retry@6.0.0(@octokit/core@5.0.0): + /@octokit/plugin-retry@6.0.1(@octokit/core@5.0.2): resolution: { - integrity: sha512-a1/A4A+PB1QoAHQfLJxGHhLfSAT03bR1jJz3GgQJZvty2ozawFWs93MiBQXO7SL2YbO7CIq0Goj4qLOBj8JeMQ==, + integrity: sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==, } engines: { node: ">= 18" } peerDependencies: "@octokit/core": ">=5" dependencies: - "@octokit/core": 5.0.0 - "@octokit/request-error": 5.0.0 - "@octokit/types": 11.1.0 + "@octokit/core": 5.0.2 + "@octokit/request-error": 5.0.1 + "@octokit/types": 12.4.0 bottleneck: 2.19.5 dev: true - /@octokit/plugin-throttling@7.0.0(@octokit/core@5.0.0): + /@octokit/plugin-throttling@8.1.3(@octokit/core@5.0.2): resolution: { - integrity: sha512-KL2k/d0uANc8XqP5S64YcNFCudR3F5AaKO39XWdUtlJIjT9Ni79ekWJ6Kj5xvAw87udkOMEPcVf9xEge2+ahew==, + integrity: sha512-pfyqaqpc0EXh5Cn4HX9lWYsZ4gGbjnSmUILeu4u2gnuM50K/wIk9s1Pxt3lVeVwekmITgN/nJdoh43Ka+vye8A==, } engines: { node: ">= 18" } peerDependencies: "@octokit/core": ^5.0.0 dependencies: - "@octokit/core": 5.0.0 - "@octokit/types": 11.1.0 + "@octokit/core": 5.0.2 + "@octokit/types": 12.4.0 bottleneck: 2.19.5 dev: true - /@octokit/request-error@5.0.0: + /@octokit/request-error@5.0.1: resolution: { - integrity: sha512-1ue0DH0Lif5iEqT52+Rf/hf0RmGO9NWFjrzmrkArpG9trFfDM/efx00BJHdLGuro4BR/gECxCU2Twf5OKrRFsQ==, + integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==, } engines: { node: ">= 18" } dependencies: - "@octokit/types": 11.1.0 + "@octokit/types": 12.4.0 deprecation: 2.3.1 once: 1.4.0 dev: true - /@octokit/request@8.1.1: + /@octokit/request@8.1.6: resolution: { - integrity: sha512-8N+tdUz4aCqQmXl8FpHYfKG9GelDFd7XGVzyN8rc6WxVlYcfpHECnuRkgquzz+WzvHTK62co5di8gSXnzASZPQ==, + integrity: sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==, } engines: { node: ">= 18" } dependencies: - "@octokit/endpoint": 9.0.0 - "@octokit/request-error": 5.0.0 - "@octokit/types": 11.1.0 - is-plain-object: 5.0.0 - universal-user-agent: 6.0.0 + "@octokit/endpoint": 9.0.4 + "@octokit/request-error": 5.0.1 + "@octokit/types": 12.4.0 + universal-user-agent: 6.0.1 dev: true - /@octokit/types@11.1.0: + /@octokit/types@12.4.0: resolution: { - integrity: sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ==, + integrity: sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==, } dependencies: - "@octokit/openapi-types": 18.0.0 + "@octokit/openapi-types": 19.1.0 dev: true + /@pkgjs/parseargs@0.11.0: + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: { node: ">=14" } + requiresBuild: true + dev: true + optional: true + /@pnpm/config.env-replace@1.1.0: resolution: { @@ -3373,7 +3357,7 @@ packages: config-chain: 1.1.13 dev: true - /@rollup/plugin-babel@5.3.1(@babel/core@7.22.11)(rollup@2.79.1): + /@rollup/plugin-babel@5.3.1(@babel/core@7.23.6)(rollup@2.79.1): resolution: { integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==, @@ -3387,8 +3371,8 @@ packages: "@types/babel__core": optional: true dependencies: - "@babel/core": 7.22.11 - "@babel/helper-module-imports": 7.22.5 + "@babel/core": 7.23.6 + "@babel/helper-module-imports": 7.22.15 "@rollup/pluginutils": 3.1.0(rollup@2.79.1) rollup: 2.79.1 dev: true @@ -3407,7 +3391,7 @@ packages: builtin-modules: 3.3.0 deepmerge: 4.3.1 is-module: 1.0.0 - resolve: 1.22.4 + resolve: 1.22.8 rollup: 2.79.1 dev: true @@ -3439,10 +3423,10 @@ packages: rollup: 2.79.1 dev: true - /@rollup/rollup-android-arm-eabi@4.4.1: + /@rollup/rollup-android-arm-eabi@4.9.1: resolution: { - integrity: sha512-Ss4suS/sd+6xLRu+MLCkED2mUrAyqHmmvZB+zpzZ9Znn9S8wCkTQCJaQ8P8aHofnvG5L16u9MVnJjCqioPErwQ==, + integrity: sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig==, } cpu: [arm] os: [android] @@ -3450,10 +3434,10 @@ packages: dev: true optional: true - /@rollup/rollup-android-arm64@4.4.1: + /@rollup/rollup-android-arm64@4.9.1: resolution: { - integrity: sha512-sRSkGTvGsARwWd7TzC8LKRf8FiPn7257vd/edzmvG4RIr9x68KBN0/Ek48CkuUJ5Pj/Dp9vKWv6PEupjKWjTYA==, + integrity: sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ==, } cpu: [arm64] os: [android] @@ -3461,10 +3445,10 @@ packages: dev: true optional: true - /@rollup/rollup-darwin-arm64@4.4.1: + /@rollup/rollup-darwin-arm64@4.9.1: resolution: { - integrity: sha512-nz0AiGrrXyaWpsmBXUGOBiRDU0wyfSXbFuF98pPvIO8O6auQsPG6riWsfQqmCCC5FNd8zKQ4JhgugRNAkBJ8mQ==, + integrity: sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA==, } cpu: [arm64] os: [darwin] @@ -3472,10 +3456,10 @@ packages: dev: true optional: true - /@rollup/rollup-darwin-x64@4.4.1: + /@rollup/rollup-darwin-x64@4.9.1: resolution: { - integrity: sha512-Ogqvf4/Ve/faMaiPRvzsJEqajbqs00LO+8vtrPBVvLgdw4wBg6ZDXdkDAZO+4MLnrc8mhGV6VJAzYScZdPLtJg==, + integrity: sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og==, } cpu: [x64] os: [darwin] @@ -3483,10 +3467,10 @@ packages: dev: true optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.4.1: + /@rollup/rollup-linux-arm-gnueabihf@4.9.1: resolution: { - integrity: sha512-9zc2tqlr6HfO+hx9+wktUlWTRdje7Ub15iJqKcqg5uJZ+iKqmd2CMxlgPpXi7+bU7bjfDIuvCvnGk7wewFEhCg==, + integrity: sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q==, } cpu: [arm] os: [linux] @@ -3494,10 +3478,10 @@ packages: dev: true optional: true - /@rollup/rollup-linux-arm64-gnu@4.4.1: + /@rollup/rollup-linux-arm64-gnu@4.9.1: resolution: { - integrity: sha512-phLb1fN3rq2o1j1v+nKxXUTSJnAhzhU0hLrl7Qzb0fLpwkGMHDem+o6d+ZI8+/BlTXfMU4kVWGvy6g9k/B8L6Q==, + integrity: sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q==, } cpu: [arm64] os: [linux] @@ -3505,10 +3489,10 @@ packages: dev: true optional: true - /@rollup/rollup-linux-arm64-musl@4.4.1: + /@rollup/rollup-linux-arm64-musl@4.9.1: resolution: { - integrity: sha512-M2sDtw4tf57VPSjbTAN/lz1doWUqO2CbQuX3L9K6GWIR5uw9j+ROKCvvUNBY8WUbMxwaoc8mH9HmmBKsLht7+w==, + integrity: sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw==, } cpu: [arm64] os: [linux] @@ -3516,10 +3500,21 @@ packages: dev: true optional: true - /@rollup/rollup-linux-x64-gnu@4.4.1: + /@rollup/rollup-linux-riscv64-gnu@4.9.1: resolution: { - integrity: sha512-mHIlRLX+hx+30cD6c4BaBOsSqdnCE4ok7/KDvjHYAHoSuveoMMxIisZFvcLhUnyZcPBXDGZTuBoalcuh43UfQQ==, + integrity: sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw==, + } + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.9.1: + resolution: + { + integrity: sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg==, } cpu: [x64] os: [linux] @@ -3527,10 +3522,10 @@ packages: dev: true optional: true - /@rollup/rollup-linux-x64-musl@4.4.1: + /@rollup/rollup-linux-x64-musl@4.9.1: resolution: { - integrity: sha512-tB+RZuDi3zxFx7vDrjTNGVLu2KNyzYv+UY8jz7e4TMEoAj7iEt8Qk6xVu6mo3pgjnsHj6jnq3uuRsHp97DLwOA==, + integrity: sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw==, } cpu: [x64] os: [linux] @@ -3538,10 +3533,10 @@ packages: dev: true optional: true - /@rollup/rollup-win32-arm64-msvc@4.4.1: + /@rollup/rollup-win32-arm64-msvc@4.9.1: resolution: { - integrity: sha512-Hdn39PzOQowK/HZzYpCuZdJC91PE6EaGbTe2VCA9oq2u18evkisQfws0Smh9QQGNNRa/T7MOuGNQoLeXhhE3PQ==, + integrity: sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g==, } cpu: [arm64] os: [win32] @@ -3549,10 +3544,10 @@ packages: dev: true optional: true - /@rollup/rollup-win32-ia32-msvc@4.4.1: + /@rollup/rollup-win32-ia32-msvc@4.9.1: resolution: { - integrity: sha512-tLpKb1Elm9fM8c5w3nl4N1eLTP4bCqTYw9tqUBxX8/hsxqHO3dxc2qPbZ9PNkdK4tg4iLEYn0pOUnVByRd2CbA==, + integrity: sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg==, } cpu: [ia32] os: [win32] @@ -3560,10 +3555,10 @@ packages: dev: true optional: true - /@rollup/rollup-win32-x64-msvc@4.4.1: + /@rollup/rollup-win32-x64-msvc@4.9.1: resolution: { - integrity: sha512-eAhItDX9yQtZVM3yvXS/VR3qPqcnXvnLyx1pLXl4JzyNMBNO3KC986t/iAg2zcMzpAp9JSvxB5VZGnBiNoA98w==, + integrity: sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA==, } cpu: [x64] os: [win32] @@ -3582,7 +3577,7 @@ packages: dependencies: "@semantic-release/error": 3.0.0 aggregate-error: 3.1.0 - fs-extra: 11.1.1 + fs-extra: 11.2.0 lodash: 4.17.21 semantic-release: 22.0.12(typescript@5.3.3) dev: true @@ -3600,7 +3595,7 @@ packages: conventional-commits-filter: 4.0.0 conventional-commits-parser: 5.0.0 debug: 4.3.4 - import-from-esm: 1.3.1 + import-from-esm: 1.3.3 lodash-es: 4.17.21 micromatch: 4.0.5 semantic-release: 22.0.12(typescript@5.3.3) @@ -3666,30 +3661,30 @@ packages: - supports-color dev: true - /@semantic-release/github@9.0.4(semantic-release@22.0.12): + /@semantic-release/github@9.2.6(semantic-release@22.0.12): resolution: { - integrity: sha512-kQCGFAsBErvCR6hzNuzu63cj4erQN2krm9zQlg8vl4j5X0mL0d/Ras0wmL5Gkr1TuSS2lweME7M4J5zvtDDDSA==, + integrity: sha512-shi+Lrf6exeNZF+sBhK+P011LSbhmIAoUEgEY6SsxF8irJ+J2stwI5jkyDQ+4gzYyDImzV6LCKdYB9FXnQRWKA==, } engines: { node: ">=18" } peerDependencies: semantic-release: ">=20.1.0" dependencies: - "@octokit/core": 5.0.0 - "@octokit/plugin-paginate-rest": 8.0.0(@octokit/core@5.0.0) - "@octokit/plugin-retry": 6.0.0(@octokit/core@5.0.0) - "@octokit/plugin-throttling": 7.0.0(@octokit/core@5.0.0) + "@octokit/core": 5.0.2 + "@octokit/plugin-paginate-rest": 9.1.5(@octokit/core@5.0.2) + "@octokit/plugin-retry": 6.0.1(@octokit/core@5.0.2) + "@octokit/plugin-throttling": 8.1.3(@octokit/core@5.0.2) "@semantic-release/error": 4.0.0 - aggregate-error: 4.0.1 + aggregate-error: 5.0.0 debug: 4.3.4 dir-glob: 3.0.1 - globby: 13.2.2 + globby: 14.0.0 http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.1 + https-proxy-agent: 7.0.2 issue-parser: 6.0.0 lodash-es: 4.17.21 - mime: 3.0.0 - p-filter: 3.0.0 + mime: 4.0.1 + p-filter: 4.1.0 semantic-release: 22.0.12(typescript@5.3.3) url-join: 5.0.0 transitivePeerDependencies: @@ -3711,7 +3706,7 @@ packages: dir-glob: 3.0.1 escape-string-regexp: 5.0.0 formdata-node: 6.0.3 - fs-extra: 11.1.1 + fs-extra: 11.2.0 globby: 14.0.0 got: 13.0.0 hpagent: 1.2.0 @@ -3723,10 +3718,10 @@ packages: - supports-color dev: true - /@semantic-release/npm@11.0.1(semantic-release@22.0.12): + /@semantic-release/npm@11.0.2(semantic-release@22.0.12): resolution: { - integrity: sha512-nFcT0pgVwpXsPkzjqP3ObH+pILeN1AbYscCDuYwgZEPZukL+RsGhrtdT4HA1Gjb/y1bVbE90JNtMIcgRi5z/Fg==, + integrity: sha512-owtf3RjyPvRE63iUKZ5/xO4uqjRpVQDUB9+nnXj0xwfIeM9pRl+cG+zGDzdftR4m3f2s4Wyf3SexW+kF5DFtWA==, } engines: { node: ^18.17 || >=20 } peerDependencies: @@ -3735,13 +3730,13 @@ packages: "@semantic-release/error": 4.0.0 aggregate-error: 5.0.0 execa: 8.0.1 - fs-extra: 11.1.1 + fs-extra: 11.2.0 lodash-es: 4.17.21 nerf-dart: 1.0.0 normalize-url: 8.0.0 - npm: 10.2.3 + npm: 10.2.5 rc: 1.2.8 - read-pkg: 9.0.0 + read-pkg: 9.0.1 registry-auth-token: 5.0.2 semantic-release: 22.0.12(typescript@5.3.3) semver: 7.5.4 @@ -3763,7 +3758,7 @@ packages: conventional-commits-parser: 5.0.0 debug: 4.3.4 get-stream: 7.0.1 - import-from-esm: 1.3.1 + import-from-esm: 1.3.3 into-stream: 7.0.0 lodash-es: 4.17.21 read-pkg-up: 11.0.0 @@ -3772,10 +3767,10 @@ packages: - supports-color dev: true - /@sindresorhus/is@3.1.2: + /@sindresorhus/is@4.6.0: resolution: { - integrity: sha512-JiX9vxoKMmu8Y3Zr2RVathBL1Cdu4Nt4MuNWemt1Nc06A0RAin9c5FArkhGsyMBWfCu4zj+9b+GxtjAnE4qqLQ==, + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, } engines: { node: ">=10" } dev: true @@ -3814,7 +3809,7 @@ packages: ejs: 3.1.9 json5: 2.2.3 magic-string: 0.25.9 - string.prototype.matchall: 4.0.8 + string.prototype.matchall: 4.0.10 dev: true /@szmarczak/http-timer@5.0.1: @@ -3881,31 +3876,31 @@ packages: } dev: true - /@types/fscreen@1.0.1: + /@types/fscreen@1.0.4: resolution: { - integrity: sha512-hV2d0BreihMGtrg+EdAFOIl/O2EL5vhAheHJUztGE/lPFZIN8ZCpGFL8hCbtyi1CfhKjDRCf47sHjP+FwJ4q0Q==, + integrity: sha512-TsjxyAUvlvuQyao9vNk0yES4nY07K9xoAbkhgXU948JG39EqlLxniWuW9OiZde9Q8ACSpu3fmbXXRAfb/l/HqQ==, } dev: false - /@types/geojson@7946.0.10: + /@types/geojson@7946.0.13: resolution: { - integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==, + integrity: sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==, } dev: true - /@types/http-cache-semantics@4.0.1: + /@types/http-cache-semantics@4.0.4: resolution: { - integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==, + integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==, } dev: true - /@types/json-schema@7.0.12: + /@types/json-schema@7.0.15: resolution: { - integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, } dev: true @@ -3915,31 +3910,33 @@ packages: integrity: sha512-EXdsL4EhoUtGm2GC2ZYtXn+Fzc6pluVgagvo2VC1RHWToLGlTRwVYoDpqS/7QXa01rmDyBjJk3Catpf60VMkwg==, } dependencies: - "@types/geojson": 7946.0.10 + "@types/geojson": 7946.0.13 dev: true - /@types/minimist@1.2.2: + /@types/minimist@1.2.5: resolution: { - integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, + integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, } dev: true - /@types/node@18.18.9: + /@types/node@18.19.3: resolution: { - integrity: sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==, + integrity: sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==, } requiresBuild: true dependencies: undici-types: 5.26.5 dev: true - /@types/node@20.5.6: + /@types/node@20.10.5: resolution: { - integrity: sha512-Gi5wRGPbbyOTX+4Y2iULQ27oUPrefaB0PxGQJnfyWN3kvEDGM3mIB5M/gQLmitZf7A9FmLeaqxD3L1CXpm3VKQ==, + integrity: sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==, } + dependencies: + undici-types: 5.26.5 dev: true /@types/normalize-package-data@2.4.4: @@ -3955,26 +3952,26 @@ packages: integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, } dependencies: - "@types/node": 20.5.6 + "@types/node": 20.10.5 dev: true - /@types/semver@7.5.0: + /@types/semver@7.5.6: resolution: { - integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==, + integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==, } dev: true - /@types/trusted-types@2.0.3: + /@types/trusted-types@2.0.7: resolution: { - integrity: sha512-NfQ4gyz38SL8sDNrSixxU2Os1a5xcdFxipAFxYEuLUlvU2uDwS4NUpsImcf1//SlWItCVMMLiylsxbmNMToV/g==, + integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, } - /@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3): + /@typescript-eslint/eslint-plugin@6.16.0(@typescript-eslint/parser@6.16.0)(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==, + integrity: sha512-O5f7Kv5o4dLWQtPX4ywPPa+v9G+1q1x8mz0Kr0pXUtKsevo+gIJHLkGc8RxaZWtP8RrhwhSNIWThnW42K9/0rQ==, } engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: @@ -3985,28 +3982,28 @@ packages: typescript: optional: true dependencies: - "@eslint-community/regexpp": 4.8.0 - "@typescript-eslint/parser": 6.15.0(eslint@8.56.0)(typescript@5.3.3) - "@typescript-eslint/scope-manager": 6.15.0 - "@typescript-eslint/type-utils": 6.15.0(eslint@8.56.0)(typescript@5.3.3) - "@typescript-eslint/utils": 6.15.0(eslint@8.56.0)(typescript@5.3.3) - "@typescript-eslint/visitor-keys": 6.15.0 + "@eslint-community/regexpp": 4.10.0 + "@typescript-eslint/parser": 6.16.0(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/scope-manager": 6.16.0 + "@typescript-eslint/type-utils": 6.16.0(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/utils": 6.16.0(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/visitor-keys": 6.16.0 debug: 4.3.4 eslint: 8.56.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.0 natural-compare: 1.4.0 semver: 7.5.4 - ts-api-utils: 1.0.2(typescript@5.3.3) + ts-api-utils: 1.0.3(typescript@5.3.3) typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.3.3): + /@typescript-eslint/parser@6.16.0(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==, + integrity: sha512-H2GM3eUo12HpKZU9njig3DF5zJ58ja6ahj1GoHEHOgQvYxzoFJJEvC1MQ7T2l9Ha+69ZSOn7RTxOdpC/y3ikMw==, } engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: @@ -4016,10 +4013,10 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 6.15.0 - "@typescript-eslint/types": 6.15.0 - "@typescript-eslint/typescript-estree": 6.15.0(typescript@5.3.3) - "@typescript-eslint/visitor-keys": 6.15.0 + "@typescript-eslint/scope-manager": 6.16.0 + "@typescript-eslint/types": 6.16.0 + "@typescript-eslint/typescript-estree": 6.16.0(typescript@5.3.3) + "@typescript-eslint/visitor-keys": 6.16.0 debug: 4.3.4 eslint: 8.56.0 typescript: 5.3.3 @@ -4027,21 +4024,21 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager@6.15.0: + /@typescript-eslint/scope-manager@6.16.0: resolution: { - integrity: sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==, + integrity: sha512-0N7Y9DSPdaBQ3sqSCwlrm9zJwkpOuc6HYm7LpzLAPqBL7dmzAUimr4M29dMkOP/tEwvOCC/Cxo//yOfJD3HUiw==, } engines: { node: ^16.0.0 || >=18.0.0 } dependencies: - "@typescript-eslint/types": 6.15.0 - "@typescript-eslint/visitor-keys": 6.15.0 + "@typescript-eslint/types": 6.16.0 + "@typescript-eslint/visitor-keys": 6.16.0 dev: true - /@typescript-eslint/type-utils@6.15.0(eslint@8.56.0)(typescript@5.3.3): + /@typescript-eslint/type-utils@6.16.0(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==, + integrity: sha512-ThmrEOcARmOnoyQfYkHw/DX2SEYBalVECmoldVuH6qagKROp/jMnfXpAU/pAIWub9c4YTxga+XwgAkoA0pxfmg==, } engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: @@ -4051,28 +4048,28 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 6.15.0(typescript@5.3.3) - "@typescript-eslint/utils": 6.15.0(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/typescript-estree": 6.16.0(typescript@5.3.3) + "@typescript-eslint/utils": 6.16.0(eslint@8.56.0)(typescript@5.3.3) debug: 4.3.4 eslint: 8.56.0 - ts-api-utils: 1.0.2(typescript@5.3.3) + ts-api-utils: 1.0.3(typescript@5.3.3) typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@6.15.0: + /@typescript-eslint/types@6.16.0: resolution: { - integrity: sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==, + integrity: sha512-hvDFpLEvTJoHutVl87+MG/c5C8I6LOgEx05zExTSJDEVU7hhR3jhV8M5zuggbdFCw98+HhZWPHZeKS97kS3JoQ==, } engines: { node: ^16.0.0 || >=18.0.0 } dev: true - /@typescript-eslint/typescript-estree@6.15.0(typescript@5.3.3): + /@typescript-eslint/typescript-estree@6.16.0(typescript@5.3.3): resolution: { - integrity: sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==, + integrity: sha512-VTWZuixh/vr7nih6CfrdpmFNLEnoVBF1skfjdyGnNwXOH1SLeHItGdZDHhhAIzd3ACazyY2Fg76zuzOVTaknGA==, } engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: @@ -4081,33 +4078,34 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/types": 6.15.0 - "@typescript-eslint/visitor-keys": 6.15.0 + "@typescript-eslint/types": 6.16.0 + "@typescript-eslint/visitor-keys": 6.16.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 + minimatch: 9.0.3 semver: 7.5.4 - ts-api-utils: 1.0.2(typescript@5.3.3) + ts-api-utils: 1.0.3(typescript@5.3.3) typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@6.15.0(eslint@8.56.0)(typescript@5.3.3): + /@typescript-eslint/utils@6.16.0(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==, + integrity: sha512-T83QPKrBm6n//q9mv7oiSvy/Xq/7Hyw9SzSEhMHJwznEmQayfBM87+oAlkNAMEO7/MjIwKyOHgBJbxB0s7gx2A==, } engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: "@eslint-community/eslint-utils": 4.4.0(eslint@8.56.0) - "@types/json-schema": 7.0.12 - "@types/semver": 7.5.0 - "@typescript-eslint/scope-manager": 6.15.0 - "@typescript-eslint/types": 6.15.0 - "@typescript-eslint/typescript-estree": 6.15.0(typescript@5.3.3) + "@types/json-schema": 7.0.15 + "@types/semver": 7.5.6 + "@typescript-eslint/scope-manager": 6.16.0 + "@typescript-eslint/types": 6.16.0 + "@typescript-eslint/typescript-estree": 6.16.0(typescript@5.3.3) eslint: 8.56.0 semver: 7.5.4 transitivePeerDependencies: @@ -4115,14 +4113,14 @@ packages: - typescript dev: true - /@typescript-eslint/visitor-keys@6.15.0: + /@typescript-eslint/visitor-keys@6.16.0: resolution: { - integrity: sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==, + integrity: sha512-QSFQLruk7fhs91a/Ep/LqRdbJCZ1Rq03rqBdKT5Ky17Sz8zRLUksqIe9DW0pKtg/Z35/ztbLQ6qpOCN6rOC11A==, } engines: { node: ^16.0.0 || >=18.0.0 } dependencies: - "@typescript-eslint/types": 6.15.0 + "@typescript-eslint/types": 6.16.0 eslint-visitor-keys: 3.4.3 dev: true @@ -4140,7 +4138,7 @@ packages: } dependencies: "@stencil/core": 2.5.2 - "@types/fscreen": 1.0.1 + "@types/fscreen": 1.0.4 fscreen: 1.2.0 mitt: 3.0.1 stencil-wormhole: 3.4.1 @@ -4157,7 +4155,7 @@ packages: through: 2.3.8 dev: true - /acorn-jsx@5.3.2(acorn@8.10.0): + /acorn-jsx@5.3.2(acorn@8.11.3): resolution: { integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, @@ -4165,7 +4163,7 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.10.0 + acorn: 8.11.3 dev: true /acorn-node@1.8.2: @@ -4196,10 +4194,10 @@ packages: hasBin: true dev: false - /acorn@8.10.0: + /acorn@8.11.3: resolution: { - integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, + integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, } engines: { node: ">=0.4.0" } hasBin: true @@ -4228,17 +4226,6 @@ packages: indent-string: 4.0.0 dev: true - /aggregate-error@4.0.1: - resolution: - { - integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==, - } - engines: { node: ">=12" } - dependencies: - clean-stack: 4.2.0 - indent-string: 5.0.0 - dev: true - /aggregate-error@5.0.0: resolution: { @@ -4282,8 +4269,8 @@ packages: engines: { node: ">=4" } hasBin: true dependencies: - "@babel/runtime": 7.22.11 - async: 3.2.4 + "@babel/runtime": 7.23.6 + async: 3.2.5 chalk: 4.1.2 didyoumean: 1.2.2 inquirer: 7.3.3 @@ -4424,7 +4411,7 @@ packages: integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 is-array-buffer: 3.0.2 dev: true @@ -4450,17 +4437,18 @@ packages: engines: { node: ">=8" } dev: true - /arraybuffer.prototype.slice@1.0.1: + /arraybuffer.prototype.slice@1.0.2: resolution: { - integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==, + integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==, } engines: { node: ">= 0.4" } dependencies: array-buffer-byte-length: 1.0.0 - call-bind: 1.0.2 - define-properties: 1.2.0 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 dev: true @@ -4500,10 +4488,10 @@ packages: engines: { node: ">=8" } dev: true - /async@3.2.4: + /async@3.2.5: resolution: { - integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==, + integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==, } dev: true @@ -4525,8 +4513,8 @@ packages: peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.22.1 - caniuse-lite: 1.0.30001562 + browserslist: 4.22.2 + caniuse-lite: 1.0.30001572 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -4542,47 +4530,47 @@ packages: engines: { node: ">= 0.4" } dev: true - /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.11): + /babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.23.6): resolution: { - integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==, + integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/compat-data": 7.22.9 - "@babel/core": 7.22.11 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.22.11) + "@babel/compat-data": 7.23.5 + "@babel/core": 7.23.6 + "@babel/helper-define-polyfill-provider": 0.4.4(@babel/core@7.23.6) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.11): + /babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.23.6): resolution: { - integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==, + integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.22.11) - core-js-compat: 3.32.1 + "@babel/core": 7.23.6 + "@babel/helper-define-polyfill-provider": 0.4.4(@babel/core@7.23.6) + core-js-compat: 3.35.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.11): + /babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.23.6): resolution: { - integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==, + integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.22.11 - "@babel/helper-define-polyfill-provider": 0.4.2(@babel/core@7.22.11) + "@babel/core": 7.23.6 + "@babel/helper-define-polyfill-provider": 0.4.4(@babel/core@7.23.6) transitivePeerDependencies: - supports-color dev: true @@ -4691,7 +4679,7 @@ packages: hasBin: true dependencies: quote-stream: 1.0.2 - resolve: 1.22.4 + resolve: 1.22.8 static-module: 3.0.4 through2: 2.0.5 dev: false @@ -4725,18 +4713,18 @@ packages: browser-resolve: 1.11.3 dev: false - /browserslist@4.22.1: + /browserslist@4.22.2: resolution: { - integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==, + integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==, } engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: - caniuse-lite: 1.0.30001562 - electron-to-chromium: 1.4.583 - node-releases: 2.0.13 - update-browserslist-db: 1.0.13(browserslist@4.22.1) + caniuse-lite: 1.0.30001572 + electron-to-chromium: 1.4.616 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) dev: true /buffer-equal@0.0.1: @@ -4779,17 +4767,17 @@ packages: engines: { node: ">=14.16" } dev: true - /cacheable-request@10.2.13: + /cacheable-request@10.2.14: resolution: { - integrity: sha512-3SD4rrMu1msNGEtNSt8Od6enwdo//U9s4ykmXfA2TD58kcLkCobtCDiby7kNyj7a/Q7lz/mAesAFI54rTdnvBA==, + integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==, } engines: { node: ">=14.16" } dependencies: - "@types/http-cache-semantics": 4.0.1 + "@types/http-cache-semantics": 4.0.4 get-stream: 6.0.1 http-cache-semantics: 4.1.1 - keyv: 4.5.3 + keyv: 4.5.4 mimic-response: 4.0.0 normalize-url: 8.0.0 responselike: 3.0.0 @@ -4803,14 +4791,15 @@ packages: engines: { node: ">=6" } dev: true - /call-bind@1.0.2: + /call-bind@1.0.5: resolution: { - integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==, } dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 /callsites@3.1.0: resolution: @@ -4854,16 +4843,16 @@ packages: integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==, } dependencies: - browserslist: 4.22.1 - caniuse-lite: 1.0.30001562 + browserslist: 4.22.2 + caniuse-lite: 1.0.30001572 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite@1.0.30001562: + /caniuse-lite@1.0.30001572: resolution: { - integrity: sha512-kfte3Hym//51EdX4239i+Rmp20EsLIYGdPkERegTgU19hQWCRhsRFGKHTliUlsry53tv17K7n077Kqa0WJU4ng==, + integrity: sha512-1Pbh5FLmn5y4+QhNyJE9j3/7dK44dGB83/ZMjv/qJk86TvDbjk0LosiZo0i0WB0Vx607qMX9jYrn1VLHCkN4rw==, } dev: true @@ -4953,10 +4942,10 @@ packages: fsevents: 2.3.3 dev: true - /ci-info@3.8.0: + /ci-info@3.9.0: resolution: { - integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, } engines: { node: ">=8" } dev: true @@ -4969,16 +4958,6 @@ packages: engines: { node: ">=6" } dev: true - /clean-stack@4.2.0: - resolution: - { - integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==, - } - engines: { node: ">=12" } - dependencies: - escape-string-regexp: 5.0.0 - dev: true - /clean-stack@5.2.0: resolution: { @@ -5009,10 +4988,10 @@ packages: restore-cursor: 4.0.0 dev: true - /cli-spinners@2.9.0: + /cli-spinners@2.9.2: resolution: { - integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==, + integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==, } engines: { node: ">=6" } dev: true @@ -5078,19 +5057,19 @@ packages: } engines: { node: ">=0.8" } - /codemirror@6.0.1(@lezer/common@1.1.1): + /codemirror@6.0.1(@lezer/common@1.2.0): resolution: { integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==, } dependencies: - "@codemirror/autocomplete": 6.9.0(@codemirror/language@6.9.3)(@codemirror/state@6.3.3)(@codemirror/view@6.22.3)(@lezer/common@1.1.1) - "@codemirror/commands": 6.3.2 - "@codemirror/language": 6.9.3 - "@codemirror/lint": 6.4.0 - "@codemirror/search": 6.5.1 - "@codemirror/state": 6.3.3 - "@codemirror/view": 6.22.3 + "@codemirror/autocomplete": 6.11.1(@codemirror/language@6.10.0)(@codemirror/state@6.4.0)(@codemirror/view@6.23.0)(@lezer/common@1.2.0) + "@codemirror/commands": 6.3.3 + "@codemirror/language": 6.10.0 + "@codemirror/lint": 6.4.2 + "@codemirror/search": 6.5.5 + "@codemirror/state": 6.4.0 + "@codemirror/view": 6.23.0 transitivePeerDependencies: - "@lezer/common" dev: false @@ -5316,20 +5295,28 @@ packages: { integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, } + dev: false - /core-js-compat@3.32.1: + /convert-source-map@2.0.0: resolution: { - integrity: sha512-GSvKDv4wE0bPnQtjklV101juQ85g6H3rm5PDP20mqlS5j0kXF3pP97YvAu5hl+uFHqMictp3b2VxOHljWMAtuA==, + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, } - dependencies: - browserslist: 4.22.1 dev: true - /core-js@3.32.1: + /core-js-compat@3.35.0: resolution: { - integrity: sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ==, + integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==, + } + dependencies: + browserslist: 4.22.2 + dev: true + + /core-js@3.35.0: + resolution: + { + integrity: sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==, } requiresBuild: true dev: false @@ -5340,7 +5327,7 @@ packages: integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, } - /cosmiconfig-typescript-loader@5.0.0(@types/node@18.18.9)(cosmiconfig@8.3.6)(typescript@5.3.3): + /cosmiconfig-typescript-loader@5.0.0(@types/node@18.19.3)(cosmiconfig@8.3.6)(typescript@5.3.3): resolution: { integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==, @@ -5352,9 +5339,9 @@ packages: cosmiconfig: ">=8.2" typescript: ">=4" dependencies: - "@types/node": 18.18.9 + "@types/node": 18.19.3 cosmiconfig: 8.3.6(typescript@5.3.3) - jiti: 1.19.3 + jiti: 1.21.0 typescript: 5.3.3 dev: true @@ -5426,10 +5413,10 @@ packages: which: 2.0.2 dev: true - /crypto-js@4.1.1: + /crypto-js@4.2.0: resolution: { - integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==, + integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==, } dev: false @@ -5451,17 +5438,17 @@ packages: type-fest: 1.4.0 dev: true - /css-blank-pseudo@6.0.0(postcss@8.4.32): + /css-blank-pseudo@6.0.1(postcss@8.4.32): resolution: { - integrity: sha512-VbfLlOWO7sBHBTn6pwDQzc07Z0SDydgDBfNfCE0nvrehdBNv9RKsuupIRa/qal0+fBZhAALyQDPMKz5lnvcchw==, + integrity: sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /css-declaration-sorter@7.1.1(postcss@8.4.32): @@ -5484,25 +5471,25 @@ packages: engines: { node: ">=12 || >=16" } dev: true - /css-has-pseudo@6.0.0(postcss@8.4.32): + /css-has-pseudo@6.0.1(postcss@8.4.32): resolution: { - integrity: sha512-X+r+JBuoO37FBOWVNhVJhxtSBUFHgHbrcc0CjFT28JEdOw1qaDwABv/uunyodUuSy2hMPe9j/HjssxSlvUmKjg==, + integrity: sha512-WwoVKqNxApfEI7dWFyaHoeFCcUPD+lPyjL6lNpRUNX7IyIUuVpawOTwwA5D0ZR6V2xQZonNPVj8kEcxzEaAQfQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/selector-specificity": 3.0.0(postcss-selector-parser@6.0.13) + "@csstools/selector-specificity": 3.0.1(postcss-selector-parser@6.0.14) postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 postcss-value-parser: 4.2.0 dev: true - /css-prefers-color-scheme@9.0.0(postcss@8.4.32): + /css-prefers-color-scheme@9.0.1(postcss@8.4.32): resolution: { - integrity: sha512-03QGAk/FXIRseDdLb7XAiu6gidQ0Nd8945xuM7VFVPpc6goJsG9uIO8xQjTxwbPdPIIV4o4AJoOJyt8gwDl67g==, + integrity: sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -5554,10 +5541,10 @@ packages: engines: { node: ">= 6" } dev: true - /cssdb@7.9.0: + /cssdb@7.10.0: resolution: { - integrity: sha512-WPMT9seTQq6fPAa1yN4zjgZZeoTriSN2LqW9C+otjar12DQIWA4LuSfFrvFJiKp4oD0xIk1vumDLw8K9ur4NBw==, + integrity: sha512-yGZ5tmA57gWh/uvdQBHs45wwFY0IBh3ypABk5sEubPBPSzXzkNgsWReqx7gdx6uhC+QoFBe+V8JwBB9/hQ6cIA==, } dev: true @@ -5861,18 +5848,19 @@ packages: } dev: true - /deep-equal@1.1.1: + /deep-equal@1.1.2: resolution: { - integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==, + integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==, } + engines: { node: ">= 0.4" } dependencies: is-arguments: 1.1.1 is-date-object: 1.0.5 is-regex: 1.1.4 object-is: 1.1.5 object-keys: 1.1.1 - regexp.prototype.flags: 1.5.0 + regexp.prototype.flags: 1.5.1 dev: false /deep-extend@0.6.0: @@ -5913,14 +5901,26 @@ packages: engines: { node: ">=10" } dev: true - /define-properties@1.2.0: + /define-data-property@1.1.1: resolution: { - integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, + integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==, } engines: { node: ">= 0.4" } dependencies: - has-property-descriptors: 1.0.0 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + + /define-properties@1.2.1: + resolution: + { + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 object-keys: 1.1.1 /deprecation@2.3.1: @@ -6044,6 +6044,13 @@ packages: dependencies: readable-stream: 2.3.8 + /eastasianwidth@0.2.0: + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } + dev: true + /ejs@3.1.9: resolution: { @@ -6055,10 +6062,10 @@ packages: jake: 10.8.7 dev: true - /electron-to-chromium@1.4.583: + /electron-to-chromium@1.4.616: resolution: { - integrity: sha512-93y1gcONABZ7uqYe/JWDVQP/Pj/sQSunF0HVAPdlg/pfBnOyBMLlQUxWvkqcljJg1+W6cjvPuYD+r1Th9Tn8mA==, + integrity: sha512-1n7zWYh8eS0L9Uy+GskE0lkBUNK83cXTVJI0pU3mGprFsbfSdAc15VTFbo+A+Bq4pwstmL30AVcEU3Fo463lNg==, } dev: true @@ -6076,6 +6083,13 @@ packages: } dev: true + /emoji-regex@9.2.2: + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } + dev: true + /emojilib@2.4.0: resolution: { @@ -6119,29 +6133,29 @@ packages: is-arrayish: 0.2.1 dev: true - /es-abstract@1.22.1: + /es-abstract@1.22.3: resolution: { - integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==, + integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==, } engines: { node: ">= 0.4" } dependencies: array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.1 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 + hasown: 2.0.0 + internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 @@ -6150,33 +6164,33 @@ packages: is-string: 1.0.7 is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.3 + object-inspect: 1.13.1 object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 - safe-array-concat: 1.0.0 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 dev: true - /es-set-tostringtag@2.0.1: + /es-set-tostringtag@2.0.2: resolution: { - integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, + integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==, } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 + hasown: 2.0.0 dev: true /es-to-primitive@1.2.1: @@ -6254,37 +6268,38 @@ packages: ext: 1.7.0 dev: false - /esbuild@0.19.5: + /esbuild@0.19.10: resolution: { - integrity: sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==, + integrity: sha512-S1Y27QGt/snkNYrRcswgRFqZjaTG5a5xM3EQo97uNBnH505pdzSNe/HLBq1v0RO7iK/ngdbhJB6mDAp0OK+iUA==, } engines: { node: ">=12" } hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.19.5 - "@esbuild/android-arm64": 0.19.5 - "@esbuild/android-x64": 0.19.5 - "@esbuild/darwin-arm64": 0.19.5 - "@esbuild/darwin-x64": 0.19.5 - "@esbuild/freebsd-arm64": 0.19.5 - "@esbuild/freebsd-x64": 0.19.5 - "@esbuild/linux-arm": 0.19.5 - "@esbuild/linux-arm64": 0.19.5 - "@esbuild/linux-ia32": 0.19.5 - "@esbuild/linux-loong64": 0.19.5 - "@esbuild/linux-mips64el": 0.19.5 - "@esbuild/linux-ppc64": 0.19.5 - "@esbuild/linux-riscv64": 0.19.5 - "@esbuild/linux-s390x": 0.19.5 - "@esbuild/linux-x64": 0.19.5 - "@esbuild/netbsd-x64": 0.19.5 - "@esbuild/openbsd-x64": 0.19.5 - "@esbuild/sunos-x64": 0.19.5 - "@esbuild/win32-arm64": 0.19.5 - "@esbuild/win32-ia32": 0.19.5 - "@esbuild/win32-x64": 0.19.5 + "@esbuild/aix-ppc64": 0.19.10 + "@esbuild/android-arm": 0.19.10 + "@esbuild/android-arm64": 0.19.10 + "@esbuild/android-x64": 0.19.10 + "@esbuild/darwin-arm64": 0.19.10 + "@esbuild/darwin-x64": 0.19.10 + "@esbuild/freebsd-arm64": 0.19.10 + "@esbuild/freebsd-x64": 0.19.10 + "@esbuild/linux-arm": 0.19.10 + "@esbuild/linux-arm64": 0.19.10 + "@esbuild/linux-ia32": 0.19.10 + "@esbuild/linux-loong64": 0.19.10 + "@esbuild/linux-mips64el": 0.19.10 + "@esbuild/linux-ppc64": 0.19.10 + "@esbuild/linux-riscv64": 0.19.10 + "@esbuild/linux-s390x": 0.19.10 + "@esbuild/linux-x64": 0.19.10 + "@esbuild/netbsd-x64": 0.19.10 + "@esbuild/openbsd-x64": 0.19.10 + "@esbuild/sunos-x64": 0.19.10 + "@esbuild/win32-arm64": 0.19.10 + "@esbuild/win32-ia32": 0.19.10 + "@esbuild/win32-x64": 0.19.10 dev: true /escalade@3.1.1: @@ -6410,7 +6425,7 @@ packages: hasBin: true dependencies: "@eslint-community/eslint-utils": 4.4.0(eslint@8.56.0) - "@eslint-community/regexpp": 4.8.0 + "@eslint-community/regexpp": 4.10.0 "@eslint/eslintrc": 2.1.4 "@eslint/js": 8.56.0 "@humanwhocodes/config-array": 0.11.13 @@ -6432,9 +6447,9 @@ packages: file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.21.0 + globals: 13.24.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 @@ -6458,8 +6473,8 @@ packages: } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - acorn: 8.10.0 - acorn-jsx: 5.3.2(acorn@8.10.0) + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) eslint-visitor-keys: 3.4.3 dev: true @@ -6600,7 +6615,7 @@ packages: human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.1.0 + npm-run-path: 5.2.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 @@ -6686,10 +6701,10 @@ packages: engines: { node: ">= 4.9.1" } dev: true - /fastq@1.15.0: + /fastq@1.16.0: resolution: { - integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, + integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==, } dependencies: reusify: 1.0.4 @@ -6735,14 +6750,14 @@ packages: flat-cache: 3.2.0 dev: true - /file-entry-cache@7.0.2: + /file-entry-cache@8.0.0: resolution: { - integrity: sha512-TfW7/1iI4Cy7Y8L6iqNdZQVvdXn0f8B4QcIXmkIbtTIe/Okm/nSlHb4IwGzRVOd3WfSieCgvf5cMzEfySAIl0g==, + integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==, } - engines: { node: ">=12.0.0" } + engines: { node: ">=16.0.0" } dependencies: - flat-cache: 3.2.0 + flat-cache: 4.0.0 dev: true /filelist@1.0.4: @@ -6852,10 +6867,22 @@ packages: engines: { node: ^10.12.0 || >=12.0.0 } dependencies: flatted: 3.2.9 - keyv: 4.5.3 + keyv: 4.5.4 rimraf: 3.0.2 dev: true + /flat-cache@4.0.0: + resolution: + { + integrity: sha512-EryKbCE/wxpxKniQlyas6PY1I9vwtF3uCBweX+N8KYTCn3Y12RTGtQAJ/bd5pl7kxUAc8v/R3Ake/N17OZiFqA==, + } + engines: { node: ">=16" } + dependencies: + flatted: 3.2.9 + keyv: 4.5.4 + rimraf: 5.0.5 + dev: true + /flatpickr@4.6.13: resolution: { @@ -6879,6 +6906,17 @@ packages: is-callable: 1.2.7 dev: true + /foreground-child@3.1.1: + resolution: + { + integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==, + } + engines: { node: ">=14" } + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + dev: true + /form-data-encoder@2.1.4: resolution: { @@ -6912,16 +6950,16 @@ packages: readable-stream: 2.3.8 dev: true - /fs-extra@11.1.1: + /fs-extra@11.2.0: resolution: { - integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==, + integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==, } engines: { node: ">=14.14" } dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 dev: true /fs-extra@9.1.0: @@ -6934,7 +6972,7 @@ packages: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 dev: true /fs.realpath@1.0.0: @@ -6962,22 +7000,22 @@ packages: dev: true optional: true - /function-bind@1.1.1: + /function-bind@1.1.2: resolution: { - integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, } - /function.prototype.name@1.1.5: + /function.prototype.name@1.1.6: resolution: { - integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 dev: true @@ -7026,16 +7064,16 @@ packages: engines: { node: ">=18" } dev: true - /get-intrinsic@1.2.1: + /get-intrinsic@1.2.2: resolution: { - integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, + integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, } dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 + hasown: 2.0.0 /get-own-enumerable-property-symbols@3.0.2: resolution: @@ -7075,8 +7113,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true /git-log-parser@1.2.0: @@ -7090,7 +7128,7 @@ packages: split2: 1.0.0 stream-combiner2: 1.1.1 through2: 2.0.5 - traverse: 0.6.7 + traverse: 0.6.8 dev: true /git-raw-commits@2.0.11: @@ -7128,18 +7166,19 @@ packages: is-glob: 4.0.3 dev: true - /glob@7.1.6: + /glob@10.3.10: resolution: { - integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, + integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, } + engines: { node: ">=16 || 14 >=14.17" } + hasBin: true dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.3 + minipass: 7.0.4 + path-scurry: 1.10.1 dev: true /glob@7.2.3: @@ -7222,10 +7261,10 @@ packages: engines: { node: ">=4" } dev: true - /globals@13.21.0: + /globals@13.24.0: resolution: { - integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==, + integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==, } engines: { node: ">=8" } dependencies: @@ -7239,7 +7278,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 dev: true /globby@11.1.0: @@ -7257,20 +7296,6 @@ packages: slash: 3.0.0 dev: true - /globby@13.2.2: - resolution: - { - integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - dependencies: - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.2.4 - merge2: 1.4.1 - slash: 4.0.0 - dev: true - /globby@14.0.0: resolution: { @@ -7280,7 +7305,7 @@ packages: dependencies: "@sindresorhus/merge-streams": 1.0.0 fast-glob: 3.3.2 - ignore: 5.2.4 + ignore: 5.3.0 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -7299,8 +7324,7 @@ packages: integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, } dependencies: - get-intrinsic: 1.2.1 - dev: true + get-intrinsic: 1.2.2 /got@13.0.0: resolution: @@ -7312,11 +7336,11 @@ packages: "@sindresorhus/is": 5.6.0 "@szmarczak/http-timer": 5.0.1 cacheable-lookup: 7.0.0 - cacheable-request: 10.2.13 + cacheable-request: 10.2.14 decompress-response: 6.0.0 form-data-encoder: 2.1.4 get-stream: 6.0.1 - http2-wrapper: 2.2.0 + http2-wrapper: 2.2.1 lowercase-keys: 3.0.0 p-cancelable: 3.0.0 responselike: 3.0.0 @@ -7390,13 +7414,13 @@ packages: engines: { node: ">=8" } dev: true - /has-property-descriptors@1.0.0: + /has-property-descriptors@1.0.1: resolution: { - integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==, } dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 /has-proto@1.0.1: resolution: @@ -7421,14 +7445,22 @@ packages: dependencies: has-symbols: 1.0.3 - /has@1.0.3: + /has@1.0.4: resolution: { - integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==, } engines: { node: ">= 0.4.0" } + dev: false + + /hasown@2.0.0: + resolution: + { + integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, + } + engines: { node: ">= 0.4" } dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 /homedir-polyfill@1.0.3: resolution: @@ -7465,14 +7497,14 @@ packages: lru-cache: 6.0.0 dev: true - /hosted-git-info@7.0.0: + /hosted-git-info@7.0.1: resolution: { - integrity: sha512-ICclEpTLhHj+zCuSb2/usoNXSVkxUSIopre+b1w8NDY9Dntp9LO4vLdHYI336TH8sAqwrRgnSfdkBG2/YpisHA==, + integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==, } engines: { node: ^16.14.0 || >=18.0.0 } dependencies: - lru-cache: 10.0.1 + lru-cache: 10.1.0 dev: true /hpagent@1.2.0: @@ -7511,10 +7543,10 @@ packages: - supports-color dev: true - /http2-wrapper@2.2.0: + /http2-wrapper@2.2.1: resolution: { - integrity: sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==, + integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==, } engines: { node: ">=10.19.0" } dependencies: @@ -7522,10 +7554,10 @@ packages: resolve-alpn: 1.2.1 dev: true - /https-proxy-agent@7.0.1: + /https-proxy-agent@7.0.2: resolution: { - integrity: sha512-Eun8zV0kcYS1g19r78osiQLEFIRspRUDd9tIfBCTBPBeMieF/EsJNL8VI3xOIdYRDEkjQnqOYPsZ2DsWsVsFwQ==, + integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==, } engines: { node: ">= 14" } dependencies: @@ -7594,14 +7626,6 @@ packages: } dev: true - /ignore@5.2.4: - resolution: - { - integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, - } - engines: { node: ">= 4" } - dev: true - /ignore@5.3.0: resolution: { @@ -7621,10 +7645,10 @@ packages: resolve-from: 4.0.0 dev: true - /import-from-esm@1.3.1: + /import-from-esm@1.3.3: resolution: { - integrity: sha512-YltaeDglQ6wDZOC8ZAY2I8vK1Ag4XVbs4GhlvNALWz0ee5V+CMkcBhAKbs1iuJZ3fmfgrKFCDRwliM3OxyQMLA==, + integrity: sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==, } engines: { node: ">=16.20" } dependencies: @@ -7742,15 +7766,15 @@ packages: wrap-ansi: 7.0.0 dev: true - /internal-slot@1.0.5: + /internal-slot@1.0.6: resolution: { - integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, + integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 + hasown: 2.0.0 side-channel: 1.0.4 dev: true @@ -7780,7 +7804,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: false @@ -7790,8 +7814,8 @@ packages: integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true @@ -7828,7 +7852,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true @@ -7847,16 +7871,16 @@ packages: } hasBin: true dependencies: - ci-info: 3.8.0 + ci-info: 3.9.0 dev: true - /is-core-module@2.13.0: + /is-core-module@2.13.1: resolution: { - integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==, + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, } dependencies: - has: 1.0.3 + hasown: 2.0.0 /is-date-object@1.0.5: resolution: @@ -7999,7 +8023,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-regexp@1.0.0: @@ -8016,7 +8040,7 @@ packages: integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-stream@2.0.1: @@ -8072,7 +8096,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - which-typed-array: 1.1.11 + which-typed-array: 1.1.13 dev: true /is-unicode-supported@0.1.0: @@ -8104,7 +8128,7 @@ packages: integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-windows@1.0.2: @@ -8149,6 +8173,18 @@ packages: lodash.uniqby: 4.7.0 dev: true + /jackspeak@2.3.6: + resolution: + { + integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + } + engines: { node: ">=14" } + dependencies: + "@isaacs/cliui": 8.0.2 + optionalDependencies: + "@pkgjs/parseargs": 0.11.0 + dev: true + /jake@10.8.7: resolution: { @@ -8157,7 +8193,7 @@ packages: engines: { node: ">=10" } hasBin: true dependencies: - async: 3.2.4 + async: 3.2.5 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 @@ -8178,15 +8214,15 @@ packages: } engines: { node: ">= 10.13.0" } dependencies: - "@types/node": 20.5.6 + "@types/node": 20.10.5 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true - /jiti@1.19.3: + /jiti@1.21.0: resolution: { - integrity: sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==, + integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, } hasBin: true dev: true @@ -8239,7 +8275,7 @@ packages: } engines: { node: ">=10" } dependencies: - "@babel/runtime": 7.22.11 + "@babel/runtime": 7.23.6 chalk: 4.1.2 pegjs: 0.10.0 dev: true @@ -8258,14 +8294,6 @@ packages: } dev: true - /json-parse-even-better-errors@3.0.0: - resolution: - { - integrity: sha512-iZbGHafX/59r39gPwVPRBGw0QQKnA7tte5pSMrhWOW7swGsVvVTjmfyAV9pNqk8YGT7tRCdxRu8uzcgZwoDooA==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - dev: true - /json-schema-traverse@0.4.1: resolution: { @@ -8316,7 +8344,7 @@ packages: integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, } dependencies: - universalify: 2.0.0 + universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 dev: true @@ -8337,10 +8365,10 @@ packages: engines: { node: ">=0.10.0" } dev: true - /keyv@4.5.3: + /keyv@4.5.4: resolution: { - integrity: sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==, + integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, } dependencies: json-buffer: 3.0.1 @@ -8469,14 +8497,14 @@ packages: wrap-ansi: 9.0.0 dev: true - /lit-element@4.0.1: + /lit-element@4.0.2: resolution: { - integrity: sha512-OxRMJem4HKZt0320HplLkBPoi4KHiEHoPHKd8Lzf07ZQVAOKIjZ32yPLRKRDEolFU1RgrQBfSHQMoxKZ72V3Kw==, + integrity: sha512-/W6WQZUa5VEXwC7H9tbtDMdSs9aWil3Ou8hU6z2cOKWbsm/tXPAcsoaHVEtrDo0zcOIE5GF6QgU55tlGL2Nihg==, } dependencies: "@lit-labs/ssr-dom-shim": 1.1.2 - "@lit/reactive-element": 2.0.1 + "@lit/reactive-element": 2.0.2 lit-html: 3.1.0 dev: false @@ -8486,7 +8514,7 @@ packages: integrity: sha512-FwAjq3iNsaO6SOZXEIpeROlJLUlrbyMkn4iuv4f4u1H40Jw8wkeR/OUXZUHUoiYabGk8Y4Y0F/rgq+R4MrOLmA==, } dependencies: - "@types/trusted-types": 2.0.3 + "@types/trusted-types": 2.0.7 dev: false /lit@3.1.0: @@ -8495,8 +8523,8 @@ packages: integrity: sha512-rzo/hmUqX8zmOdamDAeydfjsGXbbdtAFqMhmocnh2j9aDYqbu0fjXygjCa0T99Od9VQ/2itwaGrjZz/ZELVl7w==, } dependencies: - "@lit/reactive-element": 2.0.1 - lit-element: 4.0.1 + "@lit/reactive-element": 2.0.2 + lit-element: 4.0.2 lit-html: 3.1.0 dev: false @@ -8740,10 +8768,10 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /lru-cache@10.0.1: + /lru-cache@10.1.0: resolution: { - integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==, + integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==, } engines: { node: 14 || >=16.14 } dev: true @@ -8801,21 +8829,21 @@ packages: engines: { node: ">=8" } dev: true - /marked-terminal@6.1.0(marked@9.1.6): + /marked-terminal@6.2.0(marked@9.1.6): resolution: { - integrity: sha512-QaCSF6NV82oo6K0szEnmc65ooDeW0T/Adcyf0fcW+Hto2GT1VADFg8dn1zaeHqzj65fqDH1hMNChGNRaC/lbkA==, + integrity: sha512-ubWhwcBFHnXsjYNsu+Wndpg0zhY4CahSpPlA70PlO0rR9r2sZpkyU+rkCsOWH+KMEkx847UpALON+HWgxowFtw==, } engines: { node: ">=16.0.0" } peerDependencies: - marked: ">=1 <11" + marked: ">=1 <12" dependencies: ansi-escapes: 6.2.0 cardinal: 2.1.1 chalk: 5.3.0 cli-table3: 0.6.3 marked: 9.1.6 - node-emoji: 2.1.0 + node-emoji: 2.1.3 supports-hyperlinks: 3.0.0 dev: true @@ -8866,6 +8894,14 @@ packages: engines: { node: ">=16.10" } dev: true + /meow@13.0.0: + resolution: + { + integrity: sha512-4Hu+75Vo7EOR+8C9RmkabfLijuwd9SrzQ8f0SyC4qZZwU6BlxeOt5ulF3PGCpcMJX4hI+ktpJhea0P6PN1RiWw==, + } + engines: { node: ">=18" } + dev: true + /meow@8.1.2: resolution: { @@ -8873,7 +8909,7 @@ packages: } engines: { node: ">=10" } dependencies: - "@types/minimist": 1.2.2 + "@types/minimist": 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -8928,12 +8964,12 @@ packages: picomatch: 2.3.1 dev: true - /mime@3.0.0: + /mime@4.0.1: resolution: { - integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==, + integrity: sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==, } - engines: { node: ">=10.0.0" } + engines: { node: ">=16" } hasBin: true dev: true @@ -9004,6 +9040,16 @@ packages: brace-expansion: 2.0.1 dev: true + /minimatch@9.0.3: + resolution: + { + integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, + } + engines: { node: ">=16 || 14 >=14.17" } + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist-options@4.1.0: resolution: { @@ -9029,6 +9075,14 @@ packages: integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, } + /minipass@7.0.4: + resolution: + { + integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, + } + engines: { node: ">=16 || 14 >=14.17" } + dev: true + /mitt@3.0.1: resolution: { @@ -9097,13 +9151,14 @@ packages: } dev: false - /node-emoji@2.1.0: + /node-emoji@2.1.3: resolution: { - integrity: sha512-tcsBm9C6FmPN5Wo7OjFi9lgMyJjvkAeirmjR/ax8Ttfqy4N8PoFic26uqFTIgayHPNI5FH4ltUvfh9kHzwcK9A==, + integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==, } + engines: { node: ">=18" } dependencies: - "@sindresorhus/is": 3.1.2 + "@sindresorhus/is": 4.6.0 char-regex: 1.0.2 emojilib: 2.4.0 skin-tone: 2.0.0 @@ -9124,10 +9179,10 @@ packages: whatwg-url: 5.0.0 dev: true - /node-releases@2.0.13: + /node-releases@2.0.14: resolution: { - integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, + integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, } dev: true @@ -9138,7 +9193,7 @@ packages: } dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.4 + resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 dev: true @@ -9151,7 +9206,7 @@ packages: engines: { node: ">=10" } dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.13.0 + is-core-module: 2.13.1 semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true @@ -9163,8 +9218,8 @@ packages: } engines: { node: ^16.14.0 || >=18.0.0 } dependencies: - hosted-git-info: 7.0.0 - is-core-module: 2.13.0 + hosted-git-info: 7.0.1 + is-core-module: 2.13.1 semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true @@ -9203,20 +9258,20 @@ packages: path-key: 3.1.1 dev: true - /npm-run-path@5.1.0: + /npm-run-path@5.2.0: resolution: { - integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, + integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==, } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: path-key: 4.0.0 dev: true - /npm@10.2.3: + /npm@10.2.5: resolution: { - integrity: sha512-GbUui/rHTl0mW8HhJSn4A0Xg89yCR3I9otgJT1i0z1QBPOVlgbh6rlcUTpHT8Gut9O1SJjWRUU0nEcAymhG2tQ==, + integrity: sha512-lXdZ7titEN8CH5YJk9C/aYRU9JeDxQ4d8rwIIDsvH3SMjLjHTukB2CFstMiB30zXs4vCrPN2WH6cDq1yHBeJAw==, } engines: { node: ^18.17.0 || >=20.5.0 } hasBin: true @@ -9319,10 +9374,10 @@ packages: engines: { node: ">= 6" } dev: true - /object-inspect@1.12.3: + /object-inspect@1.13.1: resolution: { - integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, + integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, } /object-is@1.1.5: @@ -9332,8 +9387,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 dev: false /object-keys@1.1.1: @@ -9343,15 +9398,15 @@ packages: } engines: { node: ">= 0.4" } - /object.assign@4.1.4: + /object.assign@4.1.5: resolution: { - integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 dev: true @@ -9425,7 +9480,7 @@ packages: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.9.0 + cli-spinners: 2.9.2 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 @@ -9457,14 +9512,14 @@ packages: engines: { node: ">=12" } dev: true - /p-filter@3.0.0: + /p-filter@4.1.0: resolution: { - integrity: sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==, + integrity: sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } dependencies: - p-map: 5.5.0 + p-map: 7.0.1 dev: true /p-is-promise@3.0.0: @@ -9535,14 +9590,12 @@ packages: p-limit: 3.1.0 dev: true - /p-map@5.5.0: + /p-map@7.0.1: resolution: { - integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==, + integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==, } - engines: { node: ">=12" } - dependencies: - aggregate-error: 4.0.1 + engines: { node: ">=18" } dev: true /p-reduce@2.1.0: @@ -9612,23 +9665,22 @@ packages: } engines: { node: ">=8" } dependencies: - "@babel/code-frame": 7.22.10 + "@babel/code-frame": 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 dev: true - /parse-json@8.0.1: + /parse-json@8.1.0: resolution: { - integrity: sha512-soKUg/q/8bcfuF3+plsbYldE74cVEVEPSC1BUPIGTaX1byXdz6Fo+CVYBdH0jj/5xWsFrNRksl11QkBgHqPQeQ==, + integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==, } engines: { node: ">=18" } dependencies: - "@babel/code-frame": 7.22.13 + "@babel/code-frame": 7.23.5 index-to-position: 0.1.2 - json-parse-even-better-errors: 3.0.0 - type-fest: 4.7.1 + type-fest: 4.9.0 dev: true /parse-passwd@1.0.0: @@ -9703,6 +9755,17 @@ packages: integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, } + /path-scurry@1.10.1: + resolution: + { + integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==, + } + engines: { node: ">=16 || 14 >=14.17" } + dependencies: + lru-cache: 10.1.0 + minipass: 7.0.4 + dev: true + /path-type@4.0.0: resolution: { @@ -9719,15 +9782,15 @@ packages: engines: { node: ">=12" } dev: true - /pdfmake@0.2.7: + /pdfmake@0.2.8: resolution: { - integrity: sha512-ClLpgx30H5G3EDvRW1MrA1Xih6YxEaSgIVFrOyBMgAAt62V+hxsyWAi6JNP7u1Fc5JKYAbpb4RRVw8Rhvmz5cQ==, + integrity: sha512-lI+amfIaUL8CrPhndxFdhIgMj9JB49Sj4DARltKC1gLm/5NsPohZqfB+D+II8HymtPB6eugUFD5oBxmzO57qHA==, } engines: { node: ">=12" } dependencies: "@foliojs-fork/linebreak": 1.1.1 - "@foliojs-fork/pdfkit": 0.13.0 + "@foliojs-fork/pdfkit": 0.14.0 iconv-lite: 0.6.3 xmldoc: 1.3.0 dev: false @@ -9840,7 +9903,7 @@ packages: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-calc@9.0.1(postcss@8.4.32): @@ -9853,7 +9916,7 @@ packages: postcss: ^8.2.2 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 postcss-value-parser: 4.2.0 dev: true @@ -9870,24 +9933,26 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-color-functional-notation@6.0.2(postcss@8.4.32): + /postcss-color-functional-notation@6.0.3(postcss@8.4.32): resolution: { - integrity: sha512-FsjSmlSufuiFBsIqQ++VxFmvX7zKndZpBkHmfXr4wqhvzM92FTEkAh703iqWTl1U3faTgqioIqCbfqdWiFVwtw==, + integrity: sha512-2jBr3H0sk3qGh/3BkmLsOKcYyVfSlM1K2QQYVU7eW5mkg7ZOQ4aU/Rtbh7vJ9FxAfgf8iHRwXBsQkHqUxzTkXw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) + "@csstools/css-tokenizer": 2.2.2 + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 - postcss-value-parser: 4.2.0 dev: true - /postcss-color-hex-alpha@9.0.2(postcss@8.4.32): + /postcss-color-hex-alpha@9.0.3(postcss@8.4.32): resolution: { - integrity: sha512-SfPjgr//VQ/DOCf80STIAsdAs7sbIbxATvVmd+Ec7JvR8onz9pjawhq3BJM3Pie40EE3TyB0P6hft16D33Nlyg==, + integrity: sha512-7sEHU4tAS6htlxun8AB9LDrCXoljxaC34tFVRlYKcvO+18r5fvGiXgv5bQzN40+4gXLCyWSMRK5FK31244WcCA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -9897,10 +9962,10 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-color-rebeccapurple@9.0.1(postcss@8.4.32): + /postcss-color-rebeccapurple@9.0.2(postcss@8.4.32): resolution: { - integrity: sha512-ds4cq5BjRieizVb2PnvbJ0omg9VCo2/KzluvoFZbxuGpsGJ5BQSD93CHBooinEtangCM5YqUOerGDl4xGmOb6Q==, + integrity: sha512-f+RDEAPW2m8UbJWkSpRfV+QxhSaQhDMihI75DVGJJh4oRIoegjheeRtINFJum9D8BqGJcvD4GLjggTvCwZ4zuA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -9919,7 +9984,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.32 @@ -9935,7 +10000,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 postcss: 8.4.32 postcss-value-parser: 4.2.0 dev: true @@ -9949,24 +10014,24 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - "@csstools/cascade-layer-name-parser": 1.0.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/cascade-layer-name-parser": 1.0.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/media-query-list-parser": 2.1.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) + "@csstools/media-query-list-parser": 2.1.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) postcss: 8.4.32 dev: true - /postcss-custom-properties@13.3.2(postcss@8.4.32): + /postcss-custom-properties@13.3.3(postcss@8.4.32): resolution: { - integrity: sha512-2Coszybpo8lpLY24vy2CYv9AasiZ39/bs8Imv0pWMq55Gl8NWzfc24OAo3zIX7rc6uUJAqESnVOMZ6V6lpMjJA==, + integrity: sha512-xLmILb2R83aG4X++iVFg8TWadOlc45xiyFHRZD6Yhhu2igrTHXL6C75AEWqx6k9lxrr9sK5rcfUI9JvTCxBTvA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/cascade-layer-name-parser": 1.0.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/cascade-layer-name-parser": 1.0.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 postcss: 8.4.32 postcss-value-parser: 4.2.0 @@ -9981,24 +10046,24 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - "@csstools/cascade-layer-name-parser": 1.0.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/cascade-layer-name-parser": 1.0.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true - /postcss-dir-pseudo-class@8.0.0(postcss@8.4.32): + /postcss-dir-pseudo-class@8.0.1(postcss@8.4.32): resolution: { - integrity: sha512-Oy5BBi0dWPwij/IA+yDYj+/OBMQ9EPqAzTHeSNUYrUWdll/PRJmcbiUj0MNcsBi681I1gcSTLvMERPaXzdbvJg==, + integrity: sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-discard-comments@6.0.1(postcss@8.4.32): @@ -10049,44 +10114,44 @@ packages: postcss: 8.4.32 dev: true - /postcss-double-position-gradients@5.0.2(postcss@8.4.32): + /postcss-double-position-gradients@5.0.3(postcss@8.4.32): resolution: { - integrity: sha512-KTbvdOOy8z8zb0BTkEg4/1vqlRlApdvjw8/pFoehgQl0WVO+fezDGlvo0B8xRA+XccA7ohkQCULKNsiNOx70Cw==, + integrity: sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 dev: true - /postcss-focus-visible@9.0.0(postcss@8.4.32): + /postcss-focus-visible@9.0.1(postcss@8.4.32): resolution: { - integrity: sha512-zA4TbVaIaT8npZBEROhZmlc+GBKE8AELPHXE7i4TmIUEQhw/P/mSJfY9t6tBzpQ1rABeGtEOHYrW4SboQeONMQ==, + integrity: sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true - /postcss-focus-within@8.0.0(postcss@8.4.32): + /postcss-focus-within@8.0.1(postcss@8.4.32): resolution: { - integrity: sha512-E7+J9nuQzZaA37D/MUZMX1K817RZGDab8qw6pFwzAkDd/QtlWJ9/WTKmzewNiuxzeq6WWY7ATiRePVoDKp+DnA==, + integrity: sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-font-variant@5.0.0(postcss@8.4.32): @@ -10100,10 +10165,10 @@ packages: postcss: 8.4.32 dev: true - /postcss-gap-properties@5.0.0(postcss@8.4.32): + /postcss-gap-properties@5.0.1(postcss@8.4.32): resolution: { - integrity: sha512-YjsEEL6890P7MCv6fch6Am1yq0EhQCJMXyT4LBohiu87+4/WqR7y5W3RIv53WdA901hhytgRvjlrAhibhW4qsA==, + integrity: sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -10112,10 +10177,10 @@ packages: postcss: 8.4.32 dev: true - /postcss-image-set-function@6.0.1(postcss@8.4.32): + /postcss-image-set-function@6.0.2(postcss@8.4.32): resolution: { - integrity: sha512-VlZncC9hhZ5tg0JllY4g6Z28BeoPO8DIkelioEEkXL0AA0IORlqYpTi2L8TUnl4YQrlwvBgxVy+mdZJw5R/cIQ==, + integrity: sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -10137,7 +10202,7 @@ packages: postcss: 8.4.32 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.4 + resolve: 1.22.8 dev: true /postcss-js@4.0.1(postcss@8.4.32): @@ -10153,26 +10218,26 @@ packages: postcss: 8.4.32 dev: true - /postcss-lab-function@6.0.7(postcss@8.4.32): + /postcss-lab-function@6.0.8(postcss@8.4.32): resolution: { - integrity: sha512-4d1lhDVPukHFqkMv4G5vVcK+tgY52vwb5uR1SWKOaO5389r2q8fMxBWuXSW+YtbCOEGP0/X9KERi9E9le2pJuw==, + integrity: sha512-agYs7R9Z5gnX837fCkH8TEQIHdhyDsMPPnpuuENt/dxoDVAykBaqbdxIN4DagOj+ZQo20iRNNJeY3MsFcdI6Sg==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: - "@csstools/css-color-parser": 1.4.0(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-color-parser": 1.5.0(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) postcss: 8.4.32 dev: true - /postcss-load-config@4.0.1(postcss@8.4.32): + /postcss-load-config@4.0.2(postcss@8.4.32): resolution: { - integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==, + integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==, } engines: { node: ">= 14" } peerDependencies: @@ -10184,15 +10249,15 @@ packages: ts-node: optional: true dependencies: - lilconfig: 2.1.0 + lilconfig: 3.0.0 postcss: 8.4.32 yaml: 2.3.4 dev: true - /postcss-logical@7.0.0(postcss@8.4.32): + /postcss-logical@7.0.1(postcss@8.4.32): resolution: { - integrity: sha512-zYf3vHkoW82f5UZTEXChTJvH49Yl9X37axTZsJGxrCG2kOUwtaAoz9E7tqYg0lsIoJLybaL8fk/2mOi81zVIUw==, + integrity: sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -10225,11 +10290,11 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 caniuse-api: 3.0.0 cssnano-utils: 4.0.1(postcss@8.4.32) postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-minify-font-values@6.0.1(postcss@8.4.32): @@ -10269,7 +10334,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 cssnano-utils: 4.0.1(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 @@ -10285,7 +10350,7 @@ packages: postcss: ^8.4.31 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-nested@5.0.6(postcss@8.4.32): @@ -10298,7 +10363,7 @@ packages: postcss: ^8.2.14 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: false /postcss-nested@6.0.1(postcss@8.4.32): @@ -10311,7 +10376,7 @@ packages: postcss: ^8.2.14 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-nesting@12.0.2(postcss@8.4.32): @@ -10323,9 +10388,9 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - "@csstools/selector-specificity": 3.0.1(postcss-selector-parser@6.0.13) + "@csstools/selector-specificity": 3.0.1(postcss-selector-parser@6.0.14) postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-normalize-charset@6.0.1(postcss@8.4.32): @@ -10414,7 +10479,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 postcss: 8.4.32 postcss-value-parser: 4.2.0 dev: true @@ -10471,10 +10536,10 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-overflow-shorthand@5.0.0(postcss@8.4.32): + /postcss-overflow-shorthand@5.0.1(postcss@8.4.32): resolution: { - integrity: sha512-2rlxDyeSics/hC2FuMdPnWiP9WUPZ5x7FTuArXLFVpaSQ2woPSfZS4RD59HuEokbZhs/wPUQJ1E3MT6zVv94MQ==, + integrity: sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -10495,10 +10560,10 @@ packages: postcss: 8.4.32 dev: true - /postcss-place@9.0.0(postcss@8.4.32): + /postcss-place@9.0.1(postcss@8.4.32): resolution: { - integrity: sha512-qLEPD9VPH5opDVemwmRaujODF9nExn24VOC3ghgVLEvfYN7VZLwJHes0q/C9YR5hI2UC3VgBE8Wkdp1TxCXhtg==, + integrity: sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: @@ -10517,80 +10582,80 @@ packages: peerDependencies: postcss: ^8.4 dependencies: - "@csstools/postcss-cascade-layers": 4.0.1(postcss@8.4.32) - "@csstools/postcss-color-function": 3.0.7(postcss@8.4.32) - "@csstools/postcss-color-mix-function": 2.0.7(postcss@8.4.32) - "@csstools/postcss-exponential-functions": 1.0.1(postcss@8.4.32) - "@csstools/postcss-font-format-keywords": 3.0.0(postcss@8.4.32) - "@csstools/postcss-gamut-mapping": 1.0.0(postcss@8.4.32) - "@csstools/postcss-gradients-interpolation-method": 4.0.7(postcss@8.4.32) - "@csstools/postcss-hwb-function": 3.0.6(postcss@8.4.32) - "@csstools/postcss-ic-unit": 3.0.2(postcss@8.4.32) - "@csstools/postcss-initial": 1.0.0(postcss@8.4.32) - "@csstools/postcss-is-pseudo-class": 4.0.3(postcss@8.4.32) - "@csstools/postcss-logical-float-and-clear": 2.0.0(postcss@8.4.32) - "@csstools/postcss-logical-overflow": 1.0.0(postcss@8.4.32) - "@csstools/postcss-logical-overscroll-behavior": 1.0.0(postcss@8.4.32) - "@csstools/postcss-logical-resize": 2.0.0(postcss@8.4.32) - "@csstools/postcss-logical-viewport-units": 2.0.3(postcss@8.4.32) - "@csstools/postcss-media-minmax": 1.1.0(postcss@8.4.32) - "@csstools/postcss-media-queries-aspect-ratio-number-values": 2.0.3(postcss@8.4.32) - "@csstools/postcss-nested-calc": 3.0.0(postcss@8.4.32) - "@csstools/postcss-normalize-display-values": 3.0.1(postcss@8.4.32) - "@csstools/postcss-oklab-function": 3.0.7(postcss@8.4.32) - "@csstools/postcss-progressive-custom-properties": 3.0.2(postcss@8.4.32) - "@csstools/postcss-relative-color-syntax": 2.0.7(postcss@8.4.32) - "@csstools/postcss-scope-pseudo-class": 3.0.0(postcss@8.4.32) - "@csstools/postcss-stepped-value-functions": 3.0.2(postcss@8.4.32) - "@csstools/postcss-text-decoration-shorthand": 3.0.3(postcss@8.4.32) - "@csstools/postcss-trigonometric-functions": 3.0.2(postcss@8.4.32) - "@csstools/postcss-unset-value": 3.0.0(postcss@8.4.32) + "@csstools/postcss-cascade-layers": 4.0.2(postcss@8.4.32) + "@csstools/postcss-color-function": 3.0.8(postcss@8.4.32) + "@csstools/postcss-color-mix-function": 2.0.8(postcss@8.4.32) + "@csstools/postcss-exponential-functions": 1.0.2(postcss@8.4.32) + "@csstools/postcss-font-format-keywords": 3.0.1(postcss@8.4.32) + "@csstools/postcss-gamut-mapping": 1.0.1(postcss@8.4.32) + "@csstools/postcss-gradients-interpolation-method": 4.0.8(postcss@8.4.32) + "@csstools/postcss-hwb-function": 3.0.7(postcss@8.4.32) + "@csstools/postcss-ic-unit": 3.0.3(postcss@8.4.32) + "@csstools/postcss-initial": 1.0.1(postcss@8.4.32) + "@csstools/postcss-is-pseudo-class": 4.0.4(postcss@8.4.32) + "@csstools/postcss-logical-float-and-clear": 2.0.1(postcss@8.4.32) + "@csstools/postcss-logical-overflow": 1.0.1(postcss@8.4.32) + "@csstools/postcss-logical-overscroll-behavior": 1.0.1(postcss@8.4.32) + "@csstools/postcss-logical-resize": 2.0.1(postcss@8.4.32) + "@csstools/postcss-logical-viewport-units": 2.0.4(postcss@8.4.32) + "@csstools/postcss-media-minmax": 1.1.1(postcss@8.4.32) + "@csstools/postcss-media-queries-aspect-ratio-number-values": 2.0.4(postcss@8.4.32) + "@csstools/postcss-nested-calc": 3.0.1(postcss@8.4.32) + "@csstools/postcss-normalize-display-values": 3.0.2(postcss@8.4.32) + "@csstools/postcss-oklab-function": 3.0.8(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 3.0.3(postcss@8.4.32) + "@csstools/postcss-relative-color-syntax": 2.0.8(postcss@8.4.32) + "@csstools/postcss-scope-pseudo-class": 3.0.1(postcss@8.4.32) + "@csstools/postcss-stepped-value-functions": 3.0.3(postcss@8.4.32) + "@csstools/postcss-text-decoration-shorthand": 3.0.4(postcss@8.4.32) + "@csstools/postcss-trigonometric-functions": 3.0.3(postcss@8.4.32) + "@csstools/postcss-unset-value": 3.0.1(postcss@8.4.32) autoprefixer: 10.4.16(postcss@8.4.32) - browserslist: 4.22.1 - css-blank-pseudo: 6.0.0(postcss@8.4.32) - css-has-pseudo: 6.0.0(postcss@8.4.32) - css-prefers-color-scheme: 9.0.0(postcss@8.4.32) - cssdb: 7.9.0 + browserslist: 4.22.2 + css-blank-pseudo: 6.0.1(postcss@8.4.32) + css-has-pseudo: 6.0.1(postcss@8.4.32) + css-prefers-color-scheme: 9.0.1(postcss@8.4.32) + cssdb: 7.10.0 postcss: 8.4.32 postcss-attribute-case-insensitive: 6.0.2(postcss@8.4.32) postcss-clamp: 4.1.0(postcss@8.4.32) - postcss-color-functional-notation: 6.0.2(postcss@8.4.32) - postcss-color-hex-alpha: 9.0.2(postcss@8.4.32) - postcss-color-rebeccapurple: 9.0.1(postcss@8.4.32) + postcss-color-functional-notation: 6.0.3(postcss@8.4.32) + postcss-color-hex-alpha: 9.0.3(postcss@8.4.32) + postcss-color-rebeccapurple: 9.0.2(postcss@8.4.32) postcss-custom-media: 10.0.2(postcss@8.4.32) - postcss-custom-properties: 13.3.2(postcss@8.4.32) + postcss-custom-properties: 13.3.3(postcss@8.4.32) postcss-custom-selectors: 7.1.6(postcss@8.4.32) - postcss-dir-pseudo-class: 8.0.0(postcss@8.4.32) - postcss-double-position-gradients: 5.0.2(postcss@8.4.32) - postcss-focus-visible: 9.0.0(postcss@8.4.32) - postcss-focus-within: 8.0.0(postcss@8.4.32) + postcss-dir-pseudo-class: 8.0.1(postcss@8.4.32) + postcss-double-position-gradients: 5.0.3(postcss@8.4.32) + postcss-focus-visible: 9.0.1(postcss@8.4.32) + postcss-focus-within: 8.0.1(postcss@8.4.32) postcss-font-variant: 5.0.0(postcss@8.4.32) - postcss-gap-properties: 5.0.0(postcss@8.4.32) - postcss-image-set-function: 6.0.1(postcss@8.4.32) - postcss-lab-function: 6.0.7(postcss@8.4.32) - postcss-logical: 7.0.0(postcss@8.4.32) + postcss-gap-properties: 5.0.1(postcss@8.4.32) + postcss-image-set-function: 6.0.2(postcss@8.4.32) + postcss-lab-function: 6.0.8(postcss@8.4.32) + postcss-logical: 7.0.1(postcss@8.4.32) postcss-nesting: 12.0.2(postcss@8.4.32) postcss-opacity-percentage: 2.0.0(postcss@8.4.32) - postcss-overflow-shorthand: 5.0.0(postcss@8.4.32) + postcss-overflow-shorthand: 5.0.1(postcss@8.4.32) postcss-page-break: 3.0.4(postcss@8.4.32) - postcss-place: 9.0.0(postcss@8.4.32) - postcss-pseudo-class-any-link: 9.0.0(postcss@8.4.32) + postcss-place: 9.0.1(postcss@8.4.32) + postcss-pseudo-class-any-link: 9.0.1(postcss@8.4.32) postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.32) postcss-selector-not: 7.0.1(postcss@8.4.32) postcss-value-parser: 4.2.0 dev: true - /postcss-pseudo-class-any-link@9.0.0(postcss@8.4.32): + /postcss-pseudo-class-any-link@9.0.1(postcss@8.4.32): resolution: { - integrity: sha512-QNCYIL98VKFKY6HGDEJpF6+K/sg9bxcUYnOmNHJxZS5wsFDFaVoPeG68WAuhsqwbIBSo/b9fjEnTwY2mTSD+uA==, + integrity: sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q==, } engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-reduce-initial@6.0.1(postcss@8.4.32): @@ -10602,7 +10667,7 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 caniuse-api: 3.0.0 postcss: 8.4.32 dev: true @@ -10674,7 +10739,7 @@ packages: postcss: ^8.4 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-selector-parser@6.0.10: @@ -10688,10 +10753,10 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-selector-parser@6.0.13: + /postcss-selector-parser@6.0.14: resolution: { - integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==, + integrity: sha512-65xXYsT40i9GyWzlHQ5ShZoK7JZdySeOozi/tz2EezDo6c04q6+ckYMeoY7idaie1qp2dT5KoYQ2yky6JuoHnA==, } engines: { node: ">=4" } dependencies: @@ -10722,7 +10787,7 @@ packages: postcss: ^8.4.31 dependencies: postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true /postcss-value-parser@4.2.0: @@ -10834,10 +10899,10 @@ packages: } dev: true - /punycode@2.3.0: + /punycode@2.3.1: resolution: { - integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, } engines: { node: ">=6" } dev: true @@ -10926,8 +10991,8 @@ packages: deprecated: Renamed to read-package-up dependencies: find-up-simple: 1.0.0 - read-pkg: 9.0.0 - type-fest: 4.7.1 + read-pkg: 9.0.1 + type-fest: 4.9.0 dev: true /read-pkg-up@7.0.1: @@ -10955,17 +11020,18 @@ packages: type-fest: 0.6.0 dev: true - /read-pkg@9.0.0: + /read-pkg@9.0.1: resolution: { - integrity: sha512-SBoBio4xhJmlF4xs9IBliWZGSbDAnrOfQkLGL7xB+RYEUZNAN2LlNkzO45B7gc7c2dLMX987bhHAaJ/LG3efeQ==, + integrity: sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==, } engines: { node: ">=18" } dependencies: "@types/normalize-package-data": 2.4.4 normalize-package-data: 6.0.0 - parse-json: 8.0.1 - type-fest: 4.7.1 + parse-json: 8.1.0 + type-fest: 4.9.0 + unicorn-magic: 0.1.0 dev: true /readable-stream@2.3.8: @@ -11030,13 +11096,13 @@ packages: integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==, } dependencies: - "@babel/runtime": 7.22.11 + "@babel/runtime": 7.23.6 dev: false - /regenerate-unicode-properties@10.1.0: + /regenerate-unicode-properties@10.1.1: resolution: { - integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==, + integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==, } engines: { node: ">=4" } dependencies: @@ -11050,10 +11116,10 @@ packages: } dev: true - /regenerator-runtime@0.14.0: + /regenerator-runtime@0.14.1: resolution: { - integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, } /regenerator-transform@0.15.2: @@ -11062,19 +11128,19 @@ packages: integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, } dependencies: - "@babel/runtime": 7.22.11 + "@babel/runtime": 7.23.6 dev: true - /regexp.prototype.flags@1.5.0: + /regexp.prototype.flags@1.5.1: resolution: { - integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, + integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 /regexpu-core@5.3.2: resolution: @@ -11085,7 +11151,7 @@ packages: dependencies: "@babel/regjsgen": 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 @@ -11192,14 +11258,14 @@ packages: } dev: false - /resolve@1.22.4: + /resolve@1.22.8: resolution: { - integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==, + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, } hasBin: true dependencies: - is-core-module: 2.13.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -11268,6 +11334,17 @@ packages: glob: 7.2.3 dev: true + /rimraf@5.0.5: + resolution: + { + integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==, + } + engines: { node: ">=14" } + hasBin: true + dependencies: + glob: 10.3.10 + dev: true + /rollup-plugin-terser@7.0.2(rollup@2.79.1): resolution: { @@ -11277,11 +11354,11 @@ packages: peerDependencies: rollup: ^2.0.0 dependencies: - "@babel/code-frame": 7.22.10 + "@babel/code-frame": 7.23.5 jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 - terser: 5.19.2 + terser: 5.26.0 dev: true /rollup@2.79.1: @@ -11295,26 +11372,27 @@ packages: fsevents: 2.3.3 dev: true - /rollup@4.4.1: + /rollup@4.9.1: resolution: { - integrity: sha512-idZzrUpWSblPJX66i+GzrpjKE3vbYrlWirUHteoAbjKReZwa0cohAErOYA5efoMmNCdvG9yrJS+w9Kl6csaH4w==, + integrity: sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw==, } engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.4.1 - "@rollup/rollup-android-arm64": 4.4.1 - "@rollup/rollup-darwin-arm64": 4.4.1 - "@rollup/rollup-darwin-x64": 4.4.1 - "@rollup/rollup-linux-arm-gnueabihf": 4.4.1 - "@rollup/rollup-linux-arm64-gnu": 4.4.1 - "@rollup/rollup-linux-arm64-musl": 4.4.1 - "@rollup/rollup-linux-x64-gnu": 4.4.1 - "@rollup/rollup-linux-x64-musl": 4.4.1 - "@rollup/rollup-win32-arm64-msvc": 4.4.1 - "@rollup/rollup-win32-ia32-msvc": 4.4.1 - "@rollup/rollup-win32-x64-msvc": 4.4.1 + "@rollup/rollup-android-arm-eabi": 4.9.1 + "@rollup/rollup-android-arm64": 4.9.1 + "@rollup/rollup-darwin-arm64": 4.9.1 + "@rollup/rollup-darwin-x64": 4.9.1 + "@rollup/rollup-linux-arm-gnueabihf": 4.9.1 + "@rollup/rollup-linux-arm64-gnu": 4.9.1 + "@rollup/rollup-linux-arm64-musl": 4.9.1 + "@rollup/rollup-linux-riscv64-gnu": 4.9.1 + "@rollup/rollup-linux-x64-gnu": 4.9.1 + "@rollup/rollup-linux-x64-musl": 4.9.1 + "@rollup/rollup-win32-arm64-msvc": 4.9.1 + "@rollup/rollup-win32-ia32-msvc": 4.9.1 + "@rollup/rollup-win32-x64-msvc": 4.9.1 fsevents: 2.3.3 dev: true @@ -11354,15 +11432,15 @@ packages: tslib: 2.6.2 dev: true - /safe-array-concat@1.0.0: + /safe-array-concat@1.0.1: resolution: { - integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==, + integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==, } engines: { node: ">=0.4" } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 isarray: 2.0.5 dev: true @@ -11386,8 +11464,8 @@ packages: integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 dev: true @@ -11397,10 +11475,10 @@ packages: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - /sax@1.2.4: + /sax@1.3.0: resolution: { - integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==, + integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==, } dev: false @@ -11429,8 +11507,8 @@ packages: dependencies: "@semantic-release/commit-analyzer": 11.1.0(semantic-release@22.0.12) "@semantic-release/error": 4.0.0 - "@semantic-release/github": 9.0.4(semantic-release@22.0.12) - "@semantic-release/npm": 11.0.1(semantic-release@22.0.12) + "@semantic-release/github": 9.2.6(semantic-release@22.0.12) + "@semantic-release/npm": 11.0.2(semantic-release@22.0.12) "@semantic-release/release-notes-generator": 12.1.0(semantic-release@22.0.12) aggregate-error: 5.0.0 cosmiconfig: 8.3.6(typescript@5.3.3) @@ -11442,11 +11520,11 @@ packages: get-stream: 6.0.1 git-log-parser: 1.2.0 hook-std: 3.0.0 - hosted-git-info: 7.0.0 - import-from-esm: 1.3.1 + hosted-git-info: 7.0.1 + import-from-esm: 1.3.3 lodash-es: 4.17.21 marked: 9.1.6 - marked-terminal: 6.1.0(marked@9.1.6) + marked-terminal: 6.2.0(marked@9.1.6) micromatch: 4.0.5 p-each-series: 3.0.0 p-reduce: 3.0.0 @@ -11522,6 +11600,29 @@ packages: } dev: true + /set-function-length@1.1.1: + resolution: + { + integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + + /set-function-name@2.0.1: + resolution: + { + integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + /shallow-copy@0.0.1: resolution: { @@ -11553,9 +11654,9 @@ packages: integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 dev: true /signal-exit@3.0.7: @@ -11603,14 +11704,6 @@ packages: engines: { node: ">=8" } dev: true - /slash@4.0.0: - resolution: - { - integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, - } - engines: { node: ">=12" } - dev: true - /slash@5.1.0: resolution: { @@ -11728,7 +11821,7 @@ packages: } dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 dev: true /spdx-exceptions@2.3.0: @@ -11745,13 +11838,13 @@ packages: } dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 dev: true - /spdx-license-ids@3.0.13: + /spdx-license-ids@3.0.16: resolution: { - integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==, + integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==, } dev: true @@ -11809,10 +11902,10 @@ packages: convert-source-map: 1.9.0 duplexer2: 0.1.4 escodegen: 1.14.3 - has: 1.0.3 + has: 1.0.4 magic-string: 0.25.1 merge-source-map: 1.0.4 - object-inspect: 1.12.3 + object-inspect: 1.13.1 readable-stream: 2.3.8 scope-analyzer: 2.1.2 shallow-copy: 0.0.1 @@ -11857,6 +11950,18 @@ packages: strip-ansi: 6.0.1 dev: true + /string-width@5.1.2: + resolution: + { + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: { node: ">=12" } + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + dev: true + /string-width@7.0.0: resolution: { @@ -11869,54 +11974,55 @@ packages: strip-ansi: 7.1.0 dev: true - /string.prototype.matchall@4.0.8: + /string.prototype.matchall@4.0.10: resolution: { - integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, + integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 side-channel: 1.0.4 dev: true - /string.prototype.trim@1.2.7: + /string.prototype.trim@1.2.8: resolution: { - integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, + integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimend@1.0.6: + /string.prototype.trimend@1.0.7: resolution: { - integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, + integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimstart@1.0.6: + /string.prototype.trimstart@1.0.7: resolution: { - integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, + integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.22.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /string_decoder@1.1.1: @@ -12050,12 +12156,12 @@ packages: peerDependencies: postcss: ^8.4.31 dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 dev: true - /stylelint-config-recommended@14.0.0(stylelint@16.0.2): + /stylelint-config-recommended@14.0.0(stylelint@16.1.0): resolution: { integrity: sha512-jSkx290CglS8StmrLp2TxAppIajzIBZKYm3IxT89Kg6fGlxbPiTiyH9PS5YUuVAFwaJLl1ikiXX0QWjI0jmgZQ==, @@ -12064,34 +12170,34 @@ packages: peerDependencies: stylelint: ^16.0.0 dependencies: - stylelint: 16.0.2(typescript@5.3.3) + stylelint: 16.1.0(typescript@5.3.3) dev: true - /stylelint-config-standard@35.0.0(stylelint@16.0.2): + /stylelint-config-standard@36.0.0(stylelint@16.1.0): resolution: { - integrity: sha512-JyQrNZk2BZwVKFauGGxW2U6RuhIfQ4XoHHo+rBzMHcAkLnwI/knpszwXjzxiMgSfcxbZBckM7Vq4LHoANTR85g==, + integrity: sha512-3Kjyq4d62bYFp/Aq8PMKDwlgUyPU4nacXsjDLWJdNPRUgpuxALu1KnlAHIj36cdtxViVhXexZij65yM0uNIHug==, } engines: { node: ">=18.12.0" } peerDependencies: - stylelint: ^16.0.0 + stylelint: ^16.1.0 dependencies: - stylelint: 16.0.2(typescript@5.3.3) - stylelint-config-recommended: 14.0.0(stylelint@16.0.2) + stylelint: 16.1.0(typescript@5.3.3) + stylelint-config-recommended: 14.0.0(stylelint@16.1.0) dev: true - /stylelint@16.0.2(typescript@5.3.3): + /stylelint@16.1.0(typescript@5.3.3): resolution: { - integrity: sha512-SxA/rg3VWxdoHZlW0nmVueWO1E7TAKW4W6mmA3iTxxEF9bIeQdFZu2oiBlQYyNe1pGnOamOqo2XYnI7cs5Bgow==, + integrity: sha512-Sh1rRV0lN1qxz/QsuuooLWsIZ/ona7NKw/fRZd6y6PyXYdD2W0EAzJ8yJcwSx4Iw/muz0CF09VZ+z4EiTAcKmg==, } engines: { node: ">=18.12.0" } hasBin: true dependencies: - "@csstools/css-parser-algorithms": 2.3.2(@csstools/css-tokenizer@2.2.2) + "@csstools/css-parser-algorithms": 2.4.0(@csstools/css-tokenizer@2.2.2) "@csstools/css-tokenizer": 2.2.2 - "@csstools/media-query-list-parser": 2.1.5(@csstools/css-parser-algorithms@2.3.2)(@csstools/css-tokenizer@2.2.2) - "@csstools/selector-specificity": 3.0.0(postcss-selector-parser@6.0.13) + "@csstools/media-query-list-parser": 2.1.6(@csstools/css-parser-algorithms@2.4.0)(@csstools/css-tokenizer@2.2.2) + "@csstools/selector-specificity": 3.0.1(postcss-selector-parser@6.0.14) balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 9.0.0(typescript@5.3.3) @@ -12100,7 +12206,7 @@ packages: debug: 4.3.4 fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 - file-entry-cache: 7.0.2 + file-entry-cache: 8.0.0 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 @@ -12110,14 +12216,14 @@ packages: is-plain-object: 5.0.0 known-css-properties: 0.29.0 mathml-tag-names: 2.1.3 - meow: 12.1.1 + meow: 13.0.0 micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 postcss: 8.4.32 postcss-resolve-nested-selector: 0.1.1 postcss-safe-parser: 7.0.0(postcss@8.4.32) - postcss-selector-parser: 6.0.13 + postcss-selector-parser: 6.0.14 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 @@ -12131,17 +12237,17 @@ packages: - typescript dev: true - /sucrase@3.34.0: + /sucrase@3.35.0: resolution: { - integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==, + integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==, } - engines: { node: ">=8" } + engines: { node: ">=16 || 14 >=14.17" } hasBin: true dependencies: "@jridgewell/gen-mapping": 0.3.3 commander: 4.1.1 - glob: 7.1.6 + glob: 10.3.10 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -12240,7 +12346,7 @@ packages: fast-glob: 3.3.2 glob-parent: 6.0.2 is-glob: 4.0.3 - jiti: 1.19.3 + jiti: 1.21.0 lilconfig: 2.1.0 micromatch: 4.0.5 normalize-path: 3.0.0 @@ -12249,11 +12355,11 @@ packages: postcss: 8.4.32 postcss-import: 15.1.0(postcss@8.4.32) postcss-js: 4.0.1(postcss@8.4.32) - postcss-load-config: 4.0.1(postcss@8.4.32) + postcss-load-config: 4.0.2(postcss@8.4.32) postcss-nested: 6.0.1(postcss@8.4.32) - postcss-selector-parser: 6.0.13 - resolve: 1.22.4 - sucrase: 3.34.0 + postcss-selector-parser: 6.0.14 + resolve: 1.22.8 + sucrase: 3.35.0 transitivePeerDependencies: - ts-node dev: true @@ -12300,16 +12406,16 @@ packages: unique-string: 3.0.0 dev: true - /terser@5.19.2: + /terser@5.26.0: resolution: { - integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==, + integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==, } engines: { node: ">=10" } hasBin: true dependencies: "@jridgewell/source-map": 0.3.5 - acorn: 8.10.0 + acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 dev: true @@ -12434,14 +12540,15 @@ packages: integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==, } dependencies: - punycode: 2.3.0 + punycode: 2.3.1 dev: true - /traverse@0.6.7: + /traverse@0.6.8: resolution: { - integrity: sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==, + integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==, } + engines: { node: ">= 0.4" } dev: true /trim-newlines@3.0.1: @@ -12452,10 +12559,10 @@ packages: engines: { node: ">=8" } dev: true - /ts-api-utils@1.0.2(typescript@5.3.3): + /ts-api-utils@1.0.3(typescript@5.3.3): resolution: { - integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==, + integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==, } engines: { node: ">=16.13.0" } peerDependencies: @@ -12576,10 +12683,10 @@ packages: engines: { node: ">=14.16" } dev: true - /type-fest@4.7.1: + /type-fest@4.9.0: resolution: { - integrity: sha512-iWr8RUmzAJRfhZugX9O7nZE6pCxDU8CZ3QxsLuTnGcBLJpCaP2ll3s4eMTBoFnU/CeXY/5rfQSuAEsTGJO4y8A==, + integrity: sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==, } engines: { node: ">=16" } dev: true @@ -12605,8 +12712,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true @@ -12617,7 +12724,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 @@ -12631,7 +12738,7 @@ packages: engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 is-typed-array: 1.1.12 @@ -12643,7 +12750,7 @@ packages: integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 is-typed-array: 1.1.12 dev: true @@ -12681,7 +12788,7 @@ packages: integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -12786,17 +12893,17 @@ packages: crypto-random-string: 4.0.0 dev: true - /universal-user-agent@6.0.0: + /universal-user-agent@6.0.1: resolution: { - integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==, + integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==, } dev: true - /universalify@2.0.0: + /universalify@2.0.1: resolution: { - integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, } engines: { node: ">= 10.0.0" } dev: true @@ -12809,7 +12916,7 @@ packages: engines: { node: ">=4" } dev: true - /update-browserslist-db@1.0.13(browserslist@4.22.1): + /update-browserslist-db@1.0.13(browserslist@4.22.2): resolution: { integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, @@ -12818,7 +12925,7 @@ packages: peerDependencies: browserslist: ">= 4.21.0" dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 escalade: 3.1.1 picocolors: 1.0.0 dev: true @@ -12829,7 +12936,7 @@ packages: integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, } dependencies: - punycode: 2.3.0 + punycode: 2.3.1 dev: true /url-join@4.0.1: @@ -12877,14 +12984,14 @@ packages: debug: 4.3.4 fast-glob: 3.3.2 pretty-bytes: 6.1.1 - vite: 5.0.10(@types/node@18.18.9) + vite: 5.0.10(@types/node@18.19.3) workbox-build: 7.0.0 workbox-window: 7.0.0 transitivePeerDependencies: - supports-color dev: true - /vite@5.0.10(@types/node@18.18.9): + /vite@5.0.10(@types/node@18.19.3): resolution: { integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==, @@ -12915,10 +13022,10 @@ packages: terser: optional: true dependencies: - "@types/node": 18.18.9 - esbuild: 0.19.5 + "@types/node": 18.19.3 + esbuild: 0.19.10 postcss: 8.4.32 - rollup: 4.4.1 + rollup: 4.9.1 optionalDependencies: fsevents: 2.3.3 dev: true @@ -12930,10 +13037,10 @@ packages: } dev: false - /wavesurfer.js@7.5.3: + /wavesurfer.js@7.6.0: resolution: { - integrity: sha512-nYK6svXBJaQAuIOa9YQ69njwRs8OnD1FkGE0uVRVuci2STQGsaEVJg13NEr3X02lXAh1ggllwqbh3JLcpG9c9A==, + integrity: sha512-fRGgzdr7QfWuiELWHuaoiXO3WXhBTejBSX6ca41onLmbvEexFWbNRX89aeHDLF+72Gcd5NLqFjxt/0Pc808JBQ==, } dev: false @@ -13001,15 +13108,15 @@ packages: } dev: true - /which-typed-array@1.1.11: + /which-typed-array@1.1.13: resolution: { - integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==, + integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, } engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 @@ -13077,10 +13184,10 @@ packages: engines: { node: ">=16.0.0" } dependencies: "@apideck/better-ajv-errors": 0.3.6(ajv@8.12.0) - "@babel/core": 7.22.11 - "@babel/preset-env": 7.22.10(@babel/core@7.22.11) - "@babel/runtime": 7.22.11 - "@rollup/plugin-babel": 5.3.1(@babel/core@7.22.11)(rollup@2.79.1) + "@babel/core": 7.23.6 + "@babel/preset-env": 7.23.6(@babel/core@7.23.6) + "@babel/runtime": 7.23.6 + "@rollup/plugin-babel": 5.3.1(@babel/core@7.23.6)(rollup@2.79.1) "@rollup/plugin-node-resolve": 11.2.1(rollup@2.79.1) "@rollup/plugin-replace": 2.4.2(rollup@2.79.1) "@surma/rollup-plugin-off-main-thread": 2.2.3 @@ -13240,7 +13347,7 @@ packages: integrity: sha512-j7P/bsAWE/a7sxqTzXo3P2ALb1reTfZdvVp6OJ/uLr/C2kZAMvjeWGm8V4htQhor7DOvYg0sSbFN2+flT5U0qA==, } dependencies: - "@types/trusted-types": 2.0.3 + "@types/trusted-types": 2.0.7 workbox-core: 7.0.0 dev: true @@ -13268,6 +13375,18 @@ packages: strip-ansi: 6.0.1 dev: true + /wrap-ansi@8.1.0: + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: { node: ">=12" } + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + dev: true + /wrap-ansi@9.0.0: resolution: { @@ -13322,7 +13441,7 @@ packages: integrity: sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==, } dependencies: - sax: 1.2.4 + sax: 1.3.0 dev: false /xtend@4.0.2: diff --git a/spark b/spark index f2bf19f4..e8ca6d30 100644 --- a/spark +++ b/spark @@ -39,7 +39,7 @@ if (version_compare(PHP_VERSION, $minPhpVersion, '<')) { } // We want errors to be shown when using it from the CLI. -error_reporting(-1); +error_reporting(E_ALL); ini_set('display_errors', '1'); /**