diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index cff4e85e..00000000 --- a/.eslintrc.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "env": { - "browser": true, - "es2020": true - }, - "parser": "@typescript-eslint/parser", - "plugins": ["@typescript-eslint"], - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended" - ], - "parserOptions": { - "ecmaVersion": 11, - "sourceType": "module" - }, - "rules": {} -} diff --git a/app/Models/PersonModel.php b/app/Models/PersonModel.php index c997c8e8..8a4a71e4 100644 --- a/app/Models/PersonModel.php +++ b/app/Models/PersonModel.php @@ -146,7 +146,10 @@ class PersonModel extends Model ->orderBy('`full_name`', 'ASC') ->findAll(), static function (array $result, $person): array { - $result[$person->id] = $person->full_name; + $result[] = [ + 'value' => $person->id, + 'label' => $person->full_name, + ]; return $result; }, [], @@ -174,9 +177,11 @@ class PersonModel extends Model if (! ($options = cache($cacheName))) { foreach ($personsTaxonomy as $group_key => $group) { foreach ($group['roles'] as $role_key => $role) { - $options[ - "{$group_key},{$role_key}" - ] = "{$group['label']} › {$role['label']}"; + $options[] = [ + 'value' => "{$group_key}, +{$role_key}", + 'label' => "{$group['label']} › {$role['label']}", + ]; } } diff --git a/app/Resources/js/modules/Select.ts b/app/Resources/js/modules/Select.ts index 72f94148..840dfed8 100644 --- a/app/Resources/js/modules/Select.ts +++ b/app/Resources/js/modules/Select.ts @@ -17,32 +17,35 @@ const Select = (): void => { noChoicesText: select.dataset.noChoicesText, noResultsText: select.dataset.noResultsText, classNames: { - containerOuter: "choices", + activeState: "is-active", + addChoice: ["choices__item--selectable", "add-choice"], + button: "choices__button", containerInner: "choices__inner", - input: "choices__input", - inputCloned: "choices__input--cloned", - list: "choices__list", - listItems: "choices__list--multiple", - listSingle: "choices__list--single", - listDropdown: "choices__list--dropdown", - item: "choices__item", - itemSelectable: "choices__item--selectable", - itemDisabled: "choices__item--disabled", - itemChoice: "choices__item--choice", - placeholder: "choices__placeholder", + containerOuter: "choices", + description: "choices__description", + disabledState: "is-disabled", + flippedState: "is-flipped", + focusState: "is-focused", group: "choices__group", groupHeading: "choices__heading", - button: "choices__button", - activeState: "is-active", - focusState: "is-focused", - openState: "is-open", - disabledState: "is-disabled", highlightedState: "is-highlighted", - selectedState: "is-selected", - flippedState: "is-flipped", + input: "choices__input", + inputCloned: "choices__input--cloned", + item: "choices__item", + itemChoice: "choices__item--choice", + itemDisabled: "choices__item--disabled", + itemSelectable: "choices__item--selectable", + list: "choices__list", + listDropdown: "choices__list--dropdown", + listItems: "choices__list--multiple", + listSingle: "choices__list--single", loadingState: "is-loading", - noResults: "has-no-results", noChoices: "has-no-choices", + noResults: "has-no-results", + notice: "choices__notice", + openState: "is-open", + placeholder: "choices__placeholder", + selectedState: "is-selected", }, }); } diff --git a/app/Resources/js/modules/SelectMulti.ts b/app/Resources/js/modules/SelectMulti.ts index a1581a9b..064bc78a 100644 --- a/app/Resources/js/modules/SelectMulti.ts +++ b/app/Resources/js/modules/SelectMulti.ts @@ -18,32 +18,35 @@ const SelectMulti = (): void => { noResultsText: multiSelect.dataset.noResultsText, removeItemButton: true, classNames: { - containerOuter: "choices", + activeState: "is-active", + addChoice: ["choices__item--selectable", "add-choice"], + button: "choices__button", containerInner: "choices__inner", - input: "choices__input", - inputCloned: "choices__input--cloned", - list: "choices__list", - listItems: "choices__list--multiple", - listSingle: "choices__list--single", - listDropdown: "choices__list--dropdown", - item: "choices__item", - itemSelectable: "choices__item--selectable", - itemDisabled: "choices__item--disabled", - itemChoice: "choices__item--choice", - placeholder: "choices__placeholder", + containerOuter: "choices", + description: "choices__description", + disabledState: "is-disabled", + flippedState: "is-flipped", + focusState: "is-focused", group: "choices__group", groupHeading: "choices__heading", - button: "choices__button", - activeState: "is-active", - focusState: "is-focused", - openState: "is-open", - disabledState: "is-disabled", highlightedState: "is-highlighted", - selectedState: "is-selected", - flippedState: "is-flipped", + input: "choices__input", + inputCloned: "choices__input--cloned", + item: "choices__item", + itemChoice: "choices__item--choice", + itemDisabled: "choices__item--disabled", + itemSelectable: "choices__item--selectable", + list: "choices__list", + listDropdown: "choices__list--dropdown", + listItems: "choices__list--multiple", + listSingle: "choices__list--single", loadingState: "is-loading", - noResults: "has-no-results", noChoices: "has-no-choices", + noResults: "has-no-results", + notice: "choices__notice", + openState: "is-open", + placeholder: "choices__placeholder", + selectedState: "is-selected", }, }); } diff --git a/app/Resources/styles/choices.css b/app/Resources/styles/choices.css index 86bda4f8..ae98288d 100644 --- a/app/Resources/styles/choices.css +++ b/app/Resources/styles/choices.css @@ -250,6 +250,8 @@ } .choices__list--dropdown .choices__item { + @apply break-normal; + position: relative; padding: 10px; font-size: 14px; @@ -352,6 +354,10 @@ .choices__placeholder { opacity: 0.5; } + + .choices__description { + @apply text-xs block text-skin-muted break-normal; + } } /* ===== End of Choices ====== */ diff --git a/app/Views/Components/Forms/DatetimePicker.php b/app/Views/Components/Forms/DatetimePicker.php index 1a339cc4..58ea9717 100644 --- a/app/Views/Components/Forms/DatetimePicker.php +++ b/app/Views/Components/Forms/DatetimePicker.php @@ -19,7 +19,7 @@ class DatetimePicker extends FormComponent 'name' => $this->name, 'class' => 'rounded-l-lg border-0 border-rounded-r-none flex-1 focus:ring-0', 'data-input' => '', - ], old($this->name, $this->value)); + ], old($this->name, (string) $this->value)); $clearLabel = lang( 'Episode.publish_form.scheduled_publication_date_clear', diff --git a/app/Views/Components/Forms/Select.php b/app/Views/Components/Forms/Select.php index 8e8d02a8..c3da30b6 100644 --- a/app/Views/Components/Forms/Select.php +++ b/app/Views/Components/Forms/Select.php @@ -15,7 +15,7 @@ class Select extends FormComponent ]; /** - * @var array + * @var array> */ protected array $options = []; @@ -37,7 +37,7 @@ class Select extends FormComponent $options = ''; $selected = $this->value ?? $this->defaultValue; foreach ($this->options as $option) { - $options .= ''; + $options .= ''; } $this->attributes['name'] = $this->name; diff --git a/app/Views/Components/Forms/SelectMulti.php b/app/Views/Components/Forms/SelectMulti.php index 3023046b..1f7b4751 100644 --- a/app/Views/Components/Forms/SelectMulti.php +++ b/app/Views/Components/Forms/SelectMulti.php @@ -17,7 +17,7 @@ class SelectMulti extends FormComponent ]; /** - * @var array + * @var array> */ protected array $options = []; @@ -39,12 +39,13 @@ class SelectMulti extends FormComponent 'data-no-choices-text' => lang('Common.forms.multiSelect.noChoicesText'), 'data-max-item-text' => lang('Common.forms.multiSelect.maxItemText'), ]; + $this->attributes = [...$defaultAttributes, ...$this->attributes]; $options = ''; $selected = $this->value ?? $this->defaultValue; foreach ($this->options as $option) { - $options .= ''; + $options .= ''; } $this->attributes['name'] = $this->name . '[]'; diff --git a/app/Views/errors/html/debug.js b/app/Views/errors/html/debug.js index 3428750f..65254785 100644 --- a/app/Views/errors/html/debug.js +++ b/app/Views/errors/html/debug.js @@ -5,6 +5,7 @@ var tabLinks = []; var contentDivs = []; +// eslint-disable-next-line @typescript-eslint/no-unused-vars function init() { // Grab the tab links and content divs from the page var tabListItems = document.getElementById("tabs").childNodes; @@ -85,6 +86,7 @@ function getHash(url) { //-------------------------------------------------------------------- +// eslint-disable-next-line @typescript-eslint/no-unused-vars function toggle(elem) { elem = document.getElementById(elem); diff --git a/commitlint.config.cjs b/commitlint.config.cjs index 723fa61f..5073c20d 100644 --- a/commitlint.config.cjs +++ b/commitlint.config.cjs @@ -1,3 +1 @@ -/* eslint-disable */ - module.exports = { extends: ["@commitlint/config-conventional"] }; diff --git a/composer.json b/composer.json index b7b90b29..df8a406d 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "php": "^8.3", "adaures/ipcat-php": "^v1.0.0", "adaures/podcast-persons-taxonomy": "^v1.0.1", - "aws/aws-sdk-php": "^3.322.3", + "aws/aws-sdk-php": "^3.324.3", "chrisjean/php-ico": "^1.0.4", "cocur/slugify": "^v4.6.0", "codeigniter4/framework": "v4.5.5", @@ -27,19 +27,20 @@ "phpseclib/phpseclib": "~2.0.47", "vlucas/phpdotenv": "v5.6.1", "whichbrowser/parser": "^v2.1.8", - "yassinedoghri/codeigniter-icons": "dev-develop", + "yassinedoghri/codeigniter-icons": "^v1.0.0", + "yassinedoghri/php-icons": "^v1.1.0", "yassinedoghri/podcast-feed": "dev-main" }, "require-dev": { - "captainhook/captainhook": "^5.23.3", + "captainhook/captainhook": "^5.23.5", "codeigniter/phpstan-codeigniter": "v1.4.3", "mikey179/vfsstream": "^v1.6.12", "phpstan/extension-installer": "^1.4.3", - "phpstan/phpstan": "^1.12.4", - "phpunit/phpunit": "^10.5.35", - "rector/rector": "^1.2.5", + "phpstan/phpstan": "^1.12.6", + "phpunit/phpunit": "^10.5.36", + "rector/rector": "^1.2.7", "symplify/coding-standard": "^12.2.3", - "symplify/easy-coding-standard": "^12.3.5" + "symplify/easy-coding-standard": "^12.3.6" }, "autoload": { "psr-4": { diff --git a/composer.lock b/composer.lock index c604ffc7..a0d56858 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": "8474fc3d694af9160cf7cb82b5a6ea26", + "content-hash": "156f3cbd51fbb10025391c7786b9201c", "packages": [ { "name": "adaures/ipcat-php", @@ -188,16 +188,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.322.3", + "version": "3.324.3", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "9a94b9a123e0a14cacd72a34c24624ab728aa398" + "reference": "018a692622175ad65ebefa3f6645e4e6208a11fe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9a94b9a123e0a14cacd72a34c24624ab728aa398", - "reference": "9a94b9a123e0a14cacd72a34c24624ab728aa398", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/018a692622175ad65ebefa3f6645e4e6208a11fe", + "reference": "018a692622175ad65ebefa3f6645e4e6208a11fe", "shasum": "" }, "require": { @@ -274,9 +274,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.322.3" + "source": "https://github.com/aws/aws-sdk-php/tree/3.324.3" }, - "time": "2024-09-23T18:11:39+00:00" + "time": "2024-10-15T18:29:08+00:00" }, { "name": "brick/math", @@ -638,12 +638,12 @@ "source": { "type": "git", "url": "https://github.com/codeigniter4/tasks.git", - "reference": "a018b724ad4d9e1f4813c0d3e3da796ca377b178" + "reference": "be08f7abd534a3fd38d791257b861957eb596693" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/codeigniter4/tasks/zipball/a018b724ad4d9e1f4813c0d3e3da796ca377b178", - "reference": "a018b724ad4d9e1f4813c0d3e3da796ca377b178", + "url": "https://api.github.com/repos/codeigniter4/tasks/zipball/be08f7abd534a3fd38d791257b861957eb596693", + "reference": "be08f7abd534a3fd38d791257b861957eb596693", "shasum": "" }, "require": { @@ -656,7 +656,7 @@ "codeigniter4/devkit": "^1.0", "codeigniter4/framework": "^4.1", "phpunit/phpunit": "^9.6", - "rector/rector": "1.2.5" + "rector/rector": "1.2.7" }, "default-branch": true, "type": "library", @@ -714,20 +714,20 @@ "source": "https://github.com/codeigniter4/tasks/tree/develop", "issues": "https://github.com/codeigniter4/tasks/issues" }, - "time": "2024-09-09T12:07:42+00:00" + "time": "2024-10-14T11:27:08+00:00" }, { "name": "composer/ca-bundle", - "version": "1.5.1", + "version": "1.5.2", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "063d9aa8696582f5a41dffbbaf3c81024f0a604a" + "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/063d9aa8696582f5a41dffbbaf3c81024f0a604a", - "reference": "063d9aa8696582f5a41dffbbaf3c81024f0a604a", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/48a792895a2b7a6ee65dd5442c299d7b835b6137", + "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137", "shasum": "" }, "require": { @@ -737,8 +737,8 @@ }, "require-dev": { "phpstan/phpstan": "^1.10", + "phpunit/phpunit": "^8 || ^9", "psr/log": "^1.0 || ^2.0 || ^3.0", - "symfony/phpunit-bridge": "^4.2 || ^5", "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, "type": "library", @@ -766,7 +766,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.5.1" + "source": "https://github.com/composer/ca-bundle/tree/1.5.2" }, "funding": [ { @@ -782,7 +782,7 @@ "type": "tidelift" } ], - "time": "2024-07-08T15:28:20+00:00" + "time": "2024-09-25T07:49:53+00:00" }, { "name": "dflydev/dot-access-data", @@ -2011,24 +2011,24 @@ }, { "name": "nette/schema", - "version": "v1.3.0", + "version": "v1.3.2", "source": { "type": "git", "url": "https://github.com/nette/schema.git", - "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188" + "reference": "da801d52f0354f70a638673c4a0f04e16529431d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", - "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188", + "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d", + "reference": "da801d52f0354f70a638673c4a0f04e16529431d", "shasum": "" }, "require": { "nette/utils": "^4.0", - "php": "8.1 - 8.3" + "php": "8.1 - 8.4" }, "require-dev": { - "nette/tester": "^2.4", + "nette/tester": "^2.5.2", "phpstan/phpstan-nette": "^1.0", "tracy/tracy": "^2.8" }, @@ -2058,9 +2058,9 @@ "keywords": ["config", "nette"], "support": { "issues": "https://github.com/nette/schema/issues", - "source": "https://github.com/nette/schema/tree/v1.3.0" + "source": "https://github.com/nette/schema/tree/v1.3.2" }, - "time": "2023-12-11T11:54:22+00:00" + "time": "2024-10-06T23:10:23+00:00" }, { "name": "nette/utils", @@ -2142,55 +2142,6 @@ }, "time": "2024-08-07T15:39:19+00:00" }, - { - "name": "nikic/php-parser", - "version": "v4.19.2", - "source": { - "type": "git", - "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "0ed4c8949a32986043e977dbe14776c14d644c45" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/0ed4c8949a32986043e977dbe14776c14d644c45", - "reference": "0ed4c8949a32986043e977dbe14776c14d644c45", - "shasum": "" - }, - "require": { - "ext-tokenizer": "*", - "php": ">=7.1" - }, - "require-dev": { - "ircmaxell/php-yacc": "^0.0.7", - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" - }, - "bin": ["bin/php-parse"], - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "4.9-dev" - } - }, - "autoload": { - "psr-4": { - "PhpParser\\": "lib/PhpParser" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": ["BSD-3-Clause"], - "authors": [ - { - "name": "Nikita Popov" - } - ], - "description": "A PHP parser written in PHP", - "keywords": ["parser", "php"], - "support": { - "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.2" - }, - "time": "2024-09-17T19:36:00+00:00" - }, { "name": "opawg/user-agents-v2-php", "version": "dev-main", @@ -3293,33 +3244,33 @@ }, { "name": "yassinedoghri/codeigniter-icons", - "version": "dev-develop", + "version": "v1.0.0", "source": { "type": "git", "url": "https://github.com/yassinedoghri/codeigniter-icons.git", - "reference": "76526f22734df74651e784de6633962a05dcbd97" + "reference": "41e703612578fa44dfa8bd937380d71ab2af56ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yassinedoghri/codeigniter-icons/zipball/76526f22734df74651e784de6633962a05dcbd97", - "reference": "76526f22734df74651e784de6633962a05dcbd97", + "url": "https://api.github.com/repos/yassinedoghri/codeigniter-icons/zipball/41e703612578fa44dfa8bd937380d71ab2af56ac", + "reference": "41e703612578fa44dfa8bd937380d71ab2af56ac", "shasum": "" }, "require": { "php": ">=8.1", - "yassinedoghri/php-icons": "dev-develop" + "yassinedoghri/php-icons": "^v1.0.0" }, "require-dev": { - "codeigniter/phpstan-codeigniter": "^v1.4.3", - "codeigniter4/devkit": "^v1.2.2", + "codeigniter/phpstan-codeigniter": "^1.4.3.70400", "codeigniter4/framework": "^4.3.5", - "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan": "^1.10.66", - "rector/rector": "^1.0.4", - "symplify/coding-standard": "^12.1.4", - "symplify/easy-coding-standard": "^12.1.14" + "pestphp/pest": "^2.35.1", + "pestphp/pest-plugin-type-coverage": "^2.8.6", + "phpstan/extension-installer": "^1.4.3", + "phpstan/phpstan": "^1.12.5", + "rector/rector": "^1.2.5", + "symplify/coding-standard": "^12.2.3", + "symplify/easy-coding-standard": "^12.3.5" }, - "default-branch": true, "type": "library", "autoload": { "psr-4": { @@ -3337,44 +3288,51 @@ } ], "description": "A CodeIgniter4 library with convenient helper functions to render svg icons using yassinedoghri/php-icons.", - "keywords": ["codeigniter", "codeigniter4", "iconify", "icons"], + "keywords": [ + "codeigniter", + "codeigniter4", + "iconify", + "icons", + "php-icons" + ], "support": { "issues": "https://github.com/yassinedoghri/codeigniter-icons/issues", - "source": "https://github.com/yassinedoghri/codeigniter-icons/tree/develop" + "source": "https://github.com/yassinedoghri/codeigniter-icons/tree/v1.0.0" }, - "time": "2024-04-09T22:06:07+00:00" + "time": "2024-09-29T17:11:34+00:00" }, { "name": "yassinedoghri/php-icons", - "version": "dev-develop", + "version": "v1.1.0", "source": { "type": "git", "url": "https://github.com/yassinedoghri/php-icons.git", - "reference": "2ae1d446f0149ea55780a09c8f3668cd444b5be6" + "reference": "25530661989860a225f13b6c92c1ee1d2784f9d1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/yassinedoghri/php-icons/zipball/2ae1d446f0149ea55780a09c8f3668cd444b5be6", - "reference": "2ae1d446f0149ea55780a09c8f3668cd444b5be6", + "url": "https://api.github.com/repos/yassinedoghri/php-icons/zipball/25530661989860a225f13b6c92c1ee1d2784f9d1", + "reference": "25530661989860a225f13b6c92c1ee1d2784f9d1", "shasum": "" }, "require": { - "adhocore/cli": "^v1.7.1", + "adhocore/cli": "^1.7.2", "composer-runtime-api": "^2.2", - "nikic/php-parser": "^v4.0", "php": ">=8.1" }, "require-dev": { "kint-php/kint": "^5.1.1", - "phpstan/phpstan": "^1.10.67", - "rector/rector": "^1.0.4", - "symplify/coding-standard": "^12.1.4", - "symplify/easy-coding-standard": "^12.1.14" + "pestphp/pest": "^3.3.0", + "pestphp/pest-plugin-type-coverage": "^3.1.0", + "phpstan/phpstan": "^1.12.6", + "rector/rector": "^1.2.6", + "symplify/coding-standard": "^12.2.3", + "symplify/easy-coding-standard": "^12.3.6" }, - "default-branch": true, "bin": ["bin/php-icons"], "type": "library", "autoload": { + "files": ["src/Console/helpers.php"], "psr-4": { "PHPIcons\\": "src/" } @@ -3392,9 +3350,9 @@ "description": "A PHP library based on iconify's API to download and render svg icons from popular open source icon sets.", "support": { "issues": "https://github.com/yassinedoghri/php-icons/issues", - "source": "https://github.com/yassinedoghri/php-icons/tree/develop" + "source": "https://github.com/yassinedoghri/php-icons/tree/v1.1.0" }, - "time": "2024-09-22T11:25:33+00:00" + "time": "2024-10-07T12:38:01+00:00" }, { "name": "yassinedoghri/podcast-feed", @@ -4213,6 +4171,57 @@ ], "time": "2024-06-12T14:39:25+00:00" }, + { + "name": "nikic/php-parser", + "version": "v5.3.1", + "source": { + "type": "git", + "url": "https://github.com/nikic/PHP-Parser.git", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b", + "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "ext-json": "*", + "ext-tokenizer": "*", + "php": ">=7.4" + }, + "require-dev": { + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^9.0" + }, + "bin": ["bin/php-parse"], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "psr-4": { + "PhpParser\\": "lib/PhpParser" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": ["BSD-3-Clause"], + "authors": [ + { + "name": "Nikita Popov" + } + ], + "description": "A PHP parser written in PHP", + "keywords": ["parser", "php"], + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1" + }, + "time": "2024-10-08T18:51:32+00:00" + }, { "name": "phar-io/manifest", "version": "2.0.4", @@ -4368,16 +4377,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.12.4", + "version": "1.12.6", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "ffa517cb918591b93acc9b95c0bebdcd0e4538bd" + "reference": "dc4d2f145a88ea7141ae698effd64d9df46527ae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ffa517cb918591b93acc9b95c0bebdcd0e4538bd", - "reference": "ffa517cb918591b93acc9b95c0bebdcd0e4538bd", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/dc4d2f145a88ea7141ae698effd64d9df46527ae", + "reference": "dc4d2f145a88ea7141ae698effd64d9df46527ae", "shasum": "" }, "require": { @@ -4412,7 +4421,7 @@ "type": "github" } ], - "time": "2024-09-19T07:58:01+00:00" + "time": "2024-10-06T15:03:59+00:00" }, { "name": "phpunit/php-code-coverage", @@ -4704,16 +4713,16 @@ }, { "name": "phpunit/phpunit", - "version": "10.5.35", + "version": "10.5.36", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "7ac8b4e63f456046dcb4c9787da9382831a1874b" + "reference": "aa0a8ce701ea7ee314b0dfaa8970dc94f3f8c870" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/7ac8b4e63f456046dcb4c9787da9382831a1874b", - "reference": "7ac8b4e63f456046dcb4c9787da9382831a1874b", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/aa0a8ce701ea7ee314b0dfaa8970dc94f3f8c870", + "reference": "aa0a8ce701ea7ee314b0dfaa8970dc94f3f8c870", "shasum": "" }, "require": { @@ -4773,7 +4782,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.35" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.36" }, "funding": [ { @@ -4789,7 +4798,7 @@ "type": "tidelift" } ], - "time": "2024-09-19T10:52:21+00:00" + "time": "2024-10-08T15:36:51+00:00" }, { "name": "psr/container", @@ -5332,21 +5341,21 @@ }, { "name": "rector/rector", - "version": "1.2.5", + "version": "1.2.7", "source": { "type": "git", "url": "https://github.com/rectorphp/rector.git", - "reference": "e98aa793ca3fcd17e893cfaf9103ac049775d339" + "reference": "5b33bdd871895276e2c18e5410a4a57df9233ee0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rectorphp/rector/zipball/e98aa793ca3fcd17e893cfaf9103ac049775d339", - "reference": "e98aa793ca3fcd17e893cfaf9103ac049775d339", + "url": "https://api.github.com/repos/rectorphp/rector/zipball/5b33bdd871895276e2c18e5410a4a57df9233ee0", + "reference": "5b33bdd871895276e2c18e5410a4a57df9233ee0", "shasum": "" }, "require": { "php": "^7.2|^8.0", - "phpstan/phpstan": "^1.12.2" + "phpstan/phpstan": "^1.12.5" }, "conflict": { "rector/rector-doctrine": "*", @@ -5368,7 +5377,7 @@ "keywords": ["automation", "dev", "migration", "refactoring"], "support": { "issues": "https://github.com/rectorphp/rector/issues", - "source": "https://github.com/rectorphp/rector/tree/1.2.5" + "source": "https://github.com/rectorphp/rector/tree/1.2.7" }, "funding": [ { @@ -5376,7 +5385,7 @@ "type": "github" } ], - "time": "2024-09-08T17:43:24+00:00" + "time": "2024-10-12T11:12:46+00:00" }, { "name": "sebastian/cli-parser", @@ -7335,16 +7344,16 @@ }, { "name": "symplify/easy-coding-standard", - "version": "12.3.5", + "version": "12.3.6", "source": { "type": "git", "url": "https://github.com/easy-coding-standard/easy-coding-standard.git", - "reference": "0d7c2cfee3debdf11c12135e90d69d1d9f4eef03" + "reference": "c0f378782d06dfd21c66c3024e9d28f4e737645e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/easy-coding-standard/easy-coding-standard/zipball/0d7c2cfee3debdf11c12135e90d69d1d9f4eef03", - "reference": "0d7c2cfee3debdf11c12135e90d69d1d9f4eef03", + "url": "https://api.github.com/repos/easy-coding-standard/easy-coding-standard/zipball/c0f378782d06dfd21c66c3024e9d28f4e737645e", + "reference": "c0f378782d06dfd21c66c3024e9d28f4e737645e", "shasum": "" }, "require": { @@ -7369,7 +7378,7 @@ "keywords": ["Code style", "automation", "fixer", "static analysis"], "support": { "issues": "https://github.com/easy-coding-standard/easy-coding-standard/issues", - "source": "https://github.com/easy-coding-standard/easy-coding-standard/tree/12.3.5" + "source": "https://github.com/easy-coding-standard/easy-coding-standard/tree/12.3.6" }, "funding": [ { @@ -7381,7 +7390,7 @@ "type": "github" } ], - "time": "2024-08-08T08:43:50+00:00" + "time": "2024-10-06T08:27:28+00:00" }, { "name": "symplify/rule-doc-generator-contracts", @@ -7492,14 +7501,13 @@ "stability-flags": { "codeigniter4/tasks": 20, "opawg/user-agents-v2-php": 20, - "yassinedoghri/codeigniter-icons": 20, "yassinedoghri/podcast-feed": 20 }, "prefer-stable": true, "prefer-lowest": false, "platform": { - "php": "^8.1" + "php": "^8.3" }, - "platform-dev": [], + "platform-dev": {}, "plugin-api-version": "2.6.0" } diff --git a/docs/package.json b/docs/package.json index d6fc1e20..8b5c3980 100644 --- a/docs/package.json +++ b/docs/package.json @@ -11,18 +11,18 @@ "prepare": "astro telemetry disable" }, "dependencies": { - "@astrojs/check": "^0.7.0", - "@astrojs/starlight": "^0.24.0", + "@astrojs/check": "^0.9.3", + "@astrojs/starlight": "^0.28.2", "@astrojs/starlight-tailwind": "^2.0.3", - "@astrojs/tailwind": "^5.1.0", - "@fontsource/inter": "^5.0.18", - "@fontsource/rubik": "^5.0.20", - "astro": "^4.10.1", - "autoprefixer": "^10.4.19", - "cssnano": "^7.0.2", - "postcss-preset-env": "^9.5.14", - "sharp": "^0.33.4", - "tailwindcss": "^3.4.3", - "typescript": "^5.4.5" + "@astrojs/tailwind": "^5.1.1", + "@fontsource/inter": "^5.1.0", + "@fontsource/rubik": "^5.1.0", + "astro": "^4.15.9", + "autoprefixer": "^10.4.20", + "cssnano": "^7.0.6", + "postcss-preset-env": "^10.0.5", + "sharp": "^0.33.5", + "tailwindcss": "^3.4.13", + "typescript": "^5.6.2" } } diff --git a/docs/pnpm-lock.yaml b/docs/pnpm-lock.yaml index c59d5294..481267ef 100644 --- a/docs/pnpm-lock.yaml +++ b/docs/pnpm-lock.yaml @@ -8,44 +8,44 @@ importers: .: dependencies: "@astrojs/check": - specifier: ^0.7.0 - version: 0.7.0(typescript@5.4.5) + specifier: ^0.9.3 + version: 0.9.3(typescript@5.6.2) "@astrojs/starlight": - specifier: ^0.24.0 - version: 0.24.0(astro@4.10.1(typescript@5.4.5)) + specifier: ^0.28.2 + version: 0.28.2(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2)) "@astrojs/starlight-tailwind": specifier: ^2.0.3 - version: 2.0.3(@astrojs/starlight@0.24.0(astro@4.10.1(typescript@5.4.5)))(@astrojs/tailwind@5.1.0(astro@4.10.1(typescript@5.4.5))(tailwindcss@3.4.3))(tailwindcss@3.4.3) + version: 2.0.3(@astrojs/starlight@0.28.2(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2)))(@astrojs/tailwind@5.1.1(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2))(tailwindcss@3.4.13))(tailwindcss@3.4.13) "@astrojs/tailwind": - specifier: ^5.1.0 - version: 5.1.0(astro@4.10.1(typescript@5.4.5))(tailwindcss@3.4.3) + specifier: ^5.1.1 + version: 5.1.1(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2))(tailwindcss@3.4.13) "@fontsource/inter": - specifier: ^5.0.18 - version: 5.0.18 + specifier: ^5.1.0 + version: 5.1.0 "@fontsource/rubik": - specifier: ^5.0.20 - version: 5.0.20 + specifier: ^5.1.0 + version: 5.1.0 astro: - specifier: ^4.10.1 - version: 4.10.1(typescript@5.4.5) + specifier: ^4.15.9 + version: 4.15.9(rollup@4.22.5)(typescript@5.6.2) autoprefixer: - specifier: ^10.4.19 - version: 10.4.19(postcss@8.4.33) + specifier: ^10.4.20 + version: 10.4.20(postcss@8.4.38) cssnano: - specifier: ^7.0.2 - version: 7.0.2(postcss@8.4.33) + specifier: ^7.0.6 + version: 7.0.6(postcss@8.4.38) postcss-preset-env: - specifier: ^9.5.14 - version: 9.5.14(postcss@8.4.33) + specifier: ^10.0.5 + version: 10.0.5(postcss@8.4.38) sharp: - specifier: ^0.33.4 - version: 0.33.4 + specifier: ^0.33.5 + version: 0.33.5 tailwindcss: - specifier: ^3.4.3 - version: 3.4.3 + specifier: ^3.4.13 + version: 3.4.13 typescript: - specifier: ^5.4.5 - version: 5.4.5 + specifier: ^5.6.2 + version: 5.6.2 packages: "@alloc/quick-lru@5.2.0": @@ -62,31 +62,31 @@ packages: } engines: { node: ">=6.0.0" } - "@astrojs/check@0.7.0": + "@astrojs/check@0.9.3": resolution: { - integrity: sha512-UTqwOeKNu9IYZmJXEeWnQuTdSd/pX58Hl4TUARsMlT97SVDL//kLBE4T/ctxRz6J573N87oE5ddtW/uOOnQTug==, + integrity: sha512-I6Dz45bMI5YRbp4yK2LKWsHH3/kkHRGdPGruGkLap6pqxhdcNh7oCgN04Ac+haDfc9ow5BYPGPmEhkwef15GQQ==, } hasBin: true peerDependencies: typescript: ^5.0.0 - "@astrojs/compiler@2.8.0": + "@astrojs/compiler@2.10.3": resolution: { - integrity: sha512-yrpD1WRGqsJwANaDIdtHo+YVjvIOFAjC83lu5qENIgrafwZcJgSXDuwVMXOgok4tFzpeKLsFQ6c3FoUdloLWBQ==, + integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==, } - "@astrojs/internal-helpers@0.4.0": + "@astrojs/internal-helpers@0.4.1": resolution: { - integrity: sha512-6B13lz5n6BrbTqCTwhXjJXuR1sqiX/H6rTxzlXx+lN1NnV4jgnq/KJldCQaUWJzPL5SiWahQyinxAbxQtwgPHA==, + integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==, } - "@astrojs/language-server@2.10.0": + "@astrojs/language-server@2.14.2": resolution: { - integrity: sha512-crHXpqYfA5qWioiuZnZFpTsNItgBlF1f0S9MzDYS7/pfCALkHNJ7K3w9U/j0uMKymsT4hC7BfMaX0DYlfdSzHg==, + integrity: sha512-daUJ/+/2pPF3eGG4tVdXKyw0tabUDrJKwLzU8VTuNhEHIn3VZAIES6VT3+mX0lmKcMiKM8/bjZdfY+fPfmnsMA==, } hasBin: true peerDependencies: @@ -98,16 +98,16 @@ packages: prettier-plugin-astro: optional: true - "@astrojs/markdown-remark@5.1.0": + "@astrojs/markdown-remark@5.2.0": resolution: { - integrity: sha512-S6Z3K2hOB7MfjeDoHsotnP/q2UsnEDB8NlNAaCjMDsGBZfTUbWxyLW3CaphEWw08f6KLZi2ibK9yC3BaMhh2NQ==, + integrity: sha512-vWGM24KZXz11jR3JO+oqYU3T2qpuOi4uGivJ9SQLCAI01+vEkHC60YJMRvHPc+hwd60F7euNs1PeOEixIIiNQw==, } - "@astrojs/mdx@3.1.0": + "@astrojs/mdx@3.1.7": resolution: { - integrity: sha512-yuGDaOcCAfYgLQvUAlJDezYGK4twHlzW1Kvpyg3inxtDJuAsHdyVyYLWl0Wo5nwkyrbZktdrjnoW5scqzoAqAg==, + integrity: sha512-8lGdCt+S0TrZgQpbcP3fQJc4cTeacAirtz9TpAMtHCWrQGW8slKt3WG4/0N+bhZgYRC4h5AT5drzFz+y3wvmsg==, } engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0 } peerDependencies: @@ -120,10 +120,10 @@ packages: } engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0 } - "@astrojs/sitemap@3.0.5": + "@astrojs/sitemap@3.1.6": resolution: { - integrity: sha512-60eLzNjMza3ABypiQPUC6ElOSZNZeY5CwSwgJ03hfeonl+Db9x12CCzBFdTw7A5Mq+O54xEZVUrR0tB+yWgX8w==, + integrity: sha512-1Qp2NvAzVImqA6y+LubKi1DVhve/hXXgFvB0szxiipzh7BvtuKe4oJJ9dXSqaubaTkt4nMa6dv6RCCAYeB6xaQ==, } "@astrojs/starlight-tailwind@2.0.3": @@ -136,21 +136,21 @@ packages: "@astrojs/tailwind": ^5.0.0 tailwindcss: ^3.3.3 - "@astrojs/starlight@0.24.0": + "@astrojs/starlight@0.28.2": resolution: { - integrity: sha512-YUBf7TgDUMRcyoZ8S8hlnPuEvgqFuB5F7tQUwPK5GwkTC1E+gMW8zx9J/RgJAXNjQSi19s73nuF19zw/QSy5tw==, + integrity: sha512-Q1/Ujl2EzWX71qwqdt/0KP3wOyX6Rvyzcep/zD3hRCtw/Vi2TReh4Q2wLwz7mnbuYU9H7YvBKYknbkmjC+K/0w==, } peerDependencies: - astro: ^4.8.6 + astro: ^4.14.0 - "@astrojs/tailwind@5.1.0": + "@astrojs/tailwind@5.1.1": resolution: { - integrity: sha512-BJoCDKuWhU9FT2qYg+fr6Nfb3qP4ShtyjXGHKA/4mHN94z7BGcmauQK23iy+YH5qWvTnhqkd6mQPQ1yTZTe9Ig==, + integrity: sha512-LwurA10uIKcGRxQP2R81RvAnBT0WPKzBntXZBF4hrAefDgM5Uumn0nsGr6tdIjSARgYz4X+Cq/Vh78t3bql3yw==, } peerDependencies: - astro: ^3.0.0 || ^4.0.0 + astro: ^3.0.0 || ^4.0.0 || ^5.0.0-beta.0 tailwindcss: ^3.0.24 "@astrojs/telemetry@3.1.0": @@ -160,6 +160,12 @@ packages: } engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0 } + "@astrojs/yaml2ts@0.2.1": + resolution: + { + integrity: sha512-CBaNwDQJz20E5WxzQh4thLVfhB3JEEGz72wRA+oJp6fQR37QLAqXZJU0mHC+yqMOQ6oj0GfRPJrz6hjf+zm6zA==, + } + "@babel/code-frame@7.24.7": resolution: { @@ -167,17 +173,17 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/compat-data@7.24.7": + "@babel/compat-data@7.25.4": resolution: { - integrity: sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==, + integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==, } engines: { node: ">=6.9.0" } - "@babel/core@7.24.7": + "@babel/core@7.25.2": resolution: { - integrity: sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==, + integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==, } engines: { node: ">=6.9.0" } @@ -188,6 +194,13 @@ packages: } engines: { node: ">=6.9.0" } + "@babel/generator@7.25.6": + resolution: + { + integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==, + } + engines: { node: ">=6.9.0" } + "@babel/helper-annotate-as-pure@7.24.7": resolution: { @@ -195,10 +208,10 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/helper-compilation-targets@7.24.7": + "@babel/helper-compilation-targets@7.25.2": resolution: { - integrity: sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==, + integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==, } engines: { node: ">=6.9.0" } @@ -230,19 +243,19 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/helper-module-transforms@7.24.7": + "@babel/helper-module-transforms@7.25.2": resolution: { - integrity: sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==, + integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-plugin-utils@7.24.7": + "@babel/helper-plugin-utils@7.24.8": resolution: { - integrity: sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==, + integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==, } engines: { node: ">=6.9.0" } @@ -260,10 +273,10 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/helper-string-parser@7.24.7": + "@babel/helper-string-parser@7.24.8": resolution: { - integrity: sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==, + integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==, } engines: { node: ">=6.9.0" } @@ -274,17 +287,17 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/helper-validator-option@7.24.7": + "@babel/helper-validator-option@7.24.8": resolution: { - integrity: sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==, + integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==, } engines: { node: ">=6.9.0" } - "@babel/helpers@7.24.7": + "@babel/helpers@7.25.6": resolution: { - integrity: sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==, + integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==, } engines: { node: ">=6.9.0" } @@ -303,6 +316,14 @@ packages: engines: { node: ">=6.0.0" } hasBin: true + "@babel/parser@7.25.6": + resolution: + { + integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==, + } + engines: { node: ">=6.0.0" } + hasBin: true + "@babel/plugin-syntax-jsx@7.24.7": resolution: { @@ -312,15 +333,22 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-react-jsx@7.24.7": + "@babel/plugin-transform-react-jsx@7.25.2": resolution: { - integrity: sha512-+Dj06GDZEFRYvclU6k4bme55GKBEWUmByM/eoKuqg4zTNQHiApWRhQph5fxQB2wAEFvRzL1tOEj1RJ19wJrhoA==, + integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 + "@babel/runtime@7.25.6": + resolution: + { + integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==, + } + engines: { node: ">=6.9.0" } + "@babel/template@7.24.7": resolution: { @@ -328,6 +356,13 @@ packages: } engines: { node: ">=6.9.0" } + "@babel/template@7.25.0": + resolution: + { + integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==, + } + engines: { node: ">=6.9.0" } + "@babel/traverse@7.24.7": resolution: { @@ -335,361 +370,377 @@ packages: } engines: { node: ">=6.9.0" } - "@babel/types@7.24.7": + "@babel/traverse@7.25.6": resolution: { - integrity: sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==, + integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==, } engines: { node: ">=6.9.0" } - "@csstools/cascade-layer-name-parser@1.0.11": + "@babel/types@7.25.6": resolution: { - integrity: sha512-yhsonEAhaWRQvHFYhSzOUobH2Ev++fMci+ppFRagw0qVSPlcPV4FnNmlwpM/b2BM10ZeMRkVV4So6YRswD0O0w==, + integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=6.9.0" } + + "@csstools/cascade-layer-name-parser@2.0.1": + resolution: + { + integrity: sha512-G9ZYN5+yr/E6xYSiy1BwOEFP5p88ZtWo8sL4NztKBkRRAwRkzVGa70M+D+fYHugMID5jkLeNt5X9jYd5EaVuyg==, + } + engines: { node: ">=18" } peerDependencies: - "@csstools/css-parser-algorithms": ^2.6.3 - "@csstools/css-tokenizer": ^2.3.1 + "@csstools/css-parser-algorithms": ^3.0.1 + "@csstools/css-tokenizer": ^3.0.1 - "@csstools/color-helpers@4.2.0": + "@csstools/color-helpers@5.0.1": resolution: { - integrity: sha512-hJJrSBzbfGxUsaR6X4Bzd/FLx0F1ulKnR5ljY9AiXCtsR+H+zSWQDFWlKES1BRaVZTDHLpIIHS9K2o0h+JLlrg==, + integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } - "@csstools/css-calc@1.2.2": + "@csstools/css-calc@2.0.1": resolution: { - integrity: sha512-0owrl7AruDRKAxoSIW8XzJdz7GnuW3AOj4rYLfmXsoKIX2ZZzttzGXoiC8n8V08X7wIBlEWWVB4C8fAN18+I6Q==, + integrity: sha512-e59V+sNp6e5m+9WnTUydA1DQO70WuKUdseflRpWmXxocF/h5wWGIxUjxfvLtajcmwstH0vm6l0reKMzcyI757Q==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: - "@csstools/css-parser-algorithms": ^2.6.3 - "@csstools/css-tokenizer": ^2.3.1 + "@csstools/css-parser-algorithms": ^3.0.1 + "@csstools/css-tokenizer": ^3.0.1 - "@csstools/css-color-parser@2.0.2": + "@csstools/css-color-parser@3.0.2": resolution: { - integrity: sha512-Agx2YmxTcZ7TfB7KNZQ+iekaxbWSdblvtA35aTwE3KfuYyjOlCg3P4KGGdQF/cjm1pHWVSBo5duF/BRfZ8s07A==, + integrity: sha512-mNg7A6HnNjlm0we/pDS9dUafOuBxcanN0TBhEGeIk6zZincuk0+mAbnBqfVs29NlvWHZ8diwTG6g5FeU8246sA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: - "@csstools/css-parser-algorithms": ^2.6.3 - "@csstools/css-tokenizer": ^2.3.1 + "@csstools/css-parser-algorithms": ^3.0.1 + "@csstools/css-tokenizer": ^3.0.1 - "@csstools/css-parser-algorithms@2.6.3": + "@csstools/css-parser-algorithms@3.0.1": resolution: { - integrity: sha512-xI/tL2zxzEbESvnSxwFgwvy5HS00oCXxL4MLs6HUiDcYfwowsoQaABKxUElp1ARITrINzBnsECOc1q0eg2GOrA==, + integrity: sha512-lSquqZCHxDfuTg/Sk2hiS0mcSFCEBuj49JfzPHJogDBT0mGCyY5A1AQzBWngitrp7i1/HAZpIgzF/VjhOEIJIg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: - "@csstools/css-tokenizer": ^2.3.1 + "@csstools/css-tokenizer": ^3.0.1 - "@csstools/css-tokenizer@2.3.1": + "@csstools/css-tokenizer@3.0.1": resolution: { - integrity: sha512-iMNHTyxLbBlWIfGtabT157LH9DUx9X8+Y3oymFEuMj8HNc+rpE3dPFGFgHjpKfjeFDjLjYIAIhXPGvS2lKxL9g==, + integrity: sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } - "@csstools/media-query-list-parser@2.1.11": + "@csstools/media-query-list-parser@3.0.1": resolution: { - integrity: sha512-uox5MVhvNHqitPP+SynrB1o8oPxPMt2JLgp5ghJOWf54WGQ5OKu47efne49r1SWqs3wRP8xSWjnO9MBKxhB1dA==, + integrity: sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: - "@csstools/css-parser-algorithms": ^2.6.3 - "@csstools/css-tokenizer": ^2.3.1 + "@csstools/css-parser-algorithms": ^3.0.1 + "@csstools/css-tokenizer": ^3.0.1 - "@csstools/postcss-cascade-layers@4.0.6": + "@csstools/postcss-cascade-layers@5.0.0": resolution: { - integrity: sha512-Xt00qGAQyqAODFiFEJNkTpSUz5VfYqnDLECdlA/Vv17nl/OIV5QfTRHGAXrBGG5YcJyHpJ+GF9gF/RZvOQz4oA==, + integrity: sha512-h+VunB3KXaoWTWEPBcdVk8Kz1eZ/CtDD+HXgKw5JLdbsViLEQdKUtFYH73VIQigdodng8s5DCrrwNQY7pnuWBA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-color-function@3.0.16": + "@csstools/postcss-color-function@4.0.2": resolution: { - integrity: sha512-KtmXfckANSKsLBoTQCzggvKft1cmmmDKYjFO4yVlB23nWUgGInVBTE9T5JLmH29NNdTWSEPLWPUxoQ6XiIEn2Q==, + integrity: sha512-q/W3RXh66SM7WqxW3/KU6koL8nOgqyB/wrcU3+ThXnNtXY2+k8UgdE301ISJpMt6PDyYgC7eMaIBo535RvFIgw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-color-mix-function@2.0.16": + "@csstools/postcss-color-mix-function@3.0.2": resolution: { - integrity: sha512-BJnD1M5Pdypl1cJuwGuzVC52PqgzaObsDLu34jgf+QU7daVFqz432PvpqvXTmfTSNt4OckOT1QIzWexEFlDNXw==, + integrity: sha512-zG9PHNzZVCRk6eprm+T/ybrnuiwLdO+RR7+GCtNut+NZJGtPJj6bfPOEX23aOlMslLcRAlN6QOpxH3tovn+WpA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-exponential-functions@1.0.7": + "@csstools/postcss-content-alt-text@2.0.1": resolution: { - integrity: sha512-9usBPQX74OhiF/VuaVrp44UAPzqbKNyoaxEa6tbEXiFp+OAm3yB/TLRKyPUWg5tvvHGCduGJVdJJB3w8c8NBtA==, + integrity: sha512-TWjjewVZqdkjavsi8a2THuXgkhUum1k/m4QJpZpzOv72q6WnaoQZGSj5t5uCs7ymJr0H3qj6JcXMwMApSWUOGQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-font-format-keywords@3.0.2": + "@csstools/postcss-exponential-functions@2.0.1": resolution: { - integrity: sha512-E0xz2sjm4AMCkXLCFvI/lyl4XO6aN1NCSMMVEOngFDJ+k2rDwfr6NDjWljk1li42jiLNChVX+YFnmfGCigZKXw==, + integrity: sha512-A/MG8es3ylFzZ30oYIQUyJcMOfTfCs0dqqBMzeuzaPRlx4q/72WG+BbKe/pL9BUNIWsM0Q8jn3e3la8enjHJJA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-gamut-mapping@1.0.9": + "@csstools/postcss-font-format-keywords@4.0.0": resolution: { - integrity: sha512-JmOeiBJj1RJriAkr+aLBaiYUpEqdNOIo3ERQ5a4uNzy18upzrQ6tz7m2Vt1GQpJ62zQj7rC5PjAhCoZCoyE31g==, + integrity: sha512-usBzw9aCRDvchpok6C+4TXC57btc4bJtmKQWOHQxOVKen1ZfVqBUuCZ/wuqdX5GHsD0NRSr9XTP+5ID1ZZQBXw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-gradients-interpolation-method@4.0.17": + "@csstools/postcss-gamut-mapping@2.0.2": resolution: { - integrity: sha512-qSNIqzLPKd2SadfWwHZv42lDRyYlLaM+Vx5rRIsnYCZbQxzFfe1XAwssrcCsHgba5bA6bi5oDoFCx0W+PRCpfw==, + integrity: sha512-/1ur3ca9RWg/KnbLlxaDswyjLSGoaHNDruAzrVhkn5axgd7LOH6JHCBRhrKDafdMw9bf4MQrYFoaLfHAPekLFg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-hwb-function@3.0.15": + "@csstools/postcss-gradients-interpolation-method@5.0.2": resolution: { - integrity: sha512-l34fRiZ7o5+pULv7OplXniBTU4TuKYNNOv0abuvUanddWGSy3+YHlMKUSgcVFo0d1DorxPAhJSTCrugl+4OmMQ==, + integrity: sha512-qRpvA4sduAfiV9yZG4OM7q/h2Qhr3lg+GrHe9NZwuzWnfSDLGh+Dh4Ea6fQ+1++jdKXW/Cb4/vHRp0ssQYra4w==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-ic-unit@3.0.6": + "@csstools/postcss-hwb-function@4.0.2": resolution: { - integrity: sha512-fHaU9C/sZPauXMrzPitZ/xbACbvxbkPpHoUgB9Kw5evtsBWdVkVrajOyiT9qX7/c+G1yjApoQjP1fQatldsy9w==, + integrity: sha512-RUBVCyJE1hTsf9vGp3zrALeMollkAlHRFKm+T36y67nLfOOf+6GNQsdTGFAyLrY65skcm8ddC26Jp1n9ZIauEA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-initial@1.0.1": + "@csstools/postcss-ic-unit@4.0.0": resolution: { - integrity: sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==, + integrity: sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-is-pseudo-class@4.0.8": + "@csstools/postcss-initial@2.0.0": resolution: { - integrity: sha512-0aj591yGlq5Qac+plaWCbn5cpjs5Sh0daovYUKJUOMjIp70prGH/XPLp7QjxtbFXz3CTvb0H9a35dpEuIuUi3Q==, + integrity: sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-light-dark-function@1.0.5": + "@csstools/postcss-is-pseudo-class@5.0.0": resolution: { - integrity: sha512-kKM9dtEaVmSTb3scL2pgef62KyWv6SK19JiAnCCuiDhlRE6PADKzaPPBXmP3qj4IEgIH+cQhdEosB0eroU6Fnw==, + integrity: sha512-E/CjrT03BL06WmrjupnrT0VUBTvxJdoW1hRVeXFa9qatWtvcLLw0j8hP372G4A9PpSGEMXi3/AoHzPf7DNryCQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-float-and-clear@2.0.1": + "@csstools/postcss-light-dark-function@2.0.4": resolution: { - integrity: sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==, + integrity: sha512-yHUt5DZ61Irvp72notmAl3Zt4Me50EWToWNocazyIFTVYFwwo/EucmV3hWi9zJehu3rOSvMclL7DzvRDfbak/A==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-overflow@1.0.1": + "@csstools/postcss-logical-float-and-clear@3.0.0": resolution: { - integrity: sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==, + integrity: sha512-SEmaHMszwakI2rqKRJgE+8rpotFfne1ZS6bZqBoQIicFyV+xT1UF42eORPxJkVJVrH9C0ctUgwMSn3BLOIZldQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-overscroll-behavior@1.0.1": + "@csstools/postcss-logical-overflow@2.0.0": resolution: { - integrity: sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==, + integrity: sha512-spzR1MInxPuXKEX2csMamshR4LRaSZ3UXVaRGjeQxl70ySxOhMpP2252RAFsg8QyyBXBzuVOOdx1+bVO5bPIzA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-resize@2.0.1": + "@csstools/postcss-logical-overscroll-behavior@2.0.0": resolution: { - integrity: sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==, + integrity: sha512-e/webMjoGOSYfqLunyzByZj5KKe5oyVg/YSbie99VEaSDE2kimFm0q1f6t/6Jo+VVCQ/jbe2Xy+uX+C4xzWs4w==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-viewport-units@2.0.9": + "@csstools/postcss-logical-resize@3.0.0": resolution: { - integrity: sha512-iBBJuExgHwedFH9AqNOHWzZFgYnt17zhu1qWjmSihu1P5pw0lIG9q5t3uIgJJFDNmYoOGfBKan66z9u1QH8yBQ==, + integrity: sha512-DFbHQOFW/+I+MY4Ycd/QN6Dg4Hcbb50elIJCfnwkRTCX05G11SwViI5BbBlg9iHRl4ytB7pmY5ieAFk3ws7yyg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-media-minmax@1.1.6": + "@csstools/postcss-logical-viewport-units@3.0.1": resolution: { - integrity: sha512-bc0frf2Lod53j6wEHVsaVElfvCf6uhc96v99M/wUfer4MmNYfO3YLx1kFuB8xXvb0AXiWx4fohCJqemHV3bfRg==, + integrity: sha512-JsfaoTiBqIuRE+CYL4ZpYKOqJ965GyiMH4b8UrY0Z7i5GfMiHZrK7xtTB29piuyKQzrW+Z8w3PAExhwND9cuAQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.9": + "@csstools/postcss-media-minmax@2.0.1": resolution: { - integrity: sha512-PR0s3tFSxPoKoPLoKuiZuYhwQC5bQxq/gFfywX2u/kh8rMzesARPZYKxE71I3jHWi6KDHGZl9Xb5xcFPwtvLiQ==, + integrity: sha512-EMa3IgUip+F/MwH4r2KfIA9ym9hQkT2PpR9MOukdomfGGCFuw9V3n/iIOBKziN1qfeddsYoOvtYOKQcHU2yIjg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-nested-calc@3.0.2": + "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.1": resolution: { - integrity: sha512-ySUmPyawiHSmBW/VI44+IObcKH0v88LqFe0d09Sb3w4B1qjkaROc6d5IA3ll9kjD46IIX/dbO5bwFN/swyoyZA==, + integrity: sha512-JTzMQz//INahTALkvXnC5lC2fJKzwb5PY443T2zaM9hAzM7nzHMLIlEfFgdtBahVIBtBSalMefdxNr99LGW1lQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-normalize-display-values@3.0.2": + "@csstools/postcss-nested-calc@4.0.0": resolution: { - integrity: sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==, + integrity: sha512-jMYDdqrQQxE7k9+KjstC3NbsmC063n1FTPLCgCRS2/qHUbHM0mNy9pIn4QIiQGs9I/Bg98vMqw7mJXBxa0N88A==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-oklab-function@3.0.16": + "@csstools/postcss-normalize-display-values@4.0.0": resolution: { - integrity: sha512-zm8nND+EraZrmbO4mgcT8FrJrAQUfWNfMmbV5uTCpWtAcO5ycX3E3bO8T1TjczKYRxC5QMM/91n9YExYCF4Mvw==, + integrity: sha512-HlEoG0IDRoHXzXnkV4in47dzsxdsjdz6+j7MLjaACABX2NfvjFS6XVAnpaDyGesz9gK2SC7MbNwdCHusObKJ9Q==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-progressive-custom-properties@3.2.0": + "@csstools/postcss-oklab-function@4.0.2": resolution: { - integrity: sha512-BZlirVxCRgKlE7yVme+Xvif72eTn1MYXj8oZ4Knb+jwaH4u3AN1DjbhM7j86RP5vvuAOexJ4JwfifYYKWMN/QQ==, + integrity: sha512-2iSK/T77PHMeorakBAk/WLxSodfIJ/lmi6nxEkuruXfhGH7fByZim4Fw6ZJf4B73SVieRSH2ep8zvYkA2ZfRtA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-relative-color-syntax@2.0.16": + "@csstools/postcss-progressive-custom-properties@4.0.0": resolution: { - integrity: sha512-TSM8fVqJkT8JZDranZPnkpxjU/Q1sNR192lXMND+EcKOUjYa6uYpGSfHgjnWjCRiBSciettS+sL7y9wmnas7qQ==, + integrity: sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-scope-pseudo-class@3.0.1": + "@csstools/postcss-relative-color-syntax@3.0.2": resolution: { - integrity: sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==, + integrity: sha512-aBpuUdpJBswNGfw6lOkhown2cZ0YXrMjASye56nkoRpgRe9yDF4BM1fvEuakrCDiaeoUzVaI4SF6+344BflXfQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-stepped-value-functions@3.0.8": + "@csstools/postcss-scope-pseudo-class@4.0.0": resolution: { - integrity: sha512-X76+thsvsmH/SkqVbN+vjeFKe1ABGLRx8/Wl68QTb/zvJWdzgx5S/nbszZP5O3nTRc5eI8NxIOrQUiy30fR+0g==, + integrity: sha512-+ZUOBtVMDcmHZcZqsP/jcNRriEILfWQflTI3tCTA+/RheXAg57VkFGyPDAilpQSqlCpxWLWG8VUFKFtZJPwuOg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-text-decoration-shorthand@3.0.6": + "@csstools/postcss-stepped-value-functions@4.0.1": resolution: { - integrity: sha512-Q8HEu4AEiwNVZBD6+DpQ8M9SajpMow4+WtmndWIAv8qxDtDYL4JK1xXWkhOGk28PrcJawOvkrEZ8Ri59UN1TJw==, + integrity: sha512-dk3KqVcIEYzy9Mvx8amoBbk123BWgd5DfjXDiPrEqxGma37PG7m/MoMmHQhuVHIjvPDHoJwyIZi2yy7j0RA5fw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-trigonometric-functions@3.0.8": + "@csstools/postcss-text-decoration-shorthand@4.0.1": resolution: { - integrity: sha512-zEzyGriPqoIYFgHJqWNy8bmoxjM4+ONyTap1ZzQK/Lll/VsCYvx0IckB33W/u89uLSVeeB8xC7uTrkoQ7ogKyQ==, + integrity: sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-unset-value@3.0.1": + "@csstools/postcss-trigonometric-functions@4.0.1": resolution: { - integrity: sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==, + integrity: sha512-QHOYuN3bzS/rcpAygFhJxJUtD8GuJEWF6f9Zm518Tq/cSMlcTgU+v0geyi5EqbmYxKMig2oKCKUSGqOj9gehkg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/selector-resolve-nested@1.1.0": + "@csstools/postcss-unset-value@4.0.0": resolution: { - integrity: sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg==, + integrity: sha512-cBz3tOCI5Fw6NIFEwU3RiwK6mn3nKegjpJuzCndoGq3BZPkUjnsq7uQmIeMNeMbMk7YD2MfKcgCpZwX5jyXqCA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: - postcss-selector-parser: ^6.0.13 + postcss: ^8.4 - "@csstools/selector-specificity@3.1.1": + "@csstools/selector-resolve-nested@2.0.0": resolution: { - integrity: sha512-a7cxGcJ2wIlMFLlh8z2ONm+715QkPHiyJcxwQlKOz/03GPw1COpfhcmC9wm4xlZfp//jWHNNMwzjtqHXVWU9KA==, + integrity: sha512-oklSrRvOxNeeOW1yARd4WNCs/D09cQjunGZUgSq6vM8GpzFswN+8rBZyJA29YFZhOTQ6GFzxgLDNtVbt9wPZMA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: - postcss-selector-parser: ^6.0.13 + postcss-selector-parser: ^6.1.0 - "@csstools/utilities@1.0.0": + "@csstools/selector-specificity@4.0.0": resolution: { - integrity: sha512-tAgvZQe/t2mlvpNosA4+CkMiZ2azISW5WPAcdSalZlEjQvUfghHxfQcrCiK/7/CrfAWVxyM88kGFYO82heIGDg==, + integrity: sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } + peerDependencies: + postcss-selector-parser: ^6.1.0 + + "@csstools/utilities@2.0.0": + resolution: + { + integrity: sha512-5VdOr0Z71u+Yp3ozOx8T11N703wIFGVRgOWbOZMKgglPJsWA54MRIoMNVMa7shUToIhx5J8vX4sOZgD2XiihiQ==, + } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -742,726 +793,417 @@ packages: integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==, } - "@emnapi/runtime@1.1.1": + "@emnapi/runtime@1.2.0": resolution: { - integrity: sha512-3bfqkzuR1KLx57nZfjr2NLnFOobvyS0aTszaEGCGqmYMVDRaGvgIZbjGSV/MHSSmLgQ/b9JFHQ5xm5WRZYd+XQ==, + integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==, } - "@esbuild/aix-ppc64@0.20.2": + "@esbuild/aix-ppc64@0.21.5": resolution: { - integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==, + integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, } engines: { node: ">=12" } cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.21.4": + "@esbuild/android-arm64@0.21.5": resolution: { - integrity: sha512-Zrm+B33R4LWPLjDEVnEqt2+SLTATlru1q/xYKVn8oVTbiRBGmK2VIMoIYGJDGyftnGaC788IuzGFAlb7IQ0Y8A==, - } - engines: { node: ">=12" } - cpu: [ppc64] - os: [aix] - - "@esbuild/android-arm64@0.20.2": - resolution: - { - integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==, + integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==, } engines: { node: ">=12" } cpu: [arm64] os: [android] - "@esbuild/android-arm64@0.21.4": + "@esbuild/android-arm@0.21.5": resolution: { - integrity: sha512-fYFnz+ObClJ3dNiITySBUx+oNalYUT18/AryMxfovLkYWbutXsct3Wz2ZWAcGGppp+RVVX5FiXeLYGi97umisA==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [android] - - "@esbuild/android-arm@0.20.2": - resolution: - { - integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==, + integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, } engines: { node: ">=12" } cpu: [arm] os: [android] - "@esbuild/android-arm@0.21.4": + "@esbuild/android-x64@0.21.5": resolution: { - integrity: sha512-E7H/yTd8kGQfY4z9t3nRPk/hrhaCajfA3YSQSBrst8B+3uTcgsi8N+ZWYCaeIDsiVs6m65JPCaQN/DxBRclF3A==, - } - engines: { node: ">=12" } - cpu: [arm] - os: [android] - - "@esbuild/android-x64@0.20.2": - resolution: - { - integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==, + integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, } engines: { node: ">=12" } cpu: [x64] os: [android] - "@esbuild/android-x64@0.21.4": + "@esbuild/darwin-arm64@0.21.5": resolution: { - integrity: sha512-mDqmlge3hFbEPbCWxp4fM6hqq7aZfLEHZAKGP9viq9wMUBVQx202aDIfc3l+d2cKhUJM741VrCXEzRFhPDKH3Q==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [android] - - "@esbuild/darwin-arm64@0.20.2": - resolution: - { - integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==, + integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, } engines: { node: ">=12" } cpu: [arm64] os: [darwin] - "@esbuild/darwin-arm64@0.21.4": + "@esbuild/darwin-x64@0.21.5": resolution: { - integrity: sha512-72eaIrDZDSiWqpmCzVaBD58c8ea8cw/U0fq/PPOTqE3c53D0xVMRt2ooIABZ6/wj99Y+h4ksT/+I+srCDLU9TA==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [darwin] - - "@esbuild/darwin-x64@0.20.2": - resolution: - { - integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==, + integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, } engines: { node: ">=12" } cpu: [x64] os: [darwin] - "@esbuild/darwin-x64@0.21.4": + "@esbuild/freebsd-arm64@0.21.5": resolution: { - integrity: sha512-uBsuwRMehGmw1JC7Vecu/upOjTsMhgahmDkWhGLWxIgUn2x/Y4tIwUZngsmVb6XyPSTXJYS4YiASKPcm9Zitag==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [darwin] - - "@esbuild/freebsd-arm64@0.20.2": - resolution: - { - integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==, + integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, } engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-arm64@0.21.4": + "@esbuild/freebsd-x64@0.21.5": resolution: { - integrity: sha512-8JfuSC6YMSAEIZIWNL3GtdUT5NhUA/CMUCpZdDRolUXNAXEE/Vbpe6qlGLpfThtY5NwXq8Hi4nJy4YfPh+TwAg==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [freebsd] - - "@esbuild/freebsd-x64@0.20.2": - resolution: - { - integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==, + integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==, } engines: { node: ">=12" } cpu: [x64] os: [freebsd] - "@esbuild/freebsd-x64@0.21.4": + "@esbuild/linux-arm64@0.21.5": resolution: { - integrity: sha512-8d9y9eQhxv4ef7JmXny7591P/PYsDFc4+STaxC1GBv0tMyCdyWfXu2jBuqRsyhY8uL2HU8uPyscgE2KxCY9imQ==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [freebsd] - - "@esbuild/linux-arm64@0.20.2": - resolution: - { - integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==, + integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, } engines: { node: ">=12" } cpu: [arm64] os: [linux] - "@esbuild/linux-arm64@0.21.4": + "@esbuild/linux-arm@0.21.5": resolution: { - integrity: sha512-/GLD2orjNU50v9PcxNpYZi+y8dJ7e7/LhQukN3S4jNDXCKkyyiyAz9zDw3siZ7Eh1tRcnCHAo/WcqKMzmi4eMQ==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [linux] - - "@esbuild/linux-arm@0.20.2": - resolution: - { - integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==, + integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, } engines: { node: ">=12" } cpu: [arm] os: [linux] - "@esbuild/linux-arm@0.21.4": + "@esbuild/linux-ia32@0.21.5": resolution: { - integrity: sha512-2rqFFefpYmpMs+FWjkzSgXg5vViocqpq5a1PSRgT0AvSgxoXmGF17qfGAzKedg6wAwyM7UltrKVo9kxaJLMF/g==, - } - engines: { node: ">=12" } - cpu: [arm] - os: [linux] - - "@esbuild/linux-ia32@0.20.2": - resolution: - { - integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==, + integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, } engines: { node: ">=12" } cpu: [ia32] os: [linux] - "@esbuild/linux-ia32@0.21.4": + "@esbuild/linux-loong64@0.21.5": resolution: { - integrity: sha512-pNftBl7m/tFG3t2m/tSjuYeWIffzwAZT9m08+9DPLizxVOsUl8DdFzn9HvJrTQwe3wvJnwTdl92AonY36w/25g==, - } - engines: { node: ">=12" } - cpu: [ia32] - os: [linux] - - "@esbuild/linux-loong64@0.20.2": - resolution: - { - integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==, + integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, } engines: { node: ">=12" } cpu: [loong64] os: [linux] - "@esbuild/linux-loong64@0.21.4": + "@esbuild/linux-mips64el@0.21.5": resolution: { - integrity: sha512-cSD2gzCK5LuVX+hszzXQzlWya6c7hilO71L9h4KHwqI4qeqZ57bAtkgcC2YioXjsbfAv4lPn3qe3b00Zt+jIfQ==, - } - engines: { node: ">=12" } - cpu: [loong64] - os: [linux] - - "@esbuild/linux-mips64el@0.20.2": - resolution: - { - integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==, + integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, } engines: { node: ">=12" } cpu: [mips64el] os: [linux] - "@esbuild/linux-mips64el@0.21.4": + "@esbuild/linux-ppc64@0.21.5": resolution: { - integrity: sha512-qtzAd3BJh7UdbiXCrg6npWLYU0YpufsV9XlufKhMhYMJGJCdfX/G6+PNd0+v877X1JG5VmjBLUiFB0o8EUSicA==, - } - engines: { node: ">=12" } - cpu: [mips64el] - os: [linux] - - "@esbuild/linux-ppc64@0.20.2": - resolution: - { - integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==, + integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==, } engines: { node: ">=12" } cpu: [ppc64] os: [linux] - "@esbuild/linux-ppc64@0.21.4": + "@esbuild/linux-riscv64@0.21.5": resolution: { - integrity: sha512-yB8AYzOTaL0D5+2a4xEy7OVvbcypvDR05MsB/VVPVA7nL4hc5w5Dyd/ddnayStDgJE59fAgNEOdLhBxjfx5+dg==, - } - engines: { node: ">=12" } - cpu: [ppc64] - os: [linux] - - "@esbuild/linux-riscv64@0.20.2": - resolution: - { - integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==, + integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, } engines: { node: ">=12" } cpu: [riscv64] os: [linux] - "@esbuild/linux-riscv64@0.21.4": + "@esbuild/linux-s390x@0.21.5": resolution: { - integrity: sha512-Y5AgOuVzPjQdgU59ramLoqSSiXddu7F3F+LI5hYy/d1UHN7K5oLzYBDZe23QmQJ9PIVUXwOdKJ/jZahPdxzm9w==, - } - engines: { node: ">=12" } - cpu: [riscv64] - os: [linux] - - "@esbuild/linux-s390x@0.20.2": - resolution: - { - integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==, + integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, } engines: { node: ">=12" } cpu: [s390x] os: [linux] - "@esbuild/linux-s390x@0.21.4": + "@esbuild/linux-x64@0.21.5": resolution: { - integrity: sha512-Iqc/l/FFwtt8FoTK9riYv9zQNms7B8u+vAI/rxKuN10HgQIXaPzKZc479lZ0x6+vKVQbu55GdpYpeNWzjOhgbA==, - } - engines: { node: ">=12" } - cpu: [s390x] - os: [linux] - - "@esbuild/linux-x64@0.20.2": - resolution: - { - integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==, + integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, } engines: { node: ">=12" } cpu: [x64] os: [linux] - "@esbuild/linux-x64@0.21.4": + "@esbuild/netbsd-x64@0.21.5": resolution: { - integrity: sha512-Td9jv782UMAFsuLZINfUpoF5mZIbAj+jv1YVtE58rFtfvoKRiKSkRGQfHTgKamLVT/fO7203bHa3wU122V/Bdg==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [linux] - - "@esbuild/netbsd-x64@0.20.2": - resolution: - { - integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==, + integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, } engines: { node: ">=12" } cpu: [x64] os: [netbsd] - "@esbuild/netbsd-x64@0.21.4": + "@esbuild/openbsd-x64@0.21.5": resolution: { - integrity: sha512-Awn38oSXxsPMQxaV0Ipb7W/gxZtk5Tx3+W+rAPdZkyEhQ6968r9NvtkjhnhbEgWXYbgV+JEONJ6PcdBS+nlcpA==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [netbsd] - - "@esbuild/openbsd-x64@0.20.2": - resolution: - { - integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==, + integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, } engines: { node: ">=12" } cpu: [x64] os: [openbsd] - "@esbuild/openbsd-x64@0.21.4": + "@esbuild/sunos-x64@0.21.5": resolution: { - integrity: sha512-IsUmQeCY0aU374R82fxIPu6vkOybWIMc3hVGZ3ChRwL9hA1TwY+tS0lgFWV5+F1+1ssuvvXt3HFqe8roCip8Hg==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [openbsd] - - "@esbuild/sunos-x64@0.20.2": - resolution: - { - integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==, + integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, } engines: { node: ">=12" } cpu: [x64] os: [sunos] - "@esbuild/sunos-x64@0.21.4": + "@esbuild/win32-arm64@0.21.5": resolution: { - integrity: sha512-hsKhgZ4teLUaDA6FG/QIu2q0rI6I36tZVfM4DBZv3BG0mkMIdEnMbhc4xwLvLJSS22uWmaVkFkqWgIS0gPIm+A==, - } - engines: { node: ">=12" } - cpu: [x64] - os: [sunos] - - "@esbuild/win32-arm64@0.20.2": - resolution: - { - integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==, + integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, } engines: { node: ">=12" } cpu: [arm64] os: [win32] - "@esbuild/win32-arm64@0.21.4": + "@esbuild/win32-ia32@0.21.5": resolution: { - integrity: sha512-UUfMgMoXPoA/bvGUNfUBFLCh0gt9dxZYIx9W4rfJr7+hKe5jxxHmfOK8YSH4qsHLLN4Ck8JZ+v7Q5fIm1huErg==, - } - engines: { node: ">=12" } - cpu: [arm64] - os: [win32] - - "@esbuild/win32-ia32@0.20.2": - resolution: - { - integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==, + integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, } engines: { node: ">=12" } cpu: [ia32] os: [win32] - "@esbuild/win32-ia32@0.21.4": + "@esbuild/win32-x64@0.21.5": resolution: { - integrity: sha512-yIxbspZb5kGCAHWm8dexALQ9en1IYDfErzjSEq1KzXFniHv019VT3mNtTK7t8qdy4TwT6QYHI9sEZabONHg+aw==, - } - engines: { node: ">=12" } - cpu: [ia32] - os: [win32] - - "@esbuild/win32-x64@0.20.2": - resolution: - { - integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==, + integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, } engines: { node: ">=12" } cpu: [x64] os: [win32] - "@esbuild/win32-x64@0.21.4": + "@expressive-code/core@0.35.6": resolution: { - integrity: sha512-sywLRD3UK/qRJt0oBwdpYLBibk7KiRfbswmWRDabuncQYSlf8aLEEUor/oP6KRz8KEG+HoiVLBhPRD5JWjS8Sg==, + integrity: sha512-xGqCkmfkgT7lr/rvmfnYdDSeTdCSp1otAHgoFS6wNEeO7wGDPpxdosVqYiIcQ8CfWUABh/pGqWG90q+MV3824A==, } - engines: { node: ">=12" } + + "@expressive-code/plugin-frames@0.35.6": + resolution: + { + integrity: sha512-CqjSWjDJ3wabMJZfL9ZAzH5UAGKg7KWsf1TBzr4xvUbZvWoBtLA/TboBML0U1Ls8h/4TRCIvR4VEb8dv5+QG3w==, + } + + "@expressive-code/plugin-shiki@0.35.6": + resolution: + { + integrity: sha512-xm+hzi9BsmhkDUGuyAWIydOAWer7Cs9cj8FM0t4HXaQ+qCubprT6wJZSKUxuvFJIUsIOqk1xXFaJzGJGnWtKMg==, + } + + "@expressive-code/plugin-text-markers@0.35.6": + resolution: + { + integrity: sha512-/k9eWVZSCs+uEKHR++22Uu6eIbHWEciVHbIuD8frT8DlqTtHYaaiwHPncO6KFWnGDz5i/gL7oyl6XmOi/E6GVg==, + } + + "@fontsource/inter@5.1.0": + resolution: + { + integrity: sha512-zKZR3kf1G0noIes1frLfOHP5EXVVm0M7sV/l9f/AaYf+M/DId35FO4LkigWjqWYjTJZGgplhdv4cB+ssvCqr5A==, + } + + "@fontsource/rubik@5.1.0": + resolution: + { + integrity: sha512-QyZQw03z/v1RltDPPtWxAQsYgmwbDY6CKH/YWubRY4x9UFGuAImwFYPitR2sTB/FBj0Dxf0DftoC9kqGZKWjug==, + } + + "@img/sharp-darwin-arm64@0.33.5": + resolution: + { + integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] + os: [darwin] + + "@img/sharp-darwin-x64@0.33.5": + resolution: + { + integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [x64] - os: [win32] + os: [darwin] - "@expressive-code/core@0.35.3": + "@img/sharp-libvips-darwin-arm64@1.0.4": resolution: { - integrity: sha512-SYamcarAjufYhbuK/kfvJSvAXLsfnM7DKc78R7Dq4B73R5bKQK2m5zR0l57tXr4yp2C5Z8lu5xZncdwWxcmPdg==, - } - - "@expressive-code/plugin-frames@0.35.3": - resolution: - { - integrity: sha512-QYytMq6IsaHgTofQ5b6d+CnbxkqLdikSF2hC+IL/ZZwPYHYZoUlmjIwmJZhY4/hHqJGELrtZsyVdlt06RntgmA==, - } - - "@expressive-code/plugin-shiki@0.35.3": - resolution: - { - integrity: sha512-aFQBPepv0zhVXqJFAvfQ4vXYv/meJKiqmEEKSxdjAfwXllIV49PDlnGEXmbGYjR4hUQQjbfDgzAbrbfePc3YVQ==, - } - - "@expressive-code/plugin-text-markers@0.35.3": - resolution: - { - integrity: sha512-gDdnQrfDRXw5Y+PKHJDkpAUdf2pthYOthGcgy3JB8GOTQ3EL1h+755Ct/bGc4MR6jn+dgnQP47uHMWQaccvN6Q==, - } - - "@fontsource/inter@5.0.18": - resolution: - { - integrity: sha512-YCsoYPTcs713sI7tLtxaPrIhXAXvEetGg5Ry02ivA8qUOb3fQHojbK/X9HLD5OOKvFUNR2Ynkwb1kR1hVKQHpw==, - } - - "@fontsource/rubik@5.0.20": - resolution: - { - integrity: sha512-4iEk1Nnnz4kzrpfsjfHXOm7HDVtsDfs8uihhE4LaXqQuxnY8lERZWJhtGAKILDwbx3gsnVXI+0beUNLRmaHeCw==, - } - - "@img/sharp-darwin-arm64@0.33.4": - resolution: - { - integrity: sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==, - } - engines: - { - glibc: ">=2.26", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==, } cpu: [arm64] os: [darwin] - "@img/sharp-darwin-x64@0.33.4": + "@img/sharp-libvips-darwin-x64@1.0.4": resolution: { - integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==, - } - engines: - { - glibc: ">=2.26", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==, } cpu: [x64] os: [darwin] - "@img/sharp-libvips-darwin-arm64@1.0.2": + "@img/sharp-libvips-linux-arm64@1.0.4": resolution: { - integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==, - } - engines: { macos: ">=11", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [arm64] - os: [darwin] - - "@img/sharp-libvips-darwin-x64@1.0.2": - resolution: - { - integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==, - } - engines: - { macos: ">=10.13", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [x64] - os: [darwin] - - "@img/sharp-libvips-linux-arm64@1.0.2": - resolution: - { - integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==, - } - engines: - { glibc: ">=2.26", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [arm64] - os: [linux] - - "@img/sharp-libvips-linux-arm@1.0.2": - resolution: - { - integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==, - } - engines: - { glibc: ">=2.28", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [arm] - os: [linux] - - "@img/sharp-libvips-linux-s390x@1.0.2": - resolution: - { - integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==, - } - engines: - { glibc: ">=2.28", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [s390x] - os: [linux] - - "@img/sharp-libvips-linux-x64@1.0.2": - resolution: - { - integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==, - } - engines: - { glibc: ">=2.26", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [x64] - os: [linux] - - "@img/sharp-libvips-linuxmusl-arm64@1.0.2": - resolution: - { - integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==, - } - engines: - { musl: ">=1.2.2", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [arm64] - os: [linux] - - "@img/sharp-libvips-linuxmusl-x64@1.0.2": - resolution: - { - integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==, - } - engines: - { musl: ">=1.2.2", npm: ">=9.6.5", pnpm: ">=7.1.0", yarn: ">=3.2.0" } - cpu: [x64] - os: [linux] - - "@img/sharp-linux-arm64@0.33.4": - resolution: - { - integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==, - } - engines: - { - glibc: ">=2.26", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==, } cpu: [arm64] os: [linux] - "@img/sharp-linux-arm@0.33.4": + "@img/sharp-libvips-linux-arm@1.0.5": resolution: { - integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==, - } - engines: - { - glibc: ">=2.28", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==, } cpu: [arm] os: [linux] - "@img/sharp-linux-s390x@0.33.4": + "@img/sharp-libvips-linux-s390x@1.0.4": resolution: { - integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==, - } - engines: - { - glibc: ">=2.31", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==, } cpu: [s390x] os: [linux] - "@img/sharp-linux-x64@0.33.4": + "@img/sharp-libvips-linux-x64@1.0.4": resolution: { - integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==, - } - engines: - { - glibc: ">=2.26", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==, } cpu: [x64] os: [linux] - "@img/sharp-linuxmusl-arm64@0.33.4": + "@img/sharp-libvips-linuxmusl-arm64@1.0.4": resolution: { - integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==, - } - engines: - { - musl: ">=1.2.2", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==, } cpu: [arm64] os: [linux] - "@img/sharp-linuxmusl-x64@0.33.4": + "@img/sharp-libvips-linuxmusl-x64@1.0.4": resolution: { - integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==, - } - engines: - { - musl: ">=1.2.2", - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==, } cpu: [x64] os: [linux] - "@img/sharp-wasm32@0.33.4": + "@img/sharp-linux-arm64@0.33.5": resolution: { - integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==, + integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==, } - engines: + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] + os: [linux] + + "@img/sharp-linux-arm@0.33.5": + resolution: { - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==, } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm] + os: [linux] + + "@img/sharp-linux-s390x@0.33.5": + resolution: + { + integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [s390x] + os: [linux] + + "@img/sharp-linux-x64@0.33.5": + resolution: + { + integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [x64] + os: [linux] + + "@img/sharp-linuxmusl-arm64@0.33.5": + resolution: + { + integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [arm64] + os: [linux] + + "@img/sharp-linuxmusl-x64@0.33.5": + resolution: + { + integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + cpu: [x64] + os: [linux] + + "@img/sharp-wasm32@0.33.5": + resolution: + { + integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==, + } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [wasm32] - "@img/sharp-win32-ia32@0.33.4": + "@img/sharp-win32-ia32@0.33.5": resolution: { - integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==, - } - engines: - { - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==, } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [ia32] os: [win32] - "@img/sharp-win32-x64@0.33.4": + "@img/sharp-win32-x64@0.33.5": resolution: { - integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==, - } - engines: - { - node: ^18.17.0 || ^20.3.0 || >=21.0.0, - npm: ">=9.6.5", - pnpm: ">=7.1.0", - yarn: ">=3.2.0", + integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==, } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } cpu: [x64] os: [win32] - "@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462": - resolution: - { - integrity: sha512-etqLfpSJ5zaw76KUNF603be6d6QsiQPmaHr9FKEp4zhLZJzWCCMH6Icak7MtLUFLZLMpL761mZNImi/joBo1ZA==, - } - - "@jridgewell/gen-mapping@0.3.3": - resolution: - { - integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, - } - engines: { node: ">=6.0.0" } - "@jridgewell/gen-mapping@0.3.5": resolution: { @@ -1476,13 +1218,6 @@ packages: } engines: { node: ">=6.0.0" } - "@jridgewell/set-array@1.1.2": - resolution: - { - integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, - } - engines: { node: ">=6.0.0" } - "@jridgewell/set-array@1.2.1": resolution: { @@ -1496,10 +1231,10 @@ packages: integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, } - "@jridgewell/trace-mapping@0.3.20": + "@jridgewell/sourcemap-codec@1.5.0": resolution: { - integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==, + integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, } "@jridgewell/trace-mapping@0.3.25": @@ -1535,6 +1270,12 @@ packages: } engines: { node: ">= 8" } + "@oslojs/encoding@1.1.0": + resolution: + { + integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==, + } + "@pagefind/darwin-arm64@1.0.4": resolution: { @@ -1581,138 +1322,150 @@ packages: cpu: [x64] os: [win32] - "@rollup/rollup-android-arm-eabi@4.17.2": + "@rollup/pluginutils@5.1.2": resolution: { - integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==, + integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + "@rollup/rollup-android-arm-eabi@4.22.5": + resolution: + { + integrity: sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==, } cpu: [arm] os: [android] - "@rollup/rollup-android-arm64@4.17.2": + "@rollup/rollup-android-arm64@4.22.5": resolution: { - integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==, + integrity: sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==, } cpu: [arm64] os: [android] - "@rollup/rollup-darwin-arm64@4.17.2": + "@rollup/rollup-darwin-arm64@4.22.5": resolution: { - integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==, + integrity: sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==, } cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-x64@4.17.2": + "@rollup/rollup-darwin-x64@4.22.5": resolution: { - integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==, + integrity: sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==, } cpu: [x64] os: [darwin] - "@rollup/rollup-linux-arm-gnueabihf@4.17.2": + "@rollup/rollup-linux-arm-gnueabihf@4.22.5": resolution: { - integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==, + integrity: sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==, } cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm-musleabihf@4.17.2": + "@rollup/rollup-linux-arm-musleabihf@4.22.5": resolution: { - integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==, + integrity: sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==, } cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm64-gnu@4.17.2": + "@rollup/rollup-linux-arm64-gnu@4.22.5": resolution: { - integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==, + integrity: sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==, } cpu: [arm64] os: [linux] - "@rollup/rollup-linux-arm64-musl@4.17.2": + "@rollup/rollup-linux-arm64-musl@4.22.5": resolution: { - integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==, + integrity: sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==, } cpu: [arm64] os: [linux] - "@rollup/rollup-linux-powerpc64le-gnu@4.17.2": + "@rollup/rollup-linux-powerpc64le-gnu@4.22.5": resolution: { - integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==, + integrity: sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==, } cpu: [ppc64] os: [linux] - "@rollup/rollup-linux-riscv64-gnu@4.17.2": + "@rollup/rollup-linux-riscv64-gnu@4.22.5": resolution: { - integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==, + integrity: sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==, } cpu: [riscv64] os: [linux] - "@rollup/rollup-linux-s390x-gnu@4.17.2": + "@rollup/rollup-linux-s390x-gnu@4.22.5": resolution: { - integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==, + integrity: sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==, } cpu: [s390x] os: [linux] - "@rollup/rollup-linux-x64-gnu@4.17.2": + "@rollup/rollup-linux-x64-gnu@4.22.5": resolution: { - integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==, + integrity: sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==, } cpu: [x64] os: [linux] - "@rollup/rollup-linux-x64-musl@4.17.2": + "@rollup/rollup-linux-x64-musl@4.22.5": resolution: { - integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==, + integrity: sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==, } cpu: [x64] os: [linux] - "@rollup/rollup-win32-arm64-msvc@4.17.2": + "@rollup/rollup-win32-arm64-msvc@4.22.5": resolution: { - integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==, + integrity: sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==, } cpu: [arm64] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.17.2": + "@rollup/rollup-win32-ia32-msvc@4.22.5": resolution: { - integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==, + integrity: sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==, } cpu: [ia32] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.17.2": + "@rollup/rollup-win32-x64-msvc@4.22.5": resolution: { - integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==, + integrity: sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==, } cpu: [x64] os: [win32] - "@shikijs/core@1.5.2": + "@shikijs/core@1.20.0": resolution: { - integrity: sha512-wSAOgaz48GmhILFElMCeQypSZmj6Ru6DttOOtl3KNkdJ17ApQuGNCfzpk4cClasVrnIu45++2DBwG4LNMQAfaA==, + integrity: sha512-KlO3iE0THzSdYkzDFugt8SHe6FR3qNYTkmpbdW1d6xo8juQkMjybxAw/cBi2npL2eb2F4PbbnSs5Z9tDusfvyg==, } "@shikijs/core@1.6.3": @@ -1721,6 +1474,30 @@ packages: integrity: sha512-QnJKHFUW95GnlJLJGP6QLx4M69HM0KlXk+R2Y8lr/x4nAx1Yb/lsuxq4XwybuUjTxbJk+BT0g/kvn0bcsjGGHg==, } + "@shikijs/engine-javascript@1.20.0": + resolution: + { + integrity: sha512-ZUMo758uduM0Tfgzi/kd+0IKMbNdumCxxWjY36uf1DIs2Qyg9HIq3vA1Wfa/vc6HE7tHWFpANRi3mv7UzJ68MQ==, + } + + "@shikijs/engine-oniguruma@1.20.0": + resolution: + { + integrity: sha512-MQ40WkVTZk7by33ces4PGK6XNFSo6PYvKTSAr2kTWdRNhFmOcnaX+1XzvFwB26eySXR7U74t91czZ1qJkEgxTA==, + } + + "@shikijs/types@1.20.0": + resolution: + { + integrity: sha512-y+EaDvU2K6/GaXOKXxJaGnr1XtmZMF7MfS0pSEDdxEq66gCtKsLwQvVwoQFdp7R7dLlNAro3ijEE19sMZ0pzqg==, + } + + "@shikijs/vscode-textmate@9.2.2": + resolution: + { + integrity: sha512-TMp15K+GGYrWlZM8+Lnj9EaHEFmOen0WJBrfa17hF7taDOYthuPPV0GWzfd/9iMij0akS/8Yw2ikquH7uVi/fg==, + } + "@trysound/sax@0.2.0": resolution: { @@ -1782,18 +1559,36 @@ packages: integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, } + "@types/estree@1.0.6": + resolution: + { + integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, + } + "@types/hast@3.0.3": resolution: { integrity: sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==, } + "@types/hast@3.0.4": + resolution: + { + integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, + } + "@types/mdast@4.0.3": resolution: { integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==, } + "@types/mdast@4.0.4": + resolution: + { + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, + } + "@types/mdx@2.0.10": resolution: { @@ -1806,12 +1601,6 @@ packages: integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==, } - "@types/nlcst@1.0.4": - resolution: - { - integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==, - } - "@types/nlcst@2.0.3": resolution: { @@ -1848,60 +1637,48 @@ packages: integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, } - "@volar/kit@2.2.4": + "@volar/kit@2.4.5": resolution: { - integrity: sha512-TyRYaj56NBwa+0DgYbIkNQm+pN5DaV1dvZ5PzoKGDk9oag/sCG+W6wVkyaqmYCNJkXpmRtM627RkeMRTBvnYzw==, + integrity: sha512-ZzyErW5UiDfiIuJ/lpqc2Kx5PHDGDZ/bPlPJYpRcxlrn8Z8aDhRlsLHkNKcNiH65TmNahk2kbLaiejiqu6BD3A==, } peerDependencies: typescript: "*" - "@volar/language-core@2.2.4": + "@volar/language-core@2.4.5": resolution: { - integrity: sha512-7As47GndxGxsqqYnbreLrfB5NDUeQioPM2LJKUuB4/34c0NpEJ2byVl3c9KYdjIdiEstWZ9JLtLKNTaPWb5jtA==, + integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==, } - "@volar/language-server@2.2.4": + "@volar/language-server@2.4.5": resolution: { - integrity: sha512-wgRsKsqFMY7MRkmBfIX+GB0uzAv2Nks7YS3Ud6RWdHsjEu7tF+cXzBX/IRgW5HOayLLPC1xES2PYXk26hdOIoA==, + integrity: sha512-l5PswE0JzCtstTlwBUpikeSa3lNUBJhTuWtj9KclZTGi2Uex4RcqGOhTiDsUUtvdv/hEuYCxGq1EdJJPlQsD/g==, } - "@volar/language-service@2.2.4": + "@volar/language-service@2.4.5": resolution: { - integrity: sha512-3OxJFADEsAZp1RoTS3SX2GY9SeVnB9mbd3N/Faz45IvnT2EFAyVJGPOyrz5bJDvKuCtjdoTNNWS1GX1bHGytrA==, + integrity: sha512-xiFlL0aViGg6JhwAXyohPrdlID13uom8WQg6DWYaV8ob8RRy+zoLlBUI8SpQctwlWEO9poyrYK01revijAwkcw==, } - "@volar/snapshot-document@2.2.4": + "@volar/source-map@2.4.5": resolution: { - integrity: sha512-XwL9Jo5+nn4WZystok1+kRXbmFuJXaCx0KfJYZizJQDd7kPDgBcyci/aKsBVNhIgiD9JT0KKycru0ndyHRadGQ==, + integrity: sha512-varwD7RaKE2J/Z+Zu6j3mNNJbNT394qIxXwdvz/4ao/vxOfyClZpSDtLKkwWmecinkOVos5+PWkWraelfMLfpw==, } - "@volar/source-map@2.2.4": + "@volar/typescript@2.4.5": resolution: { - integrity: sha512-m92FLpR9vB1YEZfiZ+bfgpLrToL/DNkOrorWVep3pffHrwwI4Tx2oIQN+sqHJfKkiT5N3J1owC+8crhAEinfjg==, + integrity: sha512-mcT1mHvLljAEtHviVcBuOyAwwMKz1ibXTi5uYtP/pf4XxoAzpdkQ+Br2IC0NPCvLCbjPZmbf3I0udndkfB1CDg==, } - "@volar/typescript@2.2.4": + "@vscode/emmet-helper@2.9.3": resolution: { - integrity: sha512-uAQC53tgEbHO62G8NXMfmBrJAlP2QJ9WxVEEQqqK3I6VSy8frL5LbH3hAWODxiwMWixv74wJLWlKbWXOgdIoRQ==, - } - - "@vscode/emmet-helper@2.9.2": - resolution: - { - integrity: sha512-MaGuyW+fa13q3aYsluKqclmh62Hgp0BpKIqS66fCxfOaBcVQ1OnMQxRRgQUYnCkxFISAQlkJ0qWWPyXjro1Qrg==, - } - - "@vscode/l10n@0.0.16": - resolution: - { - integrity: sha512-JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==, + integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==, } "@vscode/l10n@0.0.18": @@ -1918,14 +1695,20 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn@8.11.3: + acorn@8.12.1: resolution: { - integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, + integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==, } engines: { node: ">=0.4.0" } hasBin: true + ajv@8.17.1: + resolution: + { + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, + } + ansi-align@3.0.1: resolution: { @@ -2017,38 +1800,39 @@ packages: } hasBin: true - astro-expressive-code@0.35.3: + astro-expressive-code@0.35.6: resolution: { - integrity: sha512-f1L1m3J3EzZHDEox6TXmuKo5fTSbaNxE/HU0S0UQmvlCowtOKnU/LOsoDwsbQSYGKz+fdLRPsCjFMiKqEoyfcw==, + integrity: sha512-1U4KrvFuodaCV3z4I1bIR16SdhQlPkolGsYTtiANxPZUVv/KitGSCTjzksrkPonn1XuwVqvnwmUUVzTLWngnBA==, } peerDependencies: astro: ^4.0.0-beta || ^3.3.0 - astro@4.10.1: + astro@4.15.9: resolution: { - integrity: sha512-7bbnUX1CW+12suz0Do8ef1CihqVjDyUW/H/0piNHZyBE3W/VFt5GP5ZxlPzzJLoGtaXif0aXJ4iPurEem2LpdA==, + integrity: sha512-51oXq9qrZ5OPWYmEXt1kGrvWmVeWsx28SgBTzi2XW6iwcnW/wC5ONm6ol6qBGSCF93tQvZplXvuzpaw1injECA==, } engines: { node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: ">=9.6.5", pnpm: ">=7.1.0" } hasBin: true - autoprefixer@10.4.19: + autoprefixer@10.4.20: resolution: { - integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==, + integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==, } engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 - axobject-query@4.0.0: + axobject-query@4.1.0: resolution: { - integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==, + integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==, } + engines: { node: ">= 0.4" } bail@2.0.2: resolution: @@ -2113,10 +1897,17 @@ packages: } engines: { node: ">=8" } - browserslist@4.23.0: + braces@3.0.3: resolution: { - integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==, + integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, + } + engines: { node: ">=8" } + + browserslist@4.24.0: + resolution: + { + integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==, } engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true @@ -2147,6 +1938,12 @@ packages: integrity: sha512-WJvYsOjd1/BYUY6SNGUosK9DUidBPDTnOARHp3fSmFO1ekdxaY6nKRttEVrfMmYi80ctS0kz1wiWmm14fVc3ew==, } + caniuse-lite@1.0.30001664: + resolution: + { + integrity: sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==, + } + ccount@2.0.1: resolution: { @@ -2191,13 +1988,6 @@ packages: integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==, } - chokidar@3.5.3: - resolution: - { - integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, - } - engines: { node: ">= 8.10.0" } - chokidar@3.6.0: resolution: { @@ -2219,12 +2009,12 @@ packages: } engines: { node: ">=10" } - cli-cursor@4.0.0: + cli-cursor@5.0.0: resolution: { - integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==, + integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==, } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + engines: { node: ">=18" } cli-spinners@2.9.2: resolution: @@ -2342,19 +2132,12 @@ packages: } engines: { node: ">= 0.6" } - cross-spawn@7.0.3: + css-blank-pseudo@7.0.0: resolution: { - integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + integrity: sha512-v9xXYGdm6LIn4iHEfu3egk/PM1g/yJr8uwTIj6E44kurv5dE/4y3QW7WdVmZ0PVnqfTuK+C0ClZcEEiaKWBL9Q==, } - engines: { node: ">= 8" } - - css-blank-pseudo@6.0.2: - resolution: - { - integrity: sha512-J/6m+lsqpKPqWHOifAFtKFeGLOzw3jR92rxQcwRUfA/eTuZzKfKlxOmYDx2+tqOPQAueNvBiY8WhAeHu5qNmTg==, - } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -2367,21 +2150,21 @@ packages: peerDependencies: postcss: ^8.0.9 - css-has-pseudo@6.0.5: + css-has-pseudo@7.0.0: resolution: { - integrity: sha512-ZTv6RlvJJZKp32jPYnAJVhowDCrRrHUTAxsYSuUPBEDJjzws6neMnzkRblxtgmv1RgcV5dhH2gn7E3wA9Wt6lw==, + integrity: sha512-vO6k9bBt4/eEZ2PeHmS2VXjJga5SBy6O1ESyaOkse5/lvp6piFqg8Sh5KTU7X33M7Uh/oqo+M3EeMktQrZoTCQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - css-prefers-color-scheme@9.0.1: + css-prefers-color-scheme@10.0.0: resolution: { - integrity: sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==, + integrity: sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -2418,10 +2201,10 @@ packages: } engines: { node: ">= 6" } - cssdb@8.0.1: + cssdb@8.1.1: resolution: { - integrity: sha512-diegY/vnOYmPXY0bOBj5jeHaiK8MMpjgPuipirY8pF9AthtqEXgqVdKF5tnb6RTc/ZdhQqG0TBnInQ5CbbUW7Q==, + integrity: sha512-kRbSRgZoxtZNl5snb3nOzBkFOt5AwnephcUTIEFc2DebKG9PN50/cHarlwOooTxYQ/gxsnKs3BxykhNLmfvyLg==, } cssesc@3.0.0: @@ -2432,10 +2215,10 @@ packages: engines: { node: ">=4" } hasBin: true - cssnano-preset-default@7.0.2: + cssnano-preset-default@7.0.6: resolution: { - integrity: sha512-z95kGKZx8VWHfERj7LFzuiTxylbvEp07ZEYaFu+t6bFyNOXLd/+3oPyNaY7ISwcrfHFCkt8OfRo4IZxVRJZ7dg==, + integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -2450,10 +2233,10 @@ packages: peerDependencies: postcss: ^8.4.31 - cssnano@7.0.2: + cssnano@7.0.6: resolution: { - integrity: sha512-LXm/Xx6TNLzfHM2lBaIQHfvtdW5QfdbyLzfJAWZrclCAb47yVa0/yJG69+amcw3Lq0YZ+kyU40rbsMPLcMt9aw==, + integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -2478,6 +2261,18 @@ packages: supports-color: optional: true + debug@4.3.7: + resolution: + { + integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, + } + engines: { node: ">=6.0" } + peerDependencies: + supports-color: "*" + peerDependenciesMeta: + supports-color: + optional: true + decode-named-character-reference@1.0.2: resolution: { @@ -2581,10 +2376,10 @@ packages: integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, } - electron-to-chromium@1.4.773: + electron-to-chromium@1.5.29: resolution: { - integrity: sha512-87eHF+h3PlCRwbxVEAw9KtK3v7lWfc/sUDr0W76955AdYTG4bV/k0zrl585Qnj/skRMH2qOSiE+kqMeOQ+LOpw==, + integrity: sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==, } emmet@2.4.6: @@ -2618,24 +2413,16 @@ packages: } engines: { node: ">=0.12" } - es-module-lexer@1.5.3: + es-module-lexer@1.5.4: resolution: { - integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==, + integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==, } - esbuild@0.20.2: + esbuild@0.21.5: resolution: { - integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==, - } - engines: { node: ">=12" } - hasBin: true - - esbuild@0.21.4: - resolution: - { - integrity: sha512-sFMcNNrj+Q0ZDolrp5pDhH0nRPN9hLIM3fRPwgbLYJeSHHgnXSnbV3xYgSVuOeLWH9c73VwmEverVzupIv5xuA==, + integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, } engines: { node: ">=12" } hasBin: true @@ -2647,6 +2434,13 @@ packages: } engines: { node: ">=6" } + escalade@3.2.0: + resolution: + { + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, + } + engines: { node: ">=6" } + escape-string-regexp@1.0.5: resolution: { @@ -2699,6 +2493,12 @@ packages: integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==, } + estree-walker@2.0.2: + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } + estree-walker@3.0.3: resolution: { @@ -2711,17 +2511,10 @@ packages: integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, } - execa@8.0.1: + expressive-code@0.35.6: resolution: { - integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, - } - engines: { node: ">=16.17" } - - expressive-code@0.35.3: - resolution: - { - integrity: sha512-XjWWUCxS4uQjPoRM98R7SNWWIYlFEaOeHm1piWv+c7coHCekuWno81thsc3g/UJ+DajNtOEsIQIAAcsBQZ8LMg==, + integrity: sha512-+mx+TPTbMqgo0mL92Xh9QgjW0kSQIsEivMgEcOnaqKqL7qCw8Vkqc5Rg/di7ZYw4aMUSr74VTc+w8GQWu05j1g==, } extend-shallow@2.0.1: @@ -2737,6 +2530,12 @@ packages: integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, } + fast-deep-equal@3.1.3: + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } + fast-glob@3.3.2: resolution: { @@ -2744,12 +2543,24 @@ packages: } engines: { node: ">=8.6.0" } + fast-uri@3.0.2: + resolution: + { + integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==, + } + fastq@1.15.0: resolution: { integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, } + fastq@1.17.1: + resolution: + { + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, + } + fill-range@7.0.1: resolution: { @@ -2757,6 +2568,20 @@ packages: } engines: { node: ">=8" } + fill-range@7.1.1: + resolution: + { + integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, + } + engines: { node: ">=8" } + + find-up-simple@1.0.0: + resolution: + { + integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==, + } + engines: { node: ">=18" } + find-up@4.1.0: resolution: { @@ -2764,13 +2589,6 @@ packages: } engines: { node: ">=8" } - find-up@5.0.0: - resolution: - { - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, - } - engines: { node: ">=10" } - find-yarn-workspace-root2@1.2.16: resolution: { @@ -2831,13 +2649,6 @@ packages: } engines: { node: ">=18" } - get-stream@8.0.1: - resolution: - { - integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, - } - engines: { node: ">=16" } - github-slugger@2.0.0: resolution: { @@ -2863,6 +2674,7 @@ packages: { integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, } + deprecated: Glob versions prior to v9 are no longer supported globals@11.12.0: resolution: @@ -2970,6 +2782,12 @@ packages: integrity: sha512-hZOofyZANbyWo+9RP75xIDV/gq+OUKx+T46IlwERnKmfpwp81XBFbT9mi26ws+SJchA4RVUQwIBJpqEOBhMzEQ==, } + hast-util-to-html@9.0.3: + resolution: + { + integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==, + } + hast-util-to-jsx-runtime@2.3.0: resolution: { @@ -3036,17 +2854,16 @@ packages: integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==, } - human-signals@5.0.0: + i18next@23.15.1: resolution: { - integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, + integrity: sha512-wB4abZ3uK7EWodYisHl/asf8UYEhrI/vj/8aoSsrj/ZDxj4/UXPOa1KvFt1Fq5hkUHquNqwFlDprmjZ8iySgYA==, } - engines: { node: ">=16.17.0" } - import-meta-resolve@4.0.0: + import-meta-resolve@4.1.0: resolution: { - integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==, + integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==, } inflight@1.0.6: @@ -3054,6 +2871,7 @@ packages: { integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, } + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.4: resolution: @@ -3098,13 +2916,6 @@ packages: } engines: { node: ">=8" } - is-buffer@2.0.5: - resolution: - { - integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==, - } - engines: { node: ">=4" } - is-core-module@2.13.1: resolution: { @@ -3194,13 +3005,6 @@ packages: integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==, } - is-stream@3.0.0: - resolution: - { - integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - is-unicode-supported@1.3.0: resolution: { @@ -3222,12 +3026,6 @@ packages: } engines: { node: ">=16" } - isexe@2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } - jiti@1.21.0: resolution: { @@ -3263,6 +3061,12 @@ packages: engines: { node: ">=4" } hasBin: true + json-schema-traverse@1.0.0: + resolution: + { + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, + } + json5@2.2.3: resolution: { @@ -3277,6 +3081,12 @@ packages: integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==, } + jsonc-parser@3.3.1: + resolution: + { + integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==, + } + kind-of@6.0.3: resolution: { @@ -3305,13 +3115,6 @@ packages: } engines: { node: ">=10" } - lilconfig@3.0.0: - resolution: - { - integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==, - } - engines: { node: ">=14" } - lilconfig@3.1.1: resolution: { @@ -3319,6 +3122,13 @@ packages: } engines: { node: ">=14" } + lilconfig@3.1.2: + resolution: + { + integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==, + } + engines: { node: ">=14" } + lines-and-columns@1.2.4: resolution: { @@ -3339,13 +3149,6 @@ packages: } engines: { node: ">=8" } - locate-path@6.0.0: - resolution: - { - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, - } - engines: { node: ">=10" } - lodash.memoize@4.1.2: resolution: { @@ -3358,6 +3161,12 @@ packages: integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, } + lodash@4.17.21: + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } + log-symbols@6.0.0: resolution: { @@ -3377,17 +3186,16 @@ packages: integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, } - lru-cache@6.0.0: + magic-string@0.30.11: resolution: { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==, } - engines: { node: ">=10" } - magic-string@0.30.10: + magicast@0.3.5: resolution: { - integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==, + integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==, } markdown-extensions@2.0.0: @@ -3523,12 +3331,6 @@ packages: integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==, } - merge-stream@2.0.0: - resolution: - { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, - } - merge2@1.4.1: resolution: { @@ -3759,19 +3561,19 @@ packages: } engines: { node: ">=8.6" } - mimic-fn@2.1.0: + micromatch@4.0.8: resolution: { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, } - engines: { node: ">=6" } + engines: { node: ">=8.6" } - mimic-fn@4.0.0: + mimic-function@5.0.1: resolution: { - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, + integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==, } - engines: { node: ">=12" } + engines: { node: ">=18" } minimatch@3.1.2: resolution: @@ -3792,6 +3594,12 @@ packages: integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, } + ms@2.1.3: + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } + muggle-string@0.4.1: resolution: { @@ -3812,11 +3620,12 @@ packages: engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true - nlcst-to-string@3.1.1: + neotraverse@0.6.18: resolution: { - integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==, + integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==, } + engines: { node: ">= 10" } nlcst-to-string@4.0.0: resolution: @@ -3824,10 +3633,10 @@ packages: integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==, } - node-releases@2.0.14: + node-releases@2.0.18: resolution: { - integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, + integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==, } normalize-path@3.0.0: @@ -3850,13 +3659,6 @@ packages: integrity: sha512-5PDmaAsVfnWUgTUbJ3ERwn7u79Z0dYxN9ErxCpVJJqe2RK0PJ3z+iFUxuqjwtlDDegXvtWoxD/3Fzxox7tFGWA==, } - npm-run-path@5.1.0: - resolution: - { - integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - nth-check@2.1.1: resolution: { @@ -3883,24 +3685,23 @@ packages: integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, } - onetime@5.1.2: + onetime@7.0.0: resolution: { - integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==, } - engines: { node: ">=6" } + engines: { node: ">=18" } - onetime@6.0.0: + oniguruma-to-js@0.4.3: resolution: { - integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, + integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==, } - engines: { node: ">=12" } - ora@8.0.1: + ora@8.1.0: resolution: { - integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==, + integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==, } engines: { node: ">=18" } @@ -3911,17 +3712,10 @@ packages: } engines: { node: ">=6" } - p-limit@3.1.0: + p-limit@6.1.0: resolution: { - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, - } - engines: { node: ">=10" } - - p-limit@5.0.0: - resolution: - { - integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==, + integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==, } engines: { node: ">=18" } @@ -3932,13 +3726,6 @@ packages: } engines: { node: ">=8" } - p-locate@5.0.0: - resolution: - { - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, - } - engines: { node: ">=10" } - p-queue@8.0.1: resolution: { @@ -3973,12 +3760,6 @@ packages: integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==, } - parse-latin@5.0.1: - resolution: - { - integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==, - } - parse-latin@7.0.0: resolution: { @@ -4011,32 +3792,12 @@ packages: } engines: { node: ">=0.10.0" } - path-key@3.1.1: - resolution: - { - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, - } - engines: { node: ">=8" } - - path-key@4.0.0: - resolution: - { - integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, - } - engines: { node: ">=12" } - path-parse@1.0.7: resolution: { integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, } - path-to-regexp@6.2.2: - resolution: - { - integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==, - } - periscopic@3.1.0: resolution: { @@ -4049,6 +3810,12 @@ packages: integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, } + picocolors@1.1.0: + resolution: + { + integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==, + } + picomatch@2.3.1: resolution: { @@ -4084,19 +3851,19 @@ packages: } engines: { node: ">=8" } - postcss-attribute-case-insensitive@6.0.3: + postcss-attribute-case-insensitive@7.0.0: resolution: { - integrity: sha512-KHkmCILThWBRtg+Jn1owTnHPnFit4OkqS+eKiGEOPIGke54DCeYGJ6r0Fx/HjfE9M9kznApCLcU0DvnPchazMQ==, + integrity: sha512-ETMUHIw67Kyv9Q81nden/NuJbRh+4/S963giXpfSLd5eaKK8kd1UdAHMVRV/NG/w/N6Cq8B0qZIZbZZWU/67+A==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-calc@10.0.0: + postcss-calc@10.0.2: resolution: { - integrity: sha512-OmjhudoNTP0QleZCwl1i6NeBwN+5MZbY5ersLZz69mjJiDVv/p57RjRuKDkHeDWr4T+S97wQfsqRTNoDHB2e3g==, + integrity: sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==, } engines: { node: ^18.12 || ^20.9 || >=22.0 } peerDependencies: @@ -4111,100 +3878,100 @@ packages: peerDependencies: postcss: ^8.4.6 - postcss-color-functional-notation@6.0.11: + postcss-color-functional-notation@7.0.2: resolution: { - integrity: sha512-gJ+hAtAsgBF4w7eh28Pg7EA60lx7vE5xO/B/yZawaI6FYHky+5avA9YSe73nJHnAMEVFpCMeJc6Wts5g+niksg==, + integrity: sha512-c2WkR0MS73s+P5SgY1KBaSEE61Rj+miW095rkWDnMQxbTCQkp6y/jft8U0QMxEsI4k1Pd4PdV+TP9/1zIDR6XQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-color-hex-alpha@9.0.4: + postcss-color-hex-alpha@10.0.0: resolution: { - integrity: sha512-XQZm4q4fNFqVCYMGPiBjcqDhuG7Ey2xrl99AnDJMyr5eDASsAGalndVgHZF8i97VFNy1GQeZc4q2ydagGmhelQ==, + integrity: sha512-1kervM2cnlgPs2a8Vt/Qbe5cQ++N7rkYo/2rz2BkqJZIHQwaVuJgQH38REHrAi4uM0b1fqxMkWYmese94iMp3w==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-color-rebeccapurple@9.0.3: + postcss-color-rebeccapurple@10.0.0: resolution: { - integrity: sha512-ruBqzEFDYHrcVq3FnW3XHgwRqVMrtEPLBtD7K2YmsLKVc2jbkxzzNEctJKsPCpDZ+LeMHLKRDoSShVefGc+CkQ==, + integrity: sha512-JFta737jSP+hdAIEhk1Vs0q0YF5P8fFcj+09pweS8ktuGuZ8pPlykHsk6mPxZ8awDl4TrcxUqJo9l1IhVr/OjQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-colormin@7.0.0: + postcss-colormin@7.0.2: resolution: { - integrity: sha512-5CN6fqtsEtEtwf3mFV3B4UaZnlYljPpzmGeDB4yCK067PnAtfLe9uX2aFZaEwxHE7HopG5rUkW8gyHrNAesHEg==, + integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: postcss: ^8.4.31 - postcss-convert-values@7.0.0: + postcss-convert-values@7.0.4: resolution: { - integrity: sha512-bMuzDgXBbFbByPgj+/r6va8zNuIDUaIIbvAFgdO1t3zdgJZ77BZvu6dfWyd6gHEJnYzmeVr9ayUsAQL3/qLJ0w==, + integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: postcss: ^8.4.31 - postcss-custom-media@10.0.6: + postcss-custom-media@11.0.1: resolution: { - integrity: sha512-BjihQoIO4Wjqv9fQNExSJIim8UAmkhLxuJnhJsLTRFSba1y1MhxkJK5awsM//6JJ+/Tu5QUxf624RQAvKHv6SA==, + integrity: sha512-vfBliYVgEEJUFXCRPQ7jYt1wlD322u+/5GT0tZqMVYFInkpDHfjhU3nk2quTRW4uFc/umOOqLlxvrEOZRvloMw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-custom-properties@13.3.10: + postcss-custom-properties@14.0.1: resolution: { - integrity: sha512-ejaalIpl7p0k0L5ngIZ86AZGmp3m1KdeOCbSQTK4gQcB1ncaoPTHorw206+tsZRIhIDYvh5ZButEje6740YDXw==, + integrity: sha512-SB4GjuZjIq5GQFNbxFrirQPbkdbJooyNy8bh+fcJ8ZG0oasJTflTTtR4geb56h+FBVDIb9Hx4v/NiG2caOj8nQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-custom-selectors@7.1.10: + postcss-custom-selectors@8.0.1: resolution: { - integrity: sha512-bV/6+IExyT2J4kMzX6c+ZMlN1xDfjcC4ePr1ywKezcTgwgUn11qQN3jdzFBpo8Dk1K7vO/OYOwMb5AtJP4JZcg==, + integrity: sha512-2McIpyhAeKhUzVqrP4ZyMBpK5FuD+Y9tpQwhcof49652s7gez8057cSaOg/epYcKlztSYxb0GHfi7W5h3JoGUg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-dir-pseudo-class@8.0.1: + postcss-dir-pseudo-class@9.0.0: resolution: { - integrity: sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==, + integrity: sha512-T59BG9lURiXmhcJMyKbyjNAK3KCyEQYEhaz9GAETHXfIy9XbGQeyz+H0zIwRJlrP4KKRPJolNYe3QjQPemMjBA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-discard-comments@7.0.0: + postcss-discard-comments@7.0.3: resolution: { - integrity: sha512-xpSdzRqYmy4YIVmjfGyYXKaI1SRnK6CTr+4Zmvyof8ANwvgfZgGdVtmgAvzh59gJm808mJCWQC9tFN0KF5dEXA==, + integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: postcss: ^8.4.31 - postcss-discard-duplicates@7.0.0: + postcss-discard-duplicates@7.0.1: resolution: { - integrity: sha512-bAnSuBop5LpAIUmmOSsuvtKAAKREB6BBIYStWUTGq8oG5q9fClDMMuY8i4UPI/cEcDx2TN+7PMnXYIId20UVDw==, + integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -4228,30 +3995,30 @@ packages: peerDependencies: postcss: ^8.4.31 - postcss-double-position-gradients@5.0.6: + postcss-double-position-gradients@6.0.0: resolution: { - integrity: sha512-QJ+089FKMaqDxOhhIHsJrh4IP7h4PIHNC5jZP5PMmnfUScNu8Hji2lskqpFWCvu+5sj+2EJFyzKd13sLEWOZmQ==, + integrity: sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-focus-visible@9.0.1: + postcss-focus-visible@10.0.0: resolution: { - integrity: sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==, + integrity: sha512-GJjzvTj7JY+zN7wVBQ4osdKX53QLUdr6r2rSEkBUqrEMDKu3fHMHKOY9rirdirbHCx3IETnK25EtpPARR2KWNw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-focus-within@8.0.1: + postcss-focus-within@9.0.0: resolution: { - integrity: sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==, + integrity: sha512-QwflAWUToNZvQLGbc4qJhrQO8yZ5617L6hSNzNWDoqRX4FoIh9fbJbEjy0nvFPciaaOoCaeqcxBwYPbFU0HvBw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -4263,21 +4030,21 @@ packages: peerDependencies: postcss: ^8.1.0 - postcss-gap-properties@5.0.1: + postcss-gap-properties@6.0.0: resolution: { - integrity: sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==, + integrity: sha512-Om0WPjEwiM9Ru+VhfEDPZJAKWUd0mV1HmNXqp2C29z80aQ2uP9UVhLc7e3aYMIor/S5cVhoPgYQ7RtfeZpYTRw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-image-set-function@6.0.3: + postcss-image-set-function@7.0.0: resolution: { - integrity: sha512-i2bXrBYzfbRzFnm+pVuxVePSTCRiNmlfssGI4H0tJQvDue+yywXwUxe68VyzXs7cGtMaH6MCLY6IbCShrSroCw==, + integrity: sha512-QL7W7QNlZuzOwBTeXEmbVckNt1FSmhQtbMRvGGqqU4Nf4xk6KUEQhAoWuMzwbSv5jxiRiSZ5Tv7eiDB9U87znA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -4299,12 +4066,12 @@ packages: peerDependencies: postcss: ^8.4.21 - postcss-lab-function@6.0.16: + postcss-lab-function@7.0.2: resolution: { - integrity: sha512-QWv0VxfjgIl8jBR/wuQcm/o31jn4P/LwzYuVKzNQoO5t7HPcU0d3RfWUiDrHN3frmSv+YYZppr3P81tKFTDyqg==, + integrity: sha512-h4ARGLIBtC1PmCHsLgTWWj8j1i1CXoaht4A5RlITDX2z9AeFBak0YlY6sdF4oJGljrep+Dg2SSccIj4QnFbRDg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -4323,28 +4090,28 @@ packages: ts-node: optional: true - postcss-logical@7.0.1: + postcss-logical@8.0.0: resolution: { - integrity: sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==, + integrity: sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-merge-longhand@7.0.1: + postcss-merge-longhand@7.0.4: resolution: { - integrity: sha512-qZlD26hnqSTMxSSOMS8+QCeRWtqOdMKeQHvHcBhjL3mJxKUs47cvO1Y1x3iTdYIk3ioMcRHTiy229TT0mEMH/A==, + integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: postcss: ^8.4.31 - postcss-merge-rules@7.0.1: + postcss-merge-rules@7.0.4: resolution: { - integrity: sha512-bb8McYQbo2etgs0uVt6AfngajACK3FHSVP3sGLhprrjbtHJWgG03JZ4KKBlJ8/5Fb8/Rr+mMKaybMYeoYrAg0A==, + integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -4368,19 +4135,19 @@ packages: peerDependencies: postcss: ^8.4.31 - postcss-minify-params@7.0.0: + postcss-minify-params@7.0.2: resolution: { - integrity: sha512-XOJAuX8Q/9GT1sGxlUvaFEe2H9n50bniLZblXXsAT/BwSfFYvzSZeFG7uupwc0KbKpTnflnQ7aMwGzX6JUWliQ==, + integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: postcss: ^8.4.31 - postcss-minify-selectors@7.0.1: + postcss-minify-selectors@7.0.4: resolution: { - integrity: sha512-YfIbGtcgMFquPxV2L/ASs36ZS4DsgfcDX9tQ8cTEIvBTv+0GXFKtcvvpi9tCKto/+DWGWYKMCESFG3Pnan0Feg==, + integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -4395,12 +4162,12 @@ packages: peerDependencies: postcss: ^8.2.14 - postcss-nesting@12.1.5: + postcss-nesting@13.0.0: resolution: { - integrity: sha512-N1NgI1PDCiAGWPTYrwqm8wpjv0bgDmkYHH72pNsqTCv9CObxjxftdYu6AKtGN+pnJa7FQjMm3v4sp8QJbFsYdQ==, + integrity: sha512-TCGQOizyqvEkdeTPM+t6NYwJ3EJszYE/8t8ILxw/YoeUvz2rz7aM8XTAmBWh9/DJjfaaabL88fWrsVHSPF2zgA==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -4458,10 +4225,10 @@ packages: peerDependencies: postcss: ^8.4.31 - postcss-normalize-unicode@7.0.0: + postcss-normalize-unicode@7.0.2: resolution: { - integrity: sha512-OnKV52/VFFDAim4n0pdI+JAhsolLBdnCKxE6VV5lW5Q/JeVGFN8UM8ur6/A3EAMLsT1ZRm3fDHh/rBoBQpqi2w==, + integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -4485,30 +4252,30 @@ packages: peerDependencies: postcss: ^8.4.31 - postcss-opacity-percentage@2.0.0: + postcss-opacity-percentage@3.0.0: resolution: { - integrity: sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==, + integrity: sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: - postcss: ^8.2 + postcss: ^8.4 - postcss-ordered-values@7.0.0: + postcss-ordered-values@7.0.1: resolution: { - integrity: sha512-KROvC63A8UQW1eYDljQe1dtwc1E/M+mMwDT6z7khV/weHYLWTghaLRLunU7x1xw85lWFwVZOAGakxekYvKV+0w==, + integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: postcss: ^8.4.31 - postcss-overflow-shorthand@5.0.1: + postcss-overflow-shorthand@6.0.0: resolution: { - integrity: sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==, + integrity: sha512-BdDl/AbVkDjoTofzDQnwDdm/Ym6oS9KgmO7Gr+LHYjNWJ6ExORe4+3pcLQsLA9gIROMkiGVjjwZNoL/mpXHd5Q==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 @@ -4520,37 +4287,37 @@ packages: peerDependencies: postcss: ^8 - postcss-place@9.0.1: + postcss-place@10.0.0: resolution: { - integrity: sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==, + integrity: sha512-5EBrMzat2pPAxQNWYavwAfoKfYcTADJ8AXGVPcUZ2UkNloUTWzJQExgrzrDkh3EKzmAx1evfTAzF9I8NGcc+qw==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-preset-env@9.5.14: + postcss-preset-env@10.0.5: resolution: { - integrity: sha512-gTMi+3kENN/mN+K59aR+vEOjlkujTmmXJcM9rnAqGh9Y/euQ/ypdp9rd8mO1eoIjAD8vNS15+xbkBxoi+65BqQ==, + integrity: sha512-ipPOgr3RY0utgJDbNoCX2dxKoQ4e4WO1pC21QhDlxCAX8+qC8O2Ezkzb54fd+8XtZ1UveA5gLjBsVo6dJDoWIg==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-pseudo-class-any-link@9.0.2: + postcss-pseudo-class-any-link@10.0.0: resolution: { - integrity: sha512-HFSsxIqQ9nA27ahyfH37cRWGk3SYyQLpk0LiWw/UGMV4VKT5YG2ONee4Pz/oFesnK0dn2AjcyequDbIjKJgB0g==, + integrity: sha512-bde8VE08Gq3ekKDq2BQ0ESOjNX54lrFDK3U9zABPINaqHblbZL/4Wfo5Y2vk6U64yVd/sjDwTzuiisFBpGNNIQ==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-reduce-initial@7.0.0: + postcss-reduce-initial@7.0.2: resolution: { - integrity: sha512-iqGgmBxY9LrblZ0BKLjmrA1mC/cf9A/wYCCqSmD6tMi+xAyVl0+DfixZIHSVDMbCPRPjNmVF0DFGth/IDGelFQ==, + integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -4573,29 +4340,15 @@ packages: peerDependencies: postcss: ^8.0.3 - postcss-selector-not@7.0.2: + postcss-selector-not@8.0.0: resolution: { - integrity: sha512-/SSxf/90Obye49VZIfc0ls4H0P6i6V1iHv0pzZH8SdgvZOPFkF37ef1r5cyWcMflJSFJ5bfuoluTnFnBBFiuSA==, + integrity: sha512-g/juh7A83GWc3+kWL8BiS3YUIJb3XNqIVKz1kGvgN3OhoGCsPncy1qo/+q61tjy5r87OxBhSY1+hcH3yOhEW+g==, } - engines: { node: ^14 || ^16 || >=18 } + engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-selector-parser@6.0.13: - resolution: - { - integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==, - } - engines: { node: ">=4" } - - postcss-selector-parser@6.0.16: - resolution: - { - integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==, - } - engines: { node: ">=4" } - postcss-selector-parser@6.1.0: resolution: { @@ -4603,6 +4356,13 @@ packages: } engines: { node: ">=4" } + postcss-selector-parser@6.1.2: + resolution: + { + integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==, + } + engines: { node: ">=4" } + postcss-svgo@7.0.1: resolution: { @@ -4612,10 +4372,10 @@ packages: peerDependencies: postcss: ^8.4.31 - postcss-unique-selectors@7.0.1: + postcss-unique-selectors@7.0.3: resolution: { - integrity: sha512-MH7QE/eKUftTB5ta40xcHLl7hkZjgDFydpfTK+QWXeHxghVt3VoPqYL5/G+zYZPPIs+8GuqFXSTgxBSoB1RZtQ==, + integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -4627,20 +4387,6 @@ packages: integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, } - postcss@8.4.31: - resolution: - { - integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, - } - engines: { node: ^10 || ^12 || >=14 } - - postcss@8.4.33: - resolution: - { - integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==, - } - engines: { node: ^10 || ^12 || >=14 } - postcss@8.4.38: resolution: { @@ -4648,12 +4394,27 @@ packages: } engines: { node: ^10 || ^12 || >=14 } - preferred-pm@3.1.3: + postcss@8.4.47: resolution: { - integrity: sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==, + integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==, } - engines: { node: ">=10" } + engines: { node: ^10 || ^12 || >=14 } + + preferred-pm@4.0.0: + resolution: + { + integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==, + } + engines: { node: ">=18.12" } + + prettier@2.8.7: + resolution: + { + integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==, + } + engines: { node: ">=10.13.0" } + hasBin: true prismjs@1.29.0: resolution: @@ -4694,10 +4455,22 @@ packages: } engines: { node: ">=8.10.0" } - rehype-expressive-code@0.35.3: + regenerator-runtime@0.14.1: resolution: { - integrity: sha512-kj43Rg+WzYUs8RRr6XyBr60pnrIZEgbmn9yJoV6qka1UDpcx7r8icn6Q2uSAgaLtlEUy+HCPgQJraOZrA53LOQ==, + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, + } + + regex@4.3.2: + resolution: + { + integrity: sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==, + } + + rehype-expressive-code@0.35.6: + resolution: + { + integrity: sha512-pPdE+pRcRw01kxMOwHQjuRxgwlblZt5+wAc3w2aPGgmcnn57wYjn07iKO7zaznDxYVxMYVvYlnL+R3vWFQS4Gw==, } rehype-format@5.0.0: @@ -4766,17 +4539,10 @@ packages: integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==, } - remark-smartypants@2.0.0: + remark-smartypants@3.0.2: resolution: { - integrity: sha512-Rc0VDmr/yhnMQIz8n2ACYXlfw/P/XZev884QU1I5u+5DgJls32o97Vc1RbK3pfumLsJomS2yy8eT4Fxj/2MDVA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - - remark-smartypants@3.0.1: - resolution: - { - integrity: sha512-qyshfCl2eLO0i0558e79ZJsfojC5wjnYLByjt0FmjJQN6aYwcRxpoj784LZJSoWCdnA2ubh5rLNGb8Uur/wDng==, + integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==, } engines: { node: ">=16.0.0" } @@ -4786,6 +4552,12 @@ packages: integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, } + request-light@0.5.8: + resolution: + { + integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==, + } + request-light@0.7.0: resolution: { @@ -4799,6 +4571,13 @@ packages: } engines: { node: ">=0.10.0" } + require-from-string@2.0.2: + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, + } + engines: { node: ">=0.10.0" } + resolve@1.22.8: resolution: { @@ -4806,18 +4585,12 @@ packages: } hasBin: true - restore-cursor@4.0.0: + restore-cursor@5.1.0: resolution: { - integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - - retext-latin@3.1.0: - resolution: - { - integrity: sha512-5MrD1tuebzO8ppsja5eEu+ZbBeUNCjoEarn70tkXOS7Bdsdf6tNahsv2bY0Z8VooFF6cw7/6S+d3yI/TMlMVVQ==, + integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==, } + engines: { node: ">=18" } retext-latin@4.0.0: resolution: @@ -4825,36 +4598,18 @@ packages: integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==, } - retext-smartypants@5.2.0: - resolution: - { - integrity: sha512-Do8oM+SsjrbzT2UNIKgheP0hgUQTDDQYyZaIY3kfq0pdFzoPk+ZClYJ+OERNXveog4xf1pZL4PfRxNoVL7a/jw==, - } - retext-smartypants@6.1.0: resolution: { integrity: sha512-LDPXg95346bqFZnDMHo0S7Rq5p64+B+N8Vz733+wPMDtwb9rCOs9LIdIEhrUOU+TAywX9St+ocQWJt8wrzivcQ==, } - retext-stringify@3.1.0: - resolution: - { - integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==, - } - retext-stringify@4.0.0: resolution: { integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==, } - retext@8.1.0: - resolution: - { - integrity: sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==, - } - retext@9.0.0: resolution: { @@ -4868,10 +4623,10 @@ packages: } engines: { iojs: ">=1.0.0", node: ">=0.10.0" } - rollup@4.17.2: + rollup@4.22.5: resolution: { - integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==, + integrity: sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==, } engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true @@ -4902,14 +4657,6 @@ packages: } hasBin: true - semver@7.5.4: - resolution: - { - integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, - } - engines: { node: ">=10" } - hasBin: true - semver@7.6.2: resolution: { @@ -4918,31 +4665,25 @@ packages: engines: { node: ">=10" } hasBin: true - sharp@0.33.4: + semver@7.6.3: resolution: { - integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==, + integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, } - engines: { libvips: ">=8.15.2", node: ^18.17.0 || ^20.3.0 || >=21.0.0 } + engines: { node: ">=10" } + hasBin: true - shebang-command@2.0.0: + sharp@0.33.5: resolution: { - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==, } - engines: { node: ">=8" } + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } - shebang-regex@3.0.0: + shiki@1.20.0: resolution: { - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, - } - engines: { node: ">=8" } - - shiki@1.5.2: - resolution: - { - integrity: sha512-fpPbuSaatinmdGijE7VYUD3hxLozR3ZZ+iAx8Iy2X6REmJGyF5hQl94SgmiUNTospq346nXUVZx0035dyGvIVw==, + integrity: sha512-MZJJ1PCFsQB1Piq+25wiz0a75yUv8Q3/fzy7SzRx5ONdjdtGdyiKwYn8vb/FnK5kjS0voWGnPpjG16POauUR+g==, } shiki@1.6.3: @@ -4951,12 +4692,6 @@ packages: integrity: sha512-lE1/YGlzFY0hQSyEfsZj18xGrTWxyhFQkaiILALqTBZPbJeYFWpbUhlmTGPOupYB/qC+H6sV4UznJzcEh3WMHQ==, } - signal-exit@3.0.7: - resolution: - { - integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, - } - signal-exit@4.1.0: resolution: { @@ -4976,21 +4711,14 @@ packages: integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, } - sitemap@7.1.1: + sitemap@7.1.2: resolution: { - integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==, + integrity: sha512-ARCqzHJ0p4gWt+j7NlU5eDlIO9+Rkr/JhPFZKKQ1l5GCus7rJH4UdrlVAh0xC/gDS/Qir2UMxqYNHtsKr2rpCw==, } engines: { node: ">=12.0.0", npm: ">=5.6.0" } hasBin: true - source-map-js@1.0.2: - resolution: - { - integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, - } - engines: { node: ">=0.10.0" } - source-map-js@1.2.0: resolution: { @@ -4998,6 +4726,13 @@ packages: } engines: { node: ">=0.10.0" } + source-map-js@1.2.1: + resolution: + { + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, + } + engines: { node: ">=0.10.0" } + source-map@0.7.4: resolution: { @@ -5024,6 +4759,12 @@ packages: } engines: { node: ">=18" } + stream-replace-string@2.0.0: + resolution: + { + integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==, + } + string-width@4.2.3: resolution: { @@ -5038,10 +4779,10 @@ packages: } engines: { node: ">=12" } - string-width@7.1.0: + string-width@7.2.0: resolution: { - integrity: sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==, + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, } engines: { node: ">=18" } @@ -5079,13 +4820,6 @@ packages: } engines: { node: ">=4" } - strip-final-newline@3.0.0: - resolution: - { - integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, - } - engines: { node: ">=12" } - style-to-object@0.4.4: resolution: { @@ -5098,10 +4832,10 @@ packages: integrity: sha512-rDRwHtoDD3UMMrmZ6BzOW0naTjMsVZLIjsGleSKS/0Oz+cgCfAPRspaqJuE8rDzpKha/nEvnM0IF4seEAZUTKQ==, } - stylehacks@7.0.1: + stylehacks@7.0.4: resolution: { - integrity: sha512-PnrT4HzajnxbjfChpeBKLSpSykilnGBlD+pIffCoT5KbLur9fcL8uKRQJJap85byR2wCYZl/4Otk5eq76qeZxQ==, + integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==, } engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 } peerDependencies: @@ -5137,10 +4871,10 @@ packages: engines: { node: ">=14.0.0" } hasBin: true - tailwindcss@3.4.3: + tailwindcss@3.4.13: resolution: { - integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==, + integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==, } engines: { node: ">=14.0.0" } hasBin: true @@ -5158,6 +4892,12 @@ packages: integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==, } + tinyexec@0.3.0: + resolution: + { + integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==, + } + to-fast-properties@2.0.0: resolution: { @@ -5190,10 +4930,10 @@ packages: integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==, } - tsconfck@3.1.0: + tsconfck@3.1.3: resolution: { - integrity: sha512-CMjc5zMnyAjcS9sPLytrbFmj89st2g+JYtY/c02ug4Q+CZaAtCgbyviI0n1YvjZE/pzoc6FbNsINS13DOL1B9w==, + integrity: sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==, } engines: { node: ^18 || >=20 } hasBin: true @@ -5222,36 +4962,24 @@ packages: integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==, } - typescript-auto-import-cache@0.3.2: + typescript-auto-import-cache@0.3.3: resolution: { - integrity: sha512-+laqe5SFL1vN62FPOOJSUDTZxtgsoOXjneYOXIpx5rQ4UMiN89NAtJLpqLqyebv9fgQ/IMeeTX+mQyRnwvJzvg==, + integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==, } - typescript@5.4.5: + typescript@5.6.2: resolution: { - integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==, + integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==, } engines: { node: ">=14.17" } hasBin: true - unherit@3.0.1: + unified@11.0.5: resolution: { - integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==, - } - - unified@10.1.2: - resolution: - { - integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==, - } - - unified@11.0.4: - resolution: - { - integrity: sha512-apMPnyLjAX+ty4OrNap7yumyVAMlKx5IWU2wlzzUdYJO9A8f1p9m/gywF/GM2ZDFcjQPrx59Mc90KwmxsoklxQ==, + integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, } unist-util-find-after@5.0.0: @@ -5260,24 +4988,12 @@ packages: integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==, } - unist-util-is@5.2.1: - resolution: - { - integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==, - } - unist-util-is@6.0.0: resolution: { integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, } - unist-util-modify-children@3.1.1: - resolution: - { - integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==, - } - unist-util-modify-children@4.0.0: resolution: { @@ -5302,58 +5018,34 @@ packages: integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, } - unist-util-stringify-position@3.0.3: - resolution: - { - integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==, - } - unist-util-stringify-position@4.0.0: resolution: { integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, } - unist-util-visit-children@2.0.2: - resolution: - { - integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==, - } - unist-util-visit-children@3.0.0: resolution: { integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==, } - unist-util-visit-parents@5.1.3: - resolution: - { - integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==, - } - unist-util-visit-parents@6.0.1: resolution: { integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, } - unist-util-visit@4.1.2: - resolution: - { - integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==, - } - unist-util-visit@5.0.0: resolution: { integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, } - update-browserslist-db@1.0.13: + update-browserslist-db@1.1.1: resolution: { - integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, + integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==, } hasBin: true peerDependencies: @@ -5371,34 +5063,22 @@ packages: integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==, } - vfile-message@3.1.4: - resolution: - { - integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==, - } - vfile-message@4.0.2: resolution: { integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==, } - vfile@5.3.7: + vfile@6.0.3: resolution: { - integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==, + integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, } - vfile@6.0.1: + vite@5.4.8: resolution: { - integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==, - } - - vite@5.2.13: - resolution: - { - integrity: sha512-SSq1noJfY9pR3I1TUENL3rQYDQCFqgD+lM6fTRAM8Nv6Lsg5hDLaXkjETVeBt+7vZBCMoibD+6IWnT2mJ+Zb/A==, + integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true @@ -5407,6 +5087,7 @@ packages: less: "*" lightningcss: ^1.21.0 sass: "*" + sass-embedded: "*" stylus: "*" sugarss: "*" terser: ^5.4.0 @@ -5419,6 +5100,8 @@ packages: optional: true sass: optional: true + sass-embedded: + optional: true stylus: optional: true sugarss: @@ -5426,10 +5109,10 @@ packages: terser: optional: true - vitefu@0.2.5: + vitefu@1.0.2: resolution: { - integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==, + integrity: sha512-0/iAvbXyM3RiPPJ4lyD4w6Mjgtf4ejTK6TPvTNG3H32PLwuT0N/ZjJLiXug7ETE/LWtTeHw9WRv7uX/tIKYyKg==, } peerDependencies: vite: ^3.0.0 || ^4.0.0 || ^5.0.0 @@ -5437,46 +5120,46 @@ packages: vite: optional: true - volar-service-css@0.0.45: + volar-service-css@0.0.61: resolution: { - integrity: sha512-f+AlUI1+kESbcZSVaNJVAnK0c/9Da5StoxzPqA5/8VqUHJWNdubWNnwG5xpFVTfgh6pgTcey3UBhBfHytFaIOg==, + integrity: sha512-Ct9L/w+IB1JU8F4jofcNCGoHy6TF83aiapfZq9A0qYYpq+Kk5dH+ONS+rVZSsuhsunq8UvAuF8Gk6B8IFLfniw==, } peerDependencies: - "@volar/language-service": ~2.2.3 + "@volar/language-service": ~2.4.0 peerDependenciesMeta: "@volar/language-service": optional: true - volar-service-emmet@0.0.45: + volar-service-emmet@0.0.61: resolution: { - integrity: sha512-9nLXSDkR1vA/3fQkFEsSXAu3XovQxOpTkVG2jilQgfek/K1ZLkaA/WMhN/TtmPmQg4NxE9Ni6mA5udBQ5gVXIA==, + integrity: sha512-iiYqBxjjcekqrRruw4COQHZME6EZYWVbkHjHDbULpml3g8HGJHzpAMkj9tXNCPxf36A+f1oUYjsvZt36qPg4cg==, } peerDependencies: - "@volar/language-service": ~2.2.3 + "@volar/language-service": ~2.4.0 peerDependenciesMeta: "@volar/language-service": optional: true - volar-service-html@0.0.45: + volar-service-html@0.0.61: resolution: { - integrity: sha512-tLTJqfy1v5C4nmeAsfekFIKPl4r4qDMyL0L9MWywr/EApZzPCsbeUGxCqdzxSMC2q7PMCfX2i167txDo+J0LVA==, + integrity: sha512-yFE+YmmgqIL5HI4ORqP++IYb1QaGcv+xBboI0WkCxJJ/M35HZj7f5rbT3eQ24ECLXFbFCFanckwyWJVz5KmN3Q==, } peerDependencies: - "@volar/language-service": ~2.2.3 + "@volar/language-service": ~2.4.0 peerDependenciesMeta: "@volar/language-service": optional: true - volar-service-prettier@0.0.45: + volar-service-prettier@0.0.61: resolution: { - integrity: sha512-+mBS2EsDgp/kunKEBnHvhBwIQm5v2ahw4NKpKdg4sTpXy3UxqHt+Fq/wRYQ7Z8LlNVNRVfp75ThjM+w2zaZBAw==, + integrity: sha512-F612nql5I0IS8HxXemCGvOR2Uxd4XooIwqYVUvk7WSBxP/+xu1jYvE3QJ7EVpl8Ty3S4SxPXYiYTsG3bi+gzIQ==, } peerDependencies: - "@volar/language-service": ~2.2.3 + "@volar/language-service": ~2.4.0 prettier: ^2.2 || ^3.0 peerDependenciesMeta: "@volar/language-service": @@ -5484,32 +5167,43 @@ packages: prettier: optional: true - volar-service-typescript-twoslash-queries@0.0.45: + volar-service-typescript-twoslash-queries@0.0.61: resolution: { - integrity: sha512-KrPUUvKggZgV9mrDpstCzmf20irgv0ooMv+FGDzIIQUkya+d2+nSS8Mx2h9FvsYgLccUVw5jU3Rhwhd3pv/7qg==, + integrity: sha512-99FICGrEF0r1E2tV+SvprHPw9Knyg7BdW2fUch0tf59kG+KG+Tj4tL6tUg+cy8f23O/VXlmsWFMIE+bx1dXPnQ==, } peerDependencies: - "@volar/language-service": ~2.2.3 + "@volar/language-service": ~2.4.0 peerDependenciesMeta: "@volar/language-service": optional: true - volar-service-typescript@0.0.45: + volar-service-typescript@0.0.61: resolution: { - integrity: sha512-i/mMIIAMastJ2kgPo3qvX0Rrl7NyxhIYZ0ug/B4ambZcLPI1vzBgS2fmvyWX3jhBYHh8NmbAotFj+0Y9JtN47A==, + integrity: sha512-4kRHxVbW7wFBHZWRU6yWxTgiKETBDIJNwmJUAWeP0mHaKpnDGj/astdRFKqGFRYVeEYl45lcUPhdJyrzanjsdQ==, } peerDependencies: - "@volar/language-service": ~2.2.3 + "@volar/language-service": ~2.4.0 peerDependenciesMeta: "@volar/language-service": optional: true - vscode-css-languageservice@6.2.10: + volar-service-yaml@0.0.61: resolution: { - integrity: sha512-sYUZPku4mQ06AWGCbMyjv2tdR6juBW6hTbVPFwbJvNVzdtEfBioQOgkdXg7yMJNWnXkvWSU1FL2kb4Vxu5Cdyw==, + integrity: sha512-L+gbDiLDQQ1rZUbJ3mf3doDsoQUa8OZM/xdpk/unMg1Vz24Zmi2Ign8GrZyBD7bRoIQDwOH9gdktGDKzRPpUNw==, + } + peerDependencies: + "@volar/language-service": ~2.4.0 + peerDependenciesMeta: + "@volar/language-service": + optional: true + + vscode-css-languageservice@6.3.1: + resolution: + { + integrity: sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==, } vscode-html-languageservice@5.2.0: @@ -5518,6 +5212,26 @@ packages: integrity: sha512-cdNMhyw57/SQzgUUGSIMQ66jikqEN6nBNyhx5YuOyj9310+eY9zw8Q0cXpiKzDX8aHYFewQEXRnigl06j/TVwQ==, } + vscode-html-languageservice@5.3.1: + resolution: + { + integrity: sha512-ysUh4hFeW/WOWz/TO9gm08xigiSsV/FOAZ+DolgJfeLftna54YdmZ4A+lIn46RbdO3/Qv5QHTn1ZGqmrXQhZyA==, + } + + vscode-json-languageservice@4.1.8: + resolution: + { + integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==, + } + engines: { npm: ">=7.0.0" } + + vscode-jsonrpc@6.0.0: + resolution: + { + integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==, + } + engines: { node: ">=8.0.0 || >=10.0.0" } + vscode-jsonrpc@8.2.0: resolution: { @@ -5525,6 +5239,12 @@ packages: } engines: { node: ">=14.0.0" } + vscode-languageserver-protocol@3.16.0: + resolution: + { + integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==, + } + vscode-languageserver-protocol@3.17.5: resolution: { @@ -5537,12 +5257,31 @@ packages: integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==, } + vscode-languageserver-textdocument@1.0.12: + resolution: + { + integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==, + } + + vscode-languageserver-types@3.16.0: + resolution: + { + integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==, + } + vscode-languageserver-types@3.17.5: resolution: { integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, } + vscode-languageserver@7.0.0: + resolution: + { + integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==, + } + hasBin: true + vscode-languageserver@9.0.1: resolution: { @@ -5581,27 +5320,12 @@ packages: } engines: { node: ">=4" } - which-pm@2.0.0: + which-pm@3.0.0: resolution: { - integrity: sha512-Lhs9Pmyph0p5n5Z3mVnN0yWcbQYUAD7rbQUiMsQxOJ3T57k7RFe35SUwWMf7dsbDZks1uOmw4AecB/JMDj3v/w==, + integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==, } - engines: { node: ">=8.15" } - - which-pm@2.2.0: - resolution: - { - integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==, - } - engines: { node: ">=8.15" } - - which@2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: { node: ">= 8" } - hasBin: true + engines: { node: ">=18.12" } widest-line@4.0.1: resolution: @@ -5630,6 +5354,12 @@ packages: integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, } + xxhash-wasm@1.0.2: + resolution: + { + integrity: sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==, + } + y18n@5.0.8: resolution: { @@ -5643,11 +5373,19 @@ packages: integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, } - yallist@4.0.0: + yaml-language-server@1.15.0: resolution: { - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + integrity: sha512-N47AqBDCMQmh6mBLmI6oqxryHRzi33aPFPsJhYy3VTUGCdLHYjGh4FZzpUjRlphaADBBkDmnkM/++KNIOHi5Rw==, } + hasBin: true + + yaml@2.2.2: + resolution: + { + integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==, + } + engines: { node: ">= 14" } yaml@2.3.4: resolution: @@ -5656,6 +5394,14 @@ packages: } engines: { node: ">= 14" } + yaml@2.5.1: + resolution: + { + integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==, + } + engines: { node: ">= 14" } + hasBin: true + yargs-parser@21.1.1: resolution: { @@ -5670,28 +5416,30 @@ packages: } engines: { node: ">=12" } - yocto-queue@0.1.0: + yocto-queue@1.1.1: resolution: { - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, - } - engines: { node: ">=10" } - - yocto-queue@1.0.0: - resolution: - { - integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, + integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, } engines: { node: ">=12.20" } - zod-to-json-schema@3.23.0: + zod-to-json-schema@3.23.3: resolution: { - integrity: sha512-az0uJ243PxsRIa2x1WmNE/pnuA05gUq/JB8Lwe1EDCCL/Fz9MgjYQ0fPlyc2Tcv6aF2ZA7WM5TWaRZVEFaAIag==, + integrity: sha512-TYWChTxKQbRJp5ST22o/Irt9KC5nj7CdBKYB/AosCRdj/wxEMvv4NNaj9XVUHDOIp53ZxArGhnw5HMZziPFjog==, } peerDependencies: zod: ^3.23.3 + zod-to-ts@1.2.0: + resolution: + { + integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==, + } + peerDependencies: + typescript: ^4.9.4 || ^5.0.2 + zod: ^3 + zod@3.23.8: resolution: { @@ -5712,84 +5460,86 @@ snapshots: "@jridgewell/gen-mapping": 0.3.5 "@jridgewell/trace-mapping": 0.3.25 - "@astrojs/check@0.7.0(typescript@5.4.5)": + "@astrojs/check@0.9.3(typescript@5.6.2)": dependencies: - "@astrojs/language-server": 2.10.0(typescript@5.4.5) - chokidar: 3.5.3 + "@astrojs/language-server": 2.14.2(typescript@5.6.2) + chokidar: 3.6.0 fast-glob: 3.3.2 kleur: 4.1.5 - typescript: 5.4.5 + typescript: 5.6.2 yargs: 17.7.2 transitivePeerDependencies: - prettier - prettier-plugin-astro - "@astrojs/compiler@2.8.0": {} + "@astrojs/compiler@2.10.3": {} - "@astrojs/internal-helpers@0.4.0": {} + "@astrojs/internal-helpers@0.4.1": {} - "@astrojs/language-server@2.10.0(typescript@5.4.5)": + "@astrojs/language-server@2.14.2(typescript@5.6.2)": dependencies: - "@astrojs/compiler": 2.8.0 + "@astrojs/compiler": 2.10.3 + "@astrojs/yaml2ts": 0.2.1 "@jridgewell/sourcemap-codec": 1.4.15 - "@volar/kit": 2.2.4(typescript@5.4.5) - "@volar/language-core": 2.2.4 - "@volar/language-server": 2.2.4 - "@volar/language-service": 2.2.4 - "@volar/typescript": 2.2.4 + "@volar/kit": 2.4.5(typescript@5.6.2) + "@volar/language-core": 2.4.5 + "@volar/language-server": 2.4.5 + "@volar/language-service": 2.4.5 + "@volar/typescript": 2.4.5 fast-glob: 3.3.2 - volar-service-css: 0.0.45(@volar/language-service@2.2.4) - volar-service-emmet: 0.0.45(@volar/language-service@2.2.4) - volar-service-html: 0.0.45(@volar/language-service@2.2.4) - volar-service-prettier: 0.0.45(@volar/language-service@2.2.4) - volar-service-typescript: 0.0.45(@volar/language-service@2.2.4) - volar-service-typescript-twoslash-queries: 0.0.45(@volar/language-service@2.2.4) + muggle-string: 0.4.1 + volar-service-css: 0.0.61(@volar/language-service@2.4.5) + volar-service-emmet: 0.0.61(@volar/language-service@2.4.5) + volar-service-html: 0.0.61(@volar/language-service@2.4.5) + volar-service-prettier: 0.0.61(@volar/language-service@2.4.5) + volar-service-typescript: 0.0.61(@volar/language-service@2.4.5) + volar-service-typescript-twoslash-queries: 0.0.61(@volar/language-service@2.4.5) + volar-service-yaml: 0.0.61(@volar/language-service@2.4.5) vscode-html-languageservice: 5.2.0 vscode-uri: 3.0.8 transitivePeerDependencies: - typescript - "@astrojs/markdown-remark@5.1.0": + "@astrojs/markdown-remark@5.2.0": dependencies: "@astrojs/prism": 3.1.0 github-slugger: 2.0.0 hast-util-from-html: 2.0.1 hast-util-to-text: 4.0.2 - import-meta-resolve: 4.0.0 + import-meta-resolve: 4.1.0 mdast-util-definitions: 6.0.0 rehype-raw: 7.0.0 rehype-stringify: 10.0.0 remark-gfm: 4.0.0 remark-parse: 11.0.0 remark-rehype: 11.1.0 - remark-smartypants: 2.0.0 - shiki: 1.6.3 - unified: 11.0.4 + remark-smartypants: 3.0.2 + shiki: 1.20.0 + unified: 11.0.5 unist-util-remove-position: 5.0.0 unist-util-visit: 5.0.0 unist-util-visit-parents: 6.0.1 - vfile: 6.0.1 + vfile: 6.0.3 transitivePeerDependencies: - supports-color - "@astrojs/mdx@3.1.0(astro@4.10.1(typescript@5.4.5))": + "@astrojs/mdx@3.1.7(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2))": dependencies: - "@astrojs/markdown-remark": 5.1.0 + "@astrojs/markdown-remark": 5.2.0 "@mdx-js/mdx": 3.0.1 - acorn: 8.11.3 - astro: 4.10.1(typescript@5.4.5) - es-module-lexer: 1.5.3 + acorn: 8.12.1 + astro: 4.15.9(rollup@4.22.5)(typescript@5.6.2) + es-module-lexer: 1.5.4 estree-util-visit: 2.0.0 - github-slugger: 2.0.0 gray-matter: 4.0.3 - hast-util-to-html: 9.0.1 + hast-util-to-html: 9.0.3 kleur: 4.1.5 rehype-raw: 7.0.0 remark-gfm: 4.0.0 - remark-smartypants: 3.0.1 + remark-smartypants: 3.0.2 source-map: 0.7.4 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 transitivePeerDependencies: - supports-color @@ -5797,57 +5547,60 @@ snapshots: dependencies: prismjs: 1.29.0 - "@astrojs/sitemap@3.0.5": + "@astrojs/sitemap@3.1.6": dependencies: - sitemap: 7.1.1 + sitemap: 7.1.2 + stream-replace-string: 2.0.0 zod: 3.23.8 - "@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.24.0(astro@4.10.1(typescript@5.4.5)))(@astrojs/tailwind@5.1.0(astro@4.10.1(typescript@5.4.5))(tailwindcss@3.4.3))(tailwindcss@3.4.3)": + "@astrojs/starlight-tailwind@2.0.3(@astrojs/starlight@0.28.2(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2)))(@astrojs/tailwind@5.1.1(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2))(tailwindcss@3.4.13))(tailwindcss@3.4.13)": dependencies: - "@astrojs/starlight": 0.24.0(astro@4.10.1(typescript@5.4.5)) - "@astrojs/tailwind": 5.1.0(astro@4.10.1(typescript@5.4.5))(tailwindcss@3.4.3) - tailwindcss: 3.4.3 + "@astrojs/starlight": 0.28.2(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2)) + "@astrojs/tailwind": 5.1.1(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2))(tailwindcss@3.4.13) + tailwindcss: 3.4.13 - "@astrojs/starlight@0.24.0(astro@4.10.1(typescript@5.4.5))": + "@astrojs/starlight@0.28.2(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2))": dependencies: - "@astrojs/mdx": 3.1.0(astro@4.10.1(typescript@5.4.5)) - "@astrojs/sitemap": 3.0.5 + "@astrojs/mdx": 3.1.7(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2)) + "@astrojs/sitemap": 3.1.6 "@pagefind/default-ui": 1.0.4 - "@types/hast": 3.0.3 - "@types/mdast": 4.0.3 - astro: 4.10.1(typescript@5.4.5) - astro-expressive-code: 0.35.3(astro@4.10.1(typescript@5.4.5)) + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 + astro: 4.15.9(rollup@4.22.5)(typescript@5.6.2) + astro-expressive-code: 0.35.6(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2)) bcp-47: 2.1.0 hast-util-from-html: 2.0.1 hast-util-select: 6.0.2 hast-util-to-string: 3.0.0 - hastscript: 8.0.0 + hastscript: 9.0.0 + i18next: 23.15.1 mdast-util-directive: 3.0.0 mdast-util-to-markdown: 2.1.0 + mdast-util-to-string: 4.0.0 pagefind: 1.0.4 rehype: 13.0.1 rehype-format: 5.0.0 remark-directive: 3.0.0 - unified: 11.0.4 + unified: 11.0.5 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 transitivePeerDependencies: - supports-color - "@astrojs/tailwind@5.1.0(astro@4.10.1(typescript@5.4.5))(tailwindcss@3.4.3)": + "@astrojs/tailwind@5.1.1(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2))(tailwindcss@3.4.13)": dependencies: - astro: 4.10.1(typescript@5.4.5) - autoprefixer: 10.4.19(postcss@8.4.31) - postcss: 8.4.31 - postcss-load-config: 4.0.2(postcss@8.4.31) - tailwindcss: 3.4.3 + astro: 4.15.9(rollup@4.22.5)(typescript@5.6.2) + autoprefixer: 10.4.20(postcss@8.4.47) + postcss: 8.4.47 + postcss-load-config: 4.0.2(postcss@8.4.47) + tailwindcss: 3.4.13 transitivePeerDependencies: - ts-node "@astrojs/telemetry@3.1.0": dependencies: ci-info: 4.0.0 - debug: 4.3.4 + debug: 4.3.7 dlv: 1.1.3 dset: 3.1.3 is-docker: 3.0.0 @@ -5856,27 +5609,31 @@ snapshots: transitivePeerDependencies: - supports-color + "@astrojs/yaml2ts@0.2.1": + dependencies: + yaml: 2.5.1 + "@babel/code-frame@7.24.7": dependencies: "@babel/highlight": 7.24.7 picocolors: 1.0.0 - "@babel/compat-data@7.24.7": {} + "@babel/compat-data@7.25.4": {} - "@babel/core@7.24.7": + "@babel/core@7.25.2": dependencies: "@ampproject/remapping": 2.2.1 "@babel/code-frame": 7.24.7 - "@babel/generator": 7.24.7 - "@babel/helper-compilation-targets": 7.24.7 - "@babel/helper-module-transforms": 7.24.7(@babel/core@7.24.7) - "@babel/helpers": 7.24.7 - "@babel/parser": 7.24.7 - "@babel/template": 7.24.7 - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + "@babel/generator": 7.25.6 + "@babel/helper-compilation-targets": 7.25.2 + "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2) + "@babel/helpers": 7.25.6 + "@babel/parser": 7.25.6 + "@babel/template": 7.25.0 + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -5885,77 +5642,83 @@ snapshots: "@babel/generator@7.24.7": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 + "@jridgewell/gen-mapping": 0.3.5 + "@jridgewell/trace-mapping": 0.3.25 + jsesc: 2.5.2 + + "@babel/generator@7.25.6": + dependencies: + "@babel/types": 7.25.6 "@jridgewell/gen-mapping": 0.3.5 "@jridgewell/trace-mapping": 0.3.25 jsesc: 2.5.2 "@babel/helper-annotate-as-pure@7.24.7": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 - "@babel/helper-compilation-targets@7.24.7": + "@babel/helper-compilation-targets@7.25.2": dependencies: - "@babel/compat-data": 7.24.7 - "@babel/helper-validator-option": 7.24.7 - browserslist: 4.23.0 + "@babel/compat-data": 7.25.4 + "@babel/helper-validator-option": 7.24.8 + browserslist: 4.24.0 lru-cache: 5.1.1 semver: 6.3.1 "@babel/helper-environment-visitor@7.24.7": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 "@babel/helper-function-name@7.24.7": dependencies: "@babel/template": 7.24.7 - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 "@babel/helper-hoist-variables@7.24.7": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 "@babel/helper-module-imports@7.24.7": dependencies: "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 transitivePeerDependencies: - supports-color - "@babel/helper-module-transforms@7.24.7(@babel/core@7.24.7)": + "@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.7 - "@babel/helper-environment-visitor": 7.24.7 + "@babel/core": 7.25.2 "@babel/helper-module-imports": 7.24.7 "@babel/helper-simple-access": 7.24.7 - "@babel/helper-split-export-declaration": 7.24.7 "@babel/helper-validator-identifier": 7.24.7 + "@babel/traverse": 7.25.6 transitivePeerDependencies: - supports-color - "@babel/helper-plugin-utils@7.24.7": {} + "@babel/helper-plugin-utils@7.24.8": {} "@babel/helper-simple-access@7.24.7": dependencies: - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 transitivePeerDependencies: - supports-color "@babel/helper-split-export-declaration@7.24.7": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 - "@babel/helper-string-parser@7.24.7": {} + "@babel/helper-string-parser@7.24.8": {} "@babel/helper-validator-identifier@7.24.7": {} - "@babel/helper-validator-option@7.24.7": {} + "@babel/helper-validator-option@7.24.8": {} - "@babel/helpers@7.24.7": + "@babel/helpers@7.25.6": dependencies: - "@babel/template": 7.24.7 - "@babel/types": 7.24.7 + "@babel/template": 7.25.0 + "@babel/types": 7.25.6 "@babel/highlight@7.24.7": dependencies: @@ -5966,29 +5729,43 @@ snapshots: "@babel/parser@7.24.7": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 - "@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)": + "@babel/parser@7.25.6": dependencies: - "@babel/core": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 + "@babel/types": 7.25.6 - "@babel/plugin-transform-react-jsx@7.24.7(@babel/core@7.24.7)": + "@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.7 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + + "@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2)": + dependencies: + "@babel/core": 7.25.2 "@babel/helper-annotate-as-pure": 7.24.7 "@babel/helper-module-imports": 7.24.7 - "@babel/helper-plugin-utils": 7.24.7 - "@babel/plugin-syntax-jsx": 7.24.7(@babel/core@7.24.7) - "@babel/types": 7.24.7 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-jsx": 7.24.7(@babel/core@7.25.2) + "@babel/types": 7.25.6 transitivePeerDependencies: - supports-color + "@babel/runtime@7.25.6": + dependencies: + regenerator-runtime: 0.14.1 + "@babel/template@7.24.7": dependencies: "@babel/code-frame": 7.24.7 "@babel/parser": 7.24.7 - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 + + "@babel/template@7.25.0": + dependencies: + "@babel/code-frame": 7.24.7 + "@babel/parser": 7.25.6 + "@babel/types": 7.25.6 "@babel/traverse@7.24.7": dependencies: @@ -5999,251 +5776,267 @@ snapshots: "@babel/helper-hoist-variables": 7.24.7 "@babel/helper-split-export-declaration": 7.24.7 "@babel/parser": 7.24.7 - "@babel/types": 7.24.7 - debug: 4.3.4 + "@babel/types": 7.25.6 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/types@7.24.7": + "@babel/traverse@7.25.6": dependencies: - "@babel/helper-string-parser": 7.24.7 + "@babel/code-frame": 7.24.7 + "@babel/generator": 7.25.6 + "@babel/parser": 7.25.6 + "@babel/template": 7.25.0 + "@babel/types": 7.25.6 + debug: 4.3.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + "@babel/types@7.25.6": + dependencies: + "@babel/helper-string-parser": 7.24.8 "@babel/helper-validator-identifier": 7.24.7 to-fast-properties: 2.0.0 - "@csstools/cascade-layer-name-parser@1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)": + "@csstools/cascade-layer-name-parser@2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": dependencies: - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 - "@csstools/color-helpers@4.2.0": {} + "@csstools/color-helpers@5.0.1": {} - "@csstools/css-calc@1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)": + "@csstools/css-calc@2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": dependencies: - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 - "@csstools/css-color-parser@2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)": + "@csstools/css-color-parser@3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": dependencies: - "@csstools/color-helpers": 4.2.0 - "@csstools/css-calc": 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 + "@csstools/color-helpers": 5.0.1 + "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 - "@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1)": + "@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1)": dependencies: - "@csstools/css-tokenizer": 2.3.1 + "@csstools/css-tokenizer": 3.0.1 - "@csstools/css-tokenizer@2.3.1": {} + "@csstools/css-tokenizer@3.0.1": {} - "@csstools/media-query-list-parser@2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1)": + "@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": dependencies: - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 - "@csstools/postcss-cascade-layers@4.0.6(postcss@8.4.33)": + "@csstools/postcss-cascade-layers@5.0.0(postcss@8.4.38)": dependencies: - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.0.16) - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.0) + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - "@csstools/postcss-color-function@3.0.16(postcss@8.4.33)": + "@csstools/postcss-color-function@4.0.2(postcss@8.4.38)": dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-color-mix-function@2.0.16(postcss@8.4.33)": + "@csstools/postcss-color-mix-function@3.0.2(postcss@8.4.38)": dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-exponential-functions@1.0.7(postcss@8.4.33)": + "@csstools/postcss-content-alt-text@2.0.1(postcss@8.4.38)": dependencies: - "@csstools/css-calc": 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - postcss: 8.4.33 + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-font-format-keywords@3.0.2(postcss@8.4.33)": + "@csstools/postcss-exponential-functions@2.0.1(postcss@8.4.38)": dependencies: - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + postcss: 8.4.38 + + "@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.38)": + dependencies: + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-gamut-mapping@1.0.9(postcss@8.4.33)": + "@csstools/postcss-gamut-mapping@2.0.2(postcss@8.4.38)": dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + postcss: 8.4.38 - "@csstools/postcss-gradients-interpolation-method@4.0.17(postcss@8.4.33)": + "@csstools/postcss-gradients-interpolation-method@5.0.2(postcss@8.4.38)": dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-hwb-function@3.0.15(postcss@8.4.33)": + "@csstools/postcss-hwb-function@4.0.2(postcss@8.4.38)": dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-ic-unit@3.0.6(postcss@8.4.33)": + "@csstools/postcss-ic-unit@4.0.0(postcss@8.4.38)": dependencies: - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-initial@1.0.1(postcss@8.4.33)": + "@csstools/postcss-initial@2.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - "@csstools/postcss-is-pseudo-class@4.0.8(postcss@8.4.33)": + "@csstools/postcss-is-pseudo-class@5.0.0(postcss@8.4.38)": dependencies: - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.0.16) - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.0) + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - "@csstools/postcss-light-dark-function@1.0.5(postcss@8.4.33)": + "@csstools/postcss-light-dark-function@2.0.4(postcss@8.4.38)": dependencies: - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-logical-float-and-clear@2.0.1(postcss@8.4.33)": + "@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - "@csstools/postcss-logical-overflow@1.0.1(postcss@8.4.33)": + "@csstools/postcss-logical-overflow@2.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - "@csstools/postcss-logical-overscroll-behavior@1.0.1(postcss@8.4.33)": + "@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - "@csstools/postcss-logical-resize@2.0.1(postcss@8.4.33)": + "@csstools/postcss-logical-resize@3.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-logical-viewport-units@2.0.9(postcss@8.4.33)": + "@csstools/postcss-logical-viewport-units@3.0.1(postcss@8.4.38)": dependencies: - "@csstools/css-tokenizer": 2.3.1 - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-tokenizer": 3.0.1 + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-media-minmax@1.1.6(postcss@8.4.33)": + "@csstools/postcss-media-minmax@2.0.1(postcss@8.4.38)": dependencies: - "@csstools/css-calc": 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/media-query-list-parser": 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - postcss: 8.4.33 + "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + postcss: 8.4.38 - "@csstools/postcss-media-queries-aspect-ratio-number-values@2.0.9(postcss@8.4.33)": + "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.1(postcss@8.4.38)": dependencies: - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/media-query-list-parser": 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - postcss: 8.4.33 + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + postcss: 8.4.38 - "@csstools/postcss-nested-calc@3.0.2(postcss@8.4.33)": + "@csstools/postcss-nested-calc@4.0.0(postcss@8.4.38)": dependencies: - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-normalize-display-values@3.0.2(postcss@8.4.33)": + "@csstools/postcss-normalize-display-values@4.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-oklab-function@3.0.16(postcss@8.4.33)": + "@csstools/postcss-oklab-function@4.0.2(postcss@8.4.38)": dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-progressive-custom-properties@3.2.0(postcss@8.4.33)": + "@csstools/postcss-progressive-custom-properties@4.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-relative-color-syntax@2.0.16(postcss@8.4.33)": + "@csstools/postcss-relative-color-syntax@3.0.2(postcss@8.4.38)": dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - "@csstools/postcss-scope-pseudo-class@3.0.1(postcss@8.4.33)": + "@csstools/postcss-scope-pseudo-class@4.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - "@csstools/postcss-stepped-value-functions@3.0.8(postcss@8.4.33)": + "@csstools/postcss-stepped-value-functions@4.0.1(postcss@8.4.38)": dependencies: - "@csstools/css-calc": 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - postcss: 8.4.33 + "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + postcss: 8.4.38 - "@csstools/postcss-text-decoration-shorthand@3.0.6(postcss@8.4.33)": + "@csstools/postcss-text-decoration-shorthand@4.0.1(postcss@8.4.38)": dependencies: - "@csstools/color-helpers": 4.2.0 - postcss: 8.4.33 + "@csstools/color-helpers": 5.0.1 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-trigonometric-functions@3.0.8(postcss@8.4.33)": + "@csstools/postcss-trigonometric-functions@4.0.1(postcss@8.4.38)": dependencies: - "@csstools/css-calc": 1.2.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - postcss: 8.4.33 + "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + postcss: 8.4.38 - "@csstools/postcss-unset-value@3.0.1(postcss@8.4.33)": + "@csstools/postcss-unset-value@4.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - "@csstools/selector-resolve-nested@1.1.0(postcss-selector-parser@6.1.0)": + "@csstools/selector-resolve-nested@2.0.0(postcss-selector-parser@6.1.0)": dependencies: postcss-selector-parser: 6.1.0 - "@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.0.16)": - dependencies: - postcss-selector-parser: 6.0.16 - - "@csstools/selector-specificity@3.1.1(postcss-selector-parser@6.1.0)": + "@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.0)": dependencies: postcss-selector-parser: 6.1.0 - "@csstools/utilities@1.0.0(postcss@8.4.33)": + "@csstools/utilities@2.0.0(postcss@8.4.38)": dependencies: - postcss: 8.4.33 + postcss: 8.4.38 "@ctrl/tinycolor@4.1.0": {} @@ -6270,150 +6063,81 @@ snapshots: "@emmetio/stream-reader@2.2.0": {} - "@emnapi/runtime@1.1.1": + "@emnapi/runtime@1.2.0": dependencies: tslib: 2.6.2 optional: true - "@esbuild/aix-ppc64@0.20.2": + "@esbuild/aix-ppc64@0.21.5": optional: true - "@esbuild/aix-ppc64@0.21.4": + "@esbuild/android-arm64@0.21.5": optional: true - "@esbuild/android-arm64@0.20.2": + "@esbuild/android-arm@0.21.5": optional: true - "@esbuild/android-arm64@0.21.4": + "@esbuild/android-x64@0.21.5": optional: true - "@esbuild/android-arm@0.20.2": + "@esbuild/darwin-arm64@0.21.5": optional: true - "@esbuild/android-arm@0.21.4": + "@esbuild/darwin-x64@0.21.5": optional: true - "@esbuild/android-x64@0.20.2": + "@esbuild/freebsd-arm64@0.21.5": optional: true - "@esbuild/android-x64@0.21.4": + "@esbuild/freebsd-x64@0.21.5": optional: true - "@esbuild/darwin-arm64@0.20.2": + "@esbuild/linux-arm64@0.21.5": optional: true - "@esbuild/darwin-arm64@0.21.4": + "@esbuild/linux-arm@0.21.5": optional: true - "@esbuild/darwin-x64@0.20.2": + "@esbuild/linux-ia32@0.21.5": optional: true - "@esbuild/darwin-x64@0.21.4": + "@esbuild/linux-loong64@0.21.5": optional: true - "@esbuild/freebsd-arm64@0.20.2": + "@esbuild/linux-mips64el@0.21.5": optional: true - "@esbuild/freebsd-arm64@0.21.4": + "@esbuild/linux-ppc64@0.21.5": optional: true - "@esbuild/freebsd-x64@0.20.2": + "@esbuild/linux-riscv64@0.21.5": optional: true - "@esbuild/freebsd-x64@0.21.4": + "@esbuild/linux-s390x@0.21.5": optional: true - "@esbuild/linux-arm64@0.20.2": + "@esbuild/linux-x64@0.21.5": optional: true - "@esbuild/linux-arm64@0.21.4": + "@esbuild/netbsd-x64@0.21.5": optional: true - "@esbuild/linux-arm@0.20.2": + "@esbuild/openbsd-x64@0.21.5": optional: true - "@esbuild/linux-arm@0.21.4": + "@esbuild/sunos-x64@0.21.5": optional: true - "@esbuild/linux-ia32@0.20.2": + "@esbuild/win32-arm64@0.21.5": optional: true - "@esbuild/linux-ia32@0.21.4": + "@esbuild/win32-ia32@0.21.5": optional: true - "@esbuild/linux-loong64@0.20.2": + "@esbuild/win32-x64@0.21.5": optional: true - "@esbuild/linux-loong64@0.21.4": - optional: true - - "@esbuild/linux-mips64el@0.20.2": - optional: true - - "@esbuild/linux-mips64el@0.21.4": - optional: true - - "@esbuild/linux-ppc64@0.20.2": - optional: true - - "@esbuild/linux-ppc64@0.21.4": - optional: true - - "@esbuild/linux-riscv64@0.20.2": - optional: true - - "@esbuild/linux-riscv64@0.21.4": - optional: true - - "@esbuild/linux-s390x@0.20.2": - optional: true - - "@esbuild/linux-s390x@0.21.4": - optional: true - - "@esbuild/linux-x64@0.20.2": - optional: true - - "@esbuild/linux-x64@0.21.4": - optional: true - - "@esbuild/netbsd-x64@0.20.2": - optional: true - - "@esbuild/netbsd-x64@0.21.4": - optional: true - - "@esbuild/openbsd-x64@0.20.2": - optional: true - - "@esbuild/openbsd-x64@0.21.4": - optional: true - - "@esbuild/sunos-x64@0.20.2": - optional: true - - "@esbuild/sunos-x64@0.21.4": - optional: true - - "@esbuild/win32-arm64@0.20.2": - optional: true - - "@esbuild/win32-arm64@0.21.4": - optional: true - - "@esbuild/win32-ia32@0.20.2": - optional: true - - "@esbuild/win32-ia32@0.21.4": - optional: true - - "@esbuild/win32-x64@0.20.2": - optional: true - - "@esbuild/win32-x64@0.21.4": - optional: true - - "@expressive-code/core@0.35.3": + "@expressive-code/core@0.35.6": dependencies: "@ctrl/tinycolor": 4.1.0 hast-util-select: 6.0.2 @@ -6425,111 +6149,98 @@ snapshots: unist-util-visit: 5.0.0 unist-util-visit-parents: 6.0.1 - "@expressive-code/plugin-frames@0.35.3": + "@expressive-code/plugin-frames@0.35.6": dependencies: - "@expressive-code/core": 0.35.3 + "@expressive-code/core": 0.35.6 - "@expressive-code/plugin-shiki@0.35.3": + "@expressive-code/plugin-shiki@0.35.6": dependencies: - "@expressive-code/core": 0.35.3 - shiki: 1.5.2 + "@expressive-code/core": 0.35.6 + shiki: 1.6.3 - "@expressive-code/plugin-text-markers@0.35.3": + "@expressive-code/plugin-text-markers@0.35.6": dependencies: - "@expressive-code/core": 0.35.3 + "@expressive-code/core": 0.35.6 - "@fontsource/inter@5.0.18": {} + "@fontsource/inter@5.1.0": {} - "@fontsource/rubik@5.0.20": {} + "@fontsource/rubik@5.1.0": {} - "@img/sharp-darwin-arm64@0.33.4": + "@img/sharp-darwin-arm64@0.33.5": optionalDependencies: - "@img/sharp-libvips-darwin-arm64": 1.0.2 + "@img/sharp-libvips-darwin-arm64": 1.0.4 optional: true - "@img/sharp-darwin-x64@0.33.4": + "@img/sharp-darwin-x64@0.33.5": optionalDependencies: - "@img/sharp-libvips-darwin-x64": 1.0.2 + "@img/sharp-libvips-darwin-x64": 1.0.4 optional: true - "@img/sharp-libvips-darwin-arm64@1.0.2": + "@img/sharp-libvips-darwin-arm64@1.0.4": optional: true - "@img/sharp-libvips-darwin-x64@1.0.2": + "@img/sharp-libvips-darwin-x64@1.0.4": optional: true - "@img/sharp-libvips-linux-arm64@1.0.2": + "@img/sharp-libvips-linux-arm64@1.0.4": optional: true - "@img/sharp-libvips-linux-arm@1.0.2": + "@img/sharp-libvips-linux-arm@1.0.5": optional: true - "@img/sharp-libvips-linux-s390x@1.0.2": + "@img/sharp-libvips-linux-s390x@1.0.4": optional: true - "@img/sharp-libvips-linux-x64@1.0.2": + "@img/sharp-libvips-linux-x64@1.0.4": optional: true - "@img/sharp-libvips-linuxmusl-arm64@1.0.2": + "@img/sharp-libvips-linuxmusl-arm64@1.0.4": optional: true - "@img/sharp-libvips-linuxmusl-x64@1.0.2": + "@img/sharp-libvips-linuxmusl-x64@1.0.4": optional: true - "@img/sharp-linux-arm64@0.33.4": + "@img/sharp-linux-arm64@0.33.5": optionalDependencies: - "@img/sharp-libvips-linux-arm64": 1.0.2 + "@img/sharp-libvips-linux-arm64": 1.0.4 optional: true - "@img/sharp-linux-arm@0.33.4": + "@img/sharp-linux-arm@0.33.5": optionalDependencies: - "@img/sharp-libvips-linux-arm": 1.0.2 + "@img/sharp-libvips-linux-arm": 1.0.5 optional: true - "@img/sharp-linux-s390x@0.33.4": + "@img/sharp-linux-s390x@0.33.5": optionalDependencies: - "@img/sharp-libvips-linux-s390x": 1.0.2 + "@img/sharp-libvips-linux-s390x": 1.0.4 optional: true - "@img/sharp-linux-x64@0.33.4": + "@img/sharp-linux-x64@0.33.5": optionalDependencies: - "@img/sharp-libvips-linux-x64": 1.0.2 + "@img/sharp-libvips-linux-x64": 1.0.4 optional: true - "@img/sharp-linuxmusl-arm64@0.33.4": + "@img/sharp-linuxmusl-arm64@0.33.5": optionalDependencies: - "@img/sharp-libvips-linuxmusl-arm64": 1.0.2 + "@img/sharp-libvips-linuxmusl-arm64": 1.0.4 optional: true - "@img/sharp-linuxmusl-x64@0.33.4": + "@img/sharp-linuxmusl-x64@0.33.5": optionalDependencies: - "@img/sharp-libvips-linuxmusl-x64": 1.0.2 + "@img/sharp-libvips-linuxmusl-x64": 1.0.4 optional: true - "@img/sharp-wasm32@0.33.4": + "@img/sharp-wasm32@0.33.5": dependencies: - "@emnapi/runtime": 1.1.1 + "@emnapi/runtime": 1.2.0 optional: true - "@img/sharp-win32-ia32@0.33.4": + "@img/sharp-win32-ia32@0.33.5": optional: true - "@img/sharp-win32-x64@0.33.4": + "@img/sharp-win32-x64@0.33.5": optional: true - "@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462": - dependencies: - "@vscode/l10n": 0.0.18 - vscode-languageserver-textdocument: 1.0.11 - vscode-languageserver-types: 3.17.5 - vscode-uri: 3.0.8 - - "@jridgewell/gen-mapping@0.3.3": - dependencies: - "@jridgewell/set-array": 1.1.2 - "@jridgewell/sourcemap-codec": 1.4.15 - "@jridgewell/trace-mapping": 0.3.20 - "@jridgewell/gen-mapping@0.3.5": dependencies: "@jridgewell/set-array": 1.2.1 @@ -6538,16 +6249,11 @@ snapshots: "@jridgewell/resolve-uri@3.1.1": {} - "@jridgewell/set-array@1.1.2": {} - "@jridgewell/set-array@1.2.1": {} "@jridgewell/sourcemap-codec@1.4.15": {} - "@jridgewell/trace-mapping@0.3.20": - dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 + "@jridgewell/sourcemap-codec@1.5.0": {} "@jridgewell/trace-mapping@0.3.25": dependencies: @@ -6558,7 +6264,7 @@ snapshots: dependencies: "@types/estree": 1.0.5 "@types/estree-jsx": 1.0.3 - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 "@types/mdx": 2.0.10 collapse-white-space: 2.1.0 devlop: 1.1.0 @@ -6574,11 +6280,11 @@ snapshots: remark-parse: 11.0.0 remark-rehype: 11.1.0 source-map: 0.7.4 - unified: 11.0.4 + unified: 11.0.5 unist-util-position-from-estree: 2.0.0 unist-util-stringify-position: 4.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 transitivePeerDependencies: - supports-color @@ -6594,6 +6300,8 @@ snapshots: "@nodelib/fs.scandir": 2.1.5 fastq: 1.15.0 + "@oslojs/encoding@1.1.0": {} + "@pagefind/darwin-arm64@1.0.4": optional: true @@ -6611,58 +6319,91 @@ snapshots: "@pagefind/windows-x64@1.0.4": optional: true - "@rollup/rollup-android-arm-eabi@4.17.2": + "@rollup/pluginutils@5.1.2(rollup@4.22.5)": + dependencies: + "@types/estree": 1.0.5 + estree-walker: 2.0.2 + picomatch: 2.3.1 + optionalDependencies: + rollup: 4.22.5 + + "@rollup/rollup-android-arm-eabi@4.22.5": optional: true - "@rollup/rollup-android-arm64@4.17.2": + "@rollup/rollup-android-arm64@4.22.5": optional: true - "@rollup/rollup-darwin-arm64@4.17.2": + "@rollup/rollup-darwin-arm64@4.22.5": optional: true - "@rollup/rollup-darwin-x64@4.17.2": + "@rollup/rollup-darwin-x64@4.22.5": optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.17.2": + "@rollup/rollup-linux-arm-gnueabihf@4.22.5": optional: true - "@rollup/rollup-linux-arm-musleabihf@4.17.2": + "@rollup/rollup-linux-arm-musleabihf@4.22.5": optional: true - "@rollup/rollup-linux-arm64-gnu@4.17.2": + "@rollup/rollup-linux-arm64-gnu@4.22.5": optional: true - "@rollup/rollup-linux-arm64-musl@4.17.2": + "@rollup/rollup-linux-arm64-musl@4.22.5": optional: true - "@rollup/rollup-linux-powerpc64le-gnu@4.17.2": + "@rollup/rollup-linux-powerpc64le-gnu@4.22.5": optional: true - "@rollup/rollup-linux-riscv64-gnu@4.17.2": + "@rollup/rollup-linux-riscv64-gnu@4.22.5": optional: true - "@rollup/rollup-linux-s390x-gnu@4.17.2": + "@rollup/rollup-linux-s390x-gnu@4.22.5": optional: true - "@rollup/rollup-linux-x64-gnu@4.17.2": + "@rollup/rollup-linux-x64-gnu@4.22.5": optional: true - "@rollup/rollup-linux-x64-musl@4.17.2": + "@rollup/rollup-linux-x64-musl@4.22.5": optional: true - "@rollup/rollup-win32-arm64-msvc@4.17.2": + "@rollup/rollup-win32-arm64-msvc@4.22.5": optional: true - "@rollup/rollup-win32-ia32-msvc@4.17.2": + "@rollup/rollup-win32-ia32-msvc@4.22.5": optional: true - "@rollup/rollup-win32-x64-msvc@4.17.2": + "@rollup/rollup-win32-x64-msvc@4.22.5": optional: true - "@shikijs/core@1.5.2": {} + "@shikijs/core@1.20.0": + dependencies: + "@shikijs/engine-javascript": 1.20.0 + "@shikijs/engine-oniguruma": 1.20.0 + "@shikijs/types": 1.20.0 + "@shikijs/vscode-textmate": 9.2.2 + "@types/hast": 3.0.4 + hast-util-to-html: 9.0.3 "@shikijs/core@1.6.3": {} + "@shikijs/engine-javascript@1.20.0": + dependencies: + "@shikijs/types": 1.20.0 + "@shikijs/vscode-textmate": 9.2.2 + oniguruma-to-js: 0.4.3 + + "@shikijs/engine-oniguruma@1.20.0": + dependencies: + "@shikijs/types": 1.20.0 + "@shikijs/vscode-textmate": 9.2.2 + + "@shikijs/types@1.20.0": + dependencies: + "@shikijs/vscode-textmate": 9.2.2 + "@types/hast": 3.0.4 + + "@shikijs/vscode-textmate@9.2.2": {} + "@trysound/sax@0.2.0": {} "@types/acorn@4.0.6": @@ -6672,23 +6413,23 @@ snapshots: "@types/babel__core@7.20.5": dependencies: "@babel/parser": 7.24.7 - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 "@types/babel__generator": 7.6.7 "@types/babel__template": 7.4.4 "@types/babel__traverse": 7.20.4 "@types/babel__generator@7.6.7": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 "@types/babel__template@7.4.4": dependencies: "@babel/parser": 7.24.7 - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 "@types/babel__traverse@7.20.4": dependencies: - "@babel/types": 7.24.7 + "@babel/types": 7.25.6 "@types/cookie@0.6.0": {} @@ -6702,22 +6443,28 @@ snapshots: "@types/estree@1.0.5": {} + "@types/estree@1.0.6": {} + "@types/hast@3.0.3": dependencies: "@types/unist": 3.0.2 + "@types/hast@3.0.4": + dependencies: + "@types/unist": 3.0.2 + "@types/mdast@4.0.3": dependencies: "@types/unist": 3.0.2 + "@types/mdast@4.0.4": + dependencies: + "@types/unist": 3.0.2 + "@types/mdx@2.0.10": {} "@types/ms@0.7.34": {} - "@types/nlcst@1.0.4": - dependencies: - "@types/unist": 2.0.10 - "@types/nlcst@2.0.3": dependencies: "@types/unist": 3.0.2 @@ -6734,26 +6481,24 @@ snapshots: "@ungap/structured-clone@1.2.0": {} - "@volar/kit@2.2.4(typescript@5.4.5)": + "@volar/kit@2.4.5(typescript@5.6.2)": dependencies: - "@volar/language-service": 2.2.4 - "@volar/typescript": 2.2.4 + "@volar/language-service": 2.4.5 + "@volar/typescript": 2.4.5 typesafe-path: 0.2.2 - typescript: 5.4.5 + typescript: 5.6.2 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - "@volar/language-core@2.2.4": + "@volar/language-core@2.4.5": dependencies: - "@volar/source-map": 2.2.4 + "@volar/source-map": 2.4.5 - "@volar/language-server@2.2.4": + "@volar/language-server@2.4.5": dependencies: - "@volar/language-core": 2.2.4 - "@volar/language-service": 2.2.4 - "@volar/snapshot-document": 2.2.4 - "@volar/typescript": 2.2.4 - "@vscode/l10n": 0.0.16 + "@volar/language-core": 2.4.5 + "@volar/language-service": 2.4.5 + "@volar/typescript": 2.4.5 path-browserify: 1.0.1 request-light: 0.7.0 vscode-languageserver: 9.0.1 @@ -6761,28 +6506,22 @@ snapshots: vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - "@volar/language-service@2.2.4": + "@volar/language-service@2.4.5": dependencies: - "@volar/language-core": 2.2.4 + "@volar/language-core": 2.4.5 vscode-languageserver-protocol: 3.17.5 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 - "@volar/snapshot-document@2.2.4": - dependencies: - vscode-languageserver-protocol: 3.17.5 - vscode-languageserver-textdocument: 1.0.11 + "@volar/source-map@2.4.5": {} - "@volar/source-map@2.2.4": + "@volar/typescript@2.4.5": dependencies: - muggle-string: 0.4.1 - - "@volar/typescript@2.2.4": - dependencies: - "@volar/language-core": 2.2.4 + "@volar/language-core": 2.4.5 path-browserify: 1.0.1 + vscode-uri: 3.0.8 - "@vscode/emmet-helper@2.9.2": + "@vscode/emmet-helper@2.9.3": dependencies: emmet: 2.4.6 jsonc-parser: 2.3.1 @@ -6790,15 +6529,20 @@ snapshots: vscode-languageserver-types: 3.17.5 vscode-uri: 2.1.2 - "@vscode/l10n@0.0.16": {} - "@vscode/l10n@0.0.18": {} - acorn-jsx@5.3.2(acorn@8.11.3): + acorn-jsx@5.3.2(acorn@8.12.1): dependencies: - acorn: 8.11.3 + acorn: 8.12.1 - acorn@8.11.3: {} + acorn@8.12.1: {} + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.2 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 ansi-align@3.0.1: dependencies: @@ -6841,46 +6585,44 @@ snapshots: astring@1.8.6: {} - astro-expressive-code@0.35.3(astro@4.10.1(typescript@5.4.5)): + astro-expressive-code@0.35.6(astro@4.15.9(rollup@4.22.5)(typescript@5.6.2)): dependencies: - astro: 4.10.1(typescript@5.4.5) - rehype-expressive-code: 0.35.3 + astro: 4.15.9(rollup@4.22.5)(typescript@5.6.2) + rehype-expressive-code: 0.35.6 - astro@4.10.1(typescript@5.4.5): + astro@4.15.9(rollup@4.22.5)(typescript@5.6.2): dependencies: - "@astrojs/compiler": 2.8.0 - "@astrojs/internal-helpers": 0.4.0 - "@astrojs/markdown-remark": 5.1.0 + "@astrojs/compiler": 2.10.3 + "@astrojs/internal-helpers": 0.4.1 + "@astrojs/markdown-remark": 5.2.0 "@astrojs/telemetry": 3.1.0 - "@babel/core": 7.24.7 - "@babel/generator": 7.24.7 - "@babel/parser": 7.24.7 - "@babel/plugin-transform-react-jsx": 7.24.7(@babel/core@7.24.7) - "@babel/traverse": 7.24.7 - "@babel/types": 7.24.7 + "@babel/core": 7.25.2 + "@babel/plugin-transform-react-jsx": 7.25.2(@babel/core@7.25.2) + "@babel/types": 7.25.6 + "@oslojs/encoding": 1.1.0 + "@rollup/pluginutils": 5.1.2(rollup@4.22.5) "@types/babel__core": 7.20.5 "@types/cookie": 0.6.0 - acorn: 8.11.3 + acorn: 8.12.1 aria-query: 5.3.0 - axobject-query: 4.0.0 + axobject-query: 4.1.0 boxen: 7.1.1 - chokidar: 3.6.0 ci-info: 4.0.0 clsx: 2.1.1 common-ancestor-path: 1.0.1 cookie: 0.6.0 cssesc: 3.0.0 - debug: 4.3.4 + debug: 4.3.7 deterministic-object-hash: 2.0.2 devalue: 5.0.0 diff: 5.2.0 dlv: 1.1.3 dset: 3.1.3 - es-module-lexer: 1.5.3 - esbuild: 0.21.4 + es-module-lexer: 1.5.4 + esbuild: 0.21.5 estree-walker: 3.0.3 - execa: 8.0.1 fast-glob: 3.3.2 + fastq: 1.17.1 flattie: 1.1.1 github-slugger: 2.0.0 gray-matter: 4.0.3 @@ -6888,65 +6630,69 @@ snapshots: http-cache-semantics: 4.1.1 js-yaml: 4.1.0 kleur: 4.1.5 - magic-string: 0.30.10 + magic-string: 0.30.11 + magicast: 0.3.5 + micromatch: 4.0.8 mrmime: 2.0.0 - ora: 8.0.1 - p-limit: 5.0.0 + neotraverse: 0.6.18 + ora: 8.1.0 + p-limit: 6.1.0 p-queue: 8.0.1 - path-to-regexp: 6.2.2 - preferred-pm: 3.1.3 + preferred-pm: 4.0.0 prompts: 2.4.2 rehype: 13.0.1 - resolve: 1.22.8 - semver: 7.6.2 - shiki: 1.6.3 - string-width: 7.1.0 + semver: 7.6.3 + shiki: 1.20.0 + string-width: 7.2.0 strip-ansi: 7.1.0 - tsconfck: 3.1.0(typescript@5.4.5) + tinyexec: 0.3.0 + tsconfck: 3.1.3(typescript@5.6.2) unist-util-visit: 5.0.0 - vfile: 6.0.1 - vite: 5.2.13 - vitefu: 0.2.5(vite@5.2.13) - which-pm: 2.2.0 + vfile: 6.0.3 + vite: 5.4.8 + vitefu: 1.0.2(vite@5.4.8) + which-pm: 3.0.0 + xxhash-wasm: 1.0.2 yargs-parser: 21.1.1 zod: 3.23.8 - zod-to-json-schema: 3.23.0(zod@3.23.8) + zod-to-json-schema: 3.23.3(zod@3.23.8) + zod-to-ts: 1.2.0(typescript@5.6.2)(zod@3.23.8) optionalDependencies: - sharp: 0.33.4 + sharp: 0.33.5 transitivePeerDependencies: - "@types/node" - less - lightningcss + - rollup - sass + - sass-embedded - stylus - sugarss - supports-color - terser - typescript - autoprefixer@10.4.19(postcss@8.4.31): + autoprefixer@10.4.20(postcss@8.4.38): dependencies: - browserslist: 4.23.0 - caniuse-lite: 1.0.30001620 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001664 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.31 + picocolors: 1.1.0 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - autoprefixer@10.4.19(postcss@8.4.33): + autoprefixer@10.4.20(postcss@8.4.47): dependencies: - browserslist: 4.23.0 - caniuse-lite: 1.0.30001620 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001664 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.33 + picocolors: 1.1.0 + postcss: 8.4.47 postcss-value-parser: 4.2.0 - axobject-query@4.0.0: - dependencies: - dequal: 2.0.3 + axobject-query@4.1.0: {} bail@2.0.2: {} @@ -6986,12 +6732,16 @@ snapshots: dependencies: fill-range: 7.0.1 - browserslist@4.23.0: + braces@3.0.3: dependencies: - caniuse-lite: 1.0.30001620 - electron-to-chromium: 1.4.773 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.23.0) + fill-range: 7.1.1 + + browserslist@4.24.0: + dependencies: + caniuse-lite: 1.0.30001664 + electron-to-chromium: 1.5.29 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.0) camelcase-css@2.0.1: {} @@ -6999,13 +6749,15 @@ snapshots: caniuse-api@3.0.0: dependencies: - browserslist: 4.23.0 + browserslist: 4.24.0 caniuse-lite: 1.0.30001620 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 caniuse-lite@1.0.30001620: {} + caniuse-lite@1.0.30001664: {} + ccount@2.0.1: {} chalk@2.4.2: @@ -7024,18 +6776,6 @@ snapshots: character-reference-invalid@2.0.1: {} - chokidar@3.5.3: - dependencies: - anymatch: 3.1.3 - braces: 3.0.2 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 - chokidar@3.6.0: dependencies: anymatch: 3.1.3 @@ -7052,9 +6792,9 @@ snapshots: cli-boxes@3.0.0: {} - cli-cursor@4.0.0: + cli-cursor@5.0.0: dependencies: - restore-cursor: 4.0.0 + restore-cursor: 5.1.0 cli-spinners@2.9.2: {} @@ -7106,31 +6846,25 @@ snapshots: cookie@0.6.0: {} - cross-spawn@7.0.3: + css-blank-pseudo@7.0.0(postcss@8.4.38): dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - css-blank-pseudo@6.0.2(postcss@8.4.33): + css-declaration-sorter@7.2.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 - css-declaration-sorter@7.2.0(postcss@8.4.33): + css-has-pseudo@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - - css-has-pseudo@6.0.5(postcss@8.4.33): - dependencies: - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.0.16) - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.0) + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 postcss-value-parser: 4.2.0 - css-prefers-color-scheme@9.0.1(postcss@8.4.33): + css-prefers-color-scheme@10.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 css-select@5.1.0: dependencies: @@ -7154,53 +6888,53 @@ snapshots: css-what@6.1.0: {} - cssdb@8.0.1: {} + cssdb@8.1.1: {} cssesc@3.0.0: {} - cssnano-preset-default@7.0.2(postcss@8.4.33): + cssnano-preset-default@7.0.6(postcss@8.4.38): dependencies: - browserslist: 4.23.0 - css-declaration-sorter: 7.2.0(postcss@8.4.33) - cssnano-utils: 5.0.0(postcss@8.4.33) - postcss: 8.4.33 - postcss-calc: 10.0.0(postcss@8.4.33) - postcss-colormin: 7.0.0(postcss@8.4.33) - postcss-convert-values: 7.0.0(postcss@8.4.33) - postcss-discard-comments: 7.0.0(postcss@8.4.33) - postcss-discard-duplicates: 7.0.0(postcss@8.4.33) - postcss-discard-empty: 7.0.0(postcss@8.4.33) - postcss-discard-overridden: 7.0.0(postcss@8.4.33) - postcss-merge-longhand: 7.0.1(postcss@8.4.33) - postcss-merge-rules: 7.0.1(postcss@8.4.33) - postcss-minify-font-values: 7.0.0(postcss@8.4.33) - postcss-minify-gradients: 7.0.0(postcss@8.4.33) - postcss-minify-params: 7.0.0(postcss@8.4.33) - postcss-minify-selectors: 7.0.1(postcss@8.4.33) - postcss-normalize-charset: 7.0.0(postcss@8.4.33) - postcss-normalize-display-values: 7.0.0(postcss@8.4.33) - postcss-normalize-positions: 7.0.0(postcss@8.4.33) - postcss-normalize-repeat-style: 7.0.0(postcss@8.4.33) - postcss-normalize-string: 7.0.0(postcss@8.4.33) - postcss-normalize-timing-functions: 7.0.0(postcss@8.4.33) - postcss-normalize-unicode: 7.0.0(postcss@8.4.33) - postcss-normalize-url: 7.0.0(postcss@8.4.33) - postcss-normalize-whitespace: 7.0.0(postcss@8.4.33) - postcss-ordered-values: 7.0.0(postcss@8.4.33) - postcss-reduce-initial: 7.0.0(postcss@8.4.33) - postcss-reduce-transforms: 7.0.0(postcss@8.4.33) - postcss-svgo: 7.0.1(postcss@8.4.33) - postcss-unique-selectors: 7.0.1(postcss@8.4.33) + browserslist: 4.24.0 + css-declaration-sorter: 7.2.0(postcss@8.4.38) + cssnano-utils: 5.0.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-calc: 10.0.2(postcss@8.4.38) + postcss-colormin: 7.0.2(postcss@8.4.38) + postcss-convert-values: 7.0.4(postcss@8.4.38) + postcss-discard-comments: 7.0.3(postcss@8.4.38) + postcss-discard-duplicates: 7.0.1(postcss@8.4.38) + postcss-discard-empty: 7.0.0(postcss@8.4.38) + postcss-discard-overridden: 7.0.0(postcss@8.4.38) + postcss-merge-longhand: 7.0.4(postcss@8.4.38) + postcss-merge-rules: 7.0.4(postcss@8.4.38) + postcss-minify-font-values: 7.0.0(postcss@8.4.38) + postcss-minify-gradients: 7.0.0(postcss@8.4.38) + postcss-minify-params: 7.0.2(postcss@8.4.38) + postcss-minify-selectors: 7.0.4(postcss@8.4.38) + postcss-normalize-charset: 7.0.0(postcss@8.4.38) + postcss-normalize-display-values: 7.0.0(postcss@8.4.38) + postcss-normalize-positions: 7.0.0(postcss@8.4.38) + postcss-normalize-repeat-style: 7.0.0(postcss@8.4.38) + postcss-normalize-string: 7.0.0(postcss@8.4.38) + postcss-normalize-timing-functions: 7.0.0(postcss@8.4.38) + postcss-normalize-unicode: 7.0.2(postcss@8.4.38) + postcss-normalize-url: 7.0.0(postcss@8.4.38) + postcss-normalize-whitespace: 7.0.0(postcss@8.4.38) + postcss-ordered-values: 7.0.1(postcss@8.4.38) + postcss-reduce-initial: 7.0.2(postcss@8.4.38) + postcss-reduce-transforms: 7.0.0(postcss@8.4.38) + postcss-svgo: 7.0.1(postcss@8.4.38) + postcss-unique-selectors: 7.0.3(postcss@8.4.38) - cssnano-utils@5.0.0(postcss@8.4.33): + cssnano-utils@5.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - cssnano@7.0.2(postcss@8.4.33): + cssnano@7.0.6(postcss@8.4.38): dependencies: - cssnano-preset-default: 7.0.2(postcss@8.4.33) - lilconfig: 3.1.1 - postcss: 8.4.33 + cssnano-preset-default: 7.0.6(postcss@8.4.38) + lilconfig: 3.1.2 + postcss: 8.4.38 csso@5.0.5: dependencies: @@ -7210,6 +6944,10 @@ snapshots: dependencies: ms: 2.1.2 + debug@4.3.7: + dependencies: + ms: 2.1.3 + decode-named-character-reference@1.0.2: dependencies: character-entities: 2.0.2 @@ -7258,7 +6996,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.4.773: {} + electron-to-chromium@1.5.29: {} emmet@2.4.6: dependencies: @@ -7273,62 +7011,38 @@ snapshots: entities@4.5.0: {} - es-module-lexer@1.5.3: {} + es-module-lexer@1.5.4: {} - esbuild@0.20.2: + esbuild@0.21.5: optionalDependencies: - "@esbuild/aix-ppc64": 0.20.2 - "@esbuild/android-arm": 0.20.2 - "@esbuild/android-arm64": 0.20.2 - "@esbuild/android-x64": 0.20.2 - "@esbuild/darwin-arm64": 0.20.2 - "@esbuild/darwin-x64": 0.20.2 - "@esbuild/freebsd-arm64": 0.20.2 - "@esbuild/freebsd-x64": 0.20.2 - "@esbuild/linux-arm": 0.20.2 - "@esbuild/linux-arm64": 0.20.2 - "@esbuild/linux-ia32": 0.20.2 - "@esbuild/linux-loong64": 0.20.2 - "@esbuild/linux-mips64el": 0.20.2 - "@esbuild/linux-ppc64": 0.20.2 - "@esbuild/linux-riscv64": 0.20.2 - "@esbuild/linux-s390x": 0.20.2 - "@esbuild/linux-x64": 0.20.2 - "@esbuild/netbsd-x64": 0.20.2 - "@esbuild/openbsd-x64": 0.20.2 - "@esbuild/sunos-x64": 0.20.2 - "@esbuild/win32-arm64": 0.20.2 - "@esbuild/win32-ia32": 0.20.2 - "@esbuild/win32-x64": 0.20.2 - - esbuild@0.21.4: - optionalDependencies: - "@esbuild/aix-ppc64": 0.21.4 - "@esbuild/android-arm": 0.21.4 - "@esbuild/android-arm64": 0.21.4 - "@esbuild/android-x64": 0.21.4 - "@esbuild/darwin-arm64": 0.21.4 - "@esbuild/darwin-x64": 0.21.4 - "@esbuild/freebsd-arm64": 0.21.4 - "@esbuild/freebsd-x64": 0.21.4 - "@esbuild/linux-arm": 0.21.4 - "@esbuild/linux-arm64": 0.21.4 - "@esbuild/linux-ia32": 0.21.4 - "@esbuild/linux-loong64": 0.21.4 - "@esbuild/linux-mips64el": 0.21.4 - "@esbuild/linux-ppc64": 0.21.4 - "@esbuild/linux-riscv64": 0.21.4 - "@esbuild/linux-s390x": 0.21.4 - "@esbuild/linux-x64": 0.21.4 - "@esbuild/netbsd-x64": 0.21.4 - "@esbuild/openbsd-x64": 0.21.4 - "@esbuild/sunos-x64": 0.21.4 - "@esbuild/win32-arm64": 0.21.4 - "@esbuild/win32-ia32": 0.21.4 - "@esbuild/win32-x64": 0.21.4 + "@esbuild/aix-ppc64": 0.21.5 + "@esbuild/android-arm": 0.21.5 + "@esbuild/android-arm64": 0.21.5 + "@esbuild/android-x64": 0.21.5 + "@esbuild/darwin-arm64": 0.21.5 + "@esbuild/darwin-x64": 0.21.5 + "@esbuild/freebsd-arm64": 0.21.5 + "@esbuild/freebsd-x64": 0.21.5 + "@esbuild/linux-arm": 0.21.5 + "@esbuild/linux-arm64": 0.21.5 + "@esbuild/linux-ia32": 0.21.5 + "@esbuild/linux-loong64": 0.21.5 + "@esbuild/linux-mips64el": 0.21.5 + "@esbuild/linux-ppc64": 0.21.5 + "@esbuild/linux-riscv64": 0.21.5 + "@esbuild/linux-s390x": 0.21.5 + "@esbuild/linux-x64": 0.21.5 + "@esbuild/netbsd-x64": 0.21.5 + "@esbuild/openbsd-x64": 0.21.5 + "@esbuild/sunos-x64": 0.21.5 + "@esbuild/win32-arm64": 0.21.5 + "@esbuild/win32-ia32": 0.21.5 + "@esbuild/win32-x64": 0.21.5 escalade@3.1.1: {} + escalade@3.2.0: {} + escape-string-regexp@1.0.5: {} escape-string-regexp@5.0.0: {} @@ -7359,30 +7073,20 @@ snapshots: "@types/estree-jsx": 1.0.3 "@types/unist": 3.0.2 + estree-walker@2.0.2: {} + estree-walker@3.0.3: dependencies: "@types/estree": 1.0.5 eventemitter3@5.0.1: {} - execa@8.0.1: + expressive-code@0.35.6: dependencies: - cross-spawn: 7.0.3 - get-stream: 8.0.1 - human-signals: 5.0.0 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 4.1.0 - strip-final-newline: 3.0.0 - - expressive-code@0.35.3: - dependencies: - "@expressive-code/core": 0.35.3 - "@expressive-code/plugin-frames": 0.35.3 - "@expressive-code/plugin-shiki": 0.35.3 - "@expressive-code/plugin-text-markers": 0.35.3 + "@expressive-code/core": 0.35.6 + "@expressive-code/plugin-frames": 0.35.6 + "@expressive-code/plugin-shiki": 0.35.6 + "@expressive-code/plugin-text-markers": 0.35.6 extend-shallow@2.0.1: dependencies: @@ -7390,6 +7094,8 @@ snapshots: extend@3.0.2: {} + fast-deep-equal@3.1.3: {} + fast-glob@3.3.2: dependencies: "@nodelib/fs.stat": 2.0.5 @@ -7398,27 +7104,34 @@ snapshots: merge2: 1.4.1 micromatch: 4.0.5 + fast-uri@3.0.2: {} + fastq@1.15.0: dependencies: reusify: 1.0.4 + fastq@1.17.1: + dependencies: + reusify: 1.0.4 + fill-range@7.0.1: dependencies: to-regex-range: 5.0.1 + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up-simple@1.0.0: {} + find-up@4.1.0: dependencies: locate-path: 5.0.0 path-exists: 4.0.0 - find-up@5.0.0: - dependencies: - locate-path: 6.0.0 - path-exists: 4.0.0 - find-yarn-workspace-root2@1.2.16: dependencies: - micromatch: 4.0.5 + micromatch: 4.0.8 pkg-dir: 4.2.0 flattie@1.1.1: {} @@ -7438,8 +7151,6 @@ snapshots: get-east-asian-width@1.2.0: {} - get-stream@8.0.1: {} - github-slugger@2.0.0: {} glob-parent@5.1.2: @@ -7478,48 +7189,48 @@ snapshots: hast-util-embedded@3.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-is-element: 3.0.0 hast-util-from-html@2.0.1: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 devlop: 1.1.0 hast-util-from-parse5: 8.0.1 parse5: 7.1.2 - vfile: 6.0.1 + vfile: 6.0.3 vfile-message: 4.0.2 hast-util-from-parse5@8.0.1: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 "@types/unist": 3.0.2 devlop: 1.1.0 hastscript: 8.0.0 property-information: 6.4.0 - vfile: 6.0.1 + vfile: 6.0.3 vfile-location: 5.0.2 web-namespaces: 2.0.1 hast-util-has-property@3.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-is-body-ok-link@3.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-is-element@3.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-parse-selector@4.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-phrasing@3.0.1: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-embedded: 3.0.0 hast-util-has-property: 3.0.0 hast-util-is-body-ok-link: 3.0.0 @@ -7527,7 +7238,7 @@ snapshots: hast-util-raw@9.0.1: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 "@types/unist": 3.0.2 "@ungap/structured-clone": 1.2.0 hast-util-from-parse5: 8.0.1 @@ -7537,13 +7248,13 @@ snapshots: parse5: 7.1.2 unist-util-position: 5.0.0 unist-util-visit: 5.0.0 - vfile: 6.0.1 + vfile: 6.0.3 web-namespaces: 2.0.1 zwitch: 2.0.4 hast-util-select@6.0.2: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 "@types/unist": 3.0.2 bcp-47-match: 2.0.3 comma-separated-tokens: 2.0.3 @@ -7564,7 +7275,7 @@ snapshots: dependencies: "@types/estree": 1.0.5 "@types/estree-jsx": 1.0.3 - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 estree-util-attach-comments: 3.0.0 @@ -7583,7 +7294,7 @@ snapshots: hast-util-to-html@9.0.1: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 "@types/unist": 3.0.2 ccount: 2.0.1 comma-separated-tokens: 2.0.3 @@ -7596,10 +7307,24 @@ snapshots: stringify-entities: 4.0.3 zwitch: 2.0.4 + hast-util-to-html@9.0.3: + dependencies: + "@types/hast": 3.0.4 + "@types/unist": 3.0.2 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.0.2 + property-information: 6.4.0 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.3 + zwitch: 2.0.4 + hast-util-to-jsx-runtime@2.3.0: dependencies: "@types/estree": 1.0.5 - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 "@types/unist": 3.0.2 comma-separated-tokens: 2.0.3 devlop: 1.1.0 @@ -7618,7 +7343,7 @@ snapshots: hast-util-to-parse5@8.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 property-information: 6.4.0 @@ -7628,7 +7353,7 @@ snapshots: hast-util-to-string@3.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-to-text@4.0.2: dependencies: @@ -7639,11 +7364,11 @@ snapshots: hast-util-whitespace@3.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hastscript@8.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 4.0.0 property-information: 6.4.0 @@ -7651,7 +7376,7 @@ snapshots: hastscript@9.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 4.0.0 property-information: 6.4.0 @@ -7665,9 +7390,11 @@ snapshots: http-cache-semantics@4.1.1: {} - human-signals@5.0.0: {} + i18next@23.15.1: + dependencies: + "@babel/runtime": 7.25.6 - import-meta-resolve@4.0.0: {} + import-meta-resolve@4.1.0: {} inflight@1.0.6: dependencies: @@ -7693,8 +7420,6 @@ snapshots: dependencies: binary-extensions: 2.2.0 - is-buffer@2.0.5: {} - is-core-module@2.13.1: dependencies: hasown: 2.0.0 @@ -7729,8 +7454,6 @@ snapshots: dependencies: "@types/estree": 1.0.5 - is-stream@3.0.0: {} - is-unicode-supported@1.3.0: {} is-unicode-supported@2.0.0: {} @@ -7739,8 +7462,6 @@ snapshots: dependencies: is-inside-container: 1.0.0 - isexe@2.0.0: {} - jiti@1.21.0: {} js-tokens@4.0.0: {} @@ -7756,10 +7477,14 @@ snapshots: jsesc@2.5.2: {} + json-schema-traverse@1.0.0: {} + json5@2.2.3: {} jsonc-parser@2.3.1: {} + jsonc-parser@3.3.1: {} + kind-of@6.0.3: {} kleur@3.0.3: {} @@ -7768,10 +7493,10 @@ snapshots: lilconfig@2.1.0: {} - lilconfig@3.0.0: {} - lilconfig@3.1.1: {} + lilconfig@3.1.2: {} + lines-and-columns@1.2.4: {} load-yaml-file@0.2.0: @@ -7785,14 +7510,12 @@ snapshots: dependencies: p-locate: 4.1.0 - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 - lodash.memoize@4.1.2: {} lodash.uniq@4.5.0: {} + lodash@4.17.21: {} + log-symbols@6.0.0: dependencies: chalk: 5.3.0 @@ -7804,13 +7527,15 @@ snapshots: dependencies: yallist: 3.1.1 - lru-cache@6.0.0: + magic-string@0.30.11: dependencies: - yallist: 4.0.0 + "@jridgewell/sourcemap-codec": 1.5.0 - magic-string@0.30.10: + magicast@0.3.5: dependencies: - "@jridgewell/sourcemap-codec": 1.4.15 + "@babel/parser": 7.25.6 + "@babel/types": 7.25.6 + source-map-js: 1.2.0 markdown-extensions@2.0.0: {} @@ -7824,7 +7549,7 @@ snapshots: mdast-util-directive@3.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 "@types/unist": 3.0.2 devlop: 1.1.0 mdast-util-from-markdown: 2.0.0 @@ -7837,14 +7562,14 @@ snapshots: mdast-util-find-and-replace@3.0.1: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 escape-string-regexp: 5.0.0 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 mdast-util-from-markdown@2.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 "@types/unist": 3.0.2 decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -7861,7 +7586,7 @@ snapshots: mdast-util-gfm-autolink-literal@2.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 ccount: 2.0.1 devlop: 1.1.0 mdast-util-find-and-replace: 3.0.1 @@ -7869,7 +7594,7 @@ snapshots: mdast-util-gfm-footnote@2.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 @@ -7879,7 +7604,7 @@ snapshots: mdast-util-gfm-strikethrough@2.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 transitivePeerDependencies: @@ -7887,7 +7612,7 @@ snapshots: mdast-util-gfm-table@2.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 devlop: 1.1.0 markdown-table: 3.0.3 mdast-util-from-markdown: 2.0.0 @@ -7897,7 +7622,7 @@ snapshots: mdast-util-gfm-task-list-item@2.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 @@ -7919,8 +7644,8 @@ snapshots: mdast-util-mdx-expression@2.0.0: dependencies: "@types/estree-jsx": 1.0.3 - "@types/hast": 3.0.3 - "@types/mdast": 4.0.3 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 @@ -7930,8 +7655,8 @@ snapshots: mdast-util-mdx-jsx@3.0.0: dependencies: "@types/estree-jsx": 1.0.3 - "@types/hast": 3.0.3 - "@types/mdast": 4.0.3 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 "@types/unist": 3.0.2 ccount: 2.0.1 devlop: 1.1.0 @@ -7958,8 +7683,8 @@ snapshots: mdast-util-mdxjs-esm@2.0.1: dependencies: "@types/estree-jsx": 1.0.3 - "@types/hast": 3.0.3 - "@types/mdast": 4.0.3 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 devlop: 1.1.0 mdast-util-from-markdown: 2.0.0 mdast-util-to-markdown: 2.1.0 @@ -7968,13 +7693,13 @@ snapshots: mdast-util-phrasing@4.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 unist-util-is: 6.0.0 mdast-util-to-hast@13.0.2: dependencies: - "@types/hast": 3.0.3 - "@types/mdast": 4.0.3 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 "@ungap/structured-clone": 1.2.0 devlop: 1.1.0 micromark-util-sanitize-uri: 2.0.0 @@ -7984,7 +7709,7 @@ snapshots: mdast-util-to-markdown@2.1.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 "@types/unist": 3.0.2 longest-streak: 3.1.0 mdast-util-phrasing: 4.0.0 @@ -7995,14 +7720,12 @@ snapshots: mdast-util-to-string@4.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 mdn-data@2.0.28: {} mdn-data@2.0.30: {} - merge-stream@2.0.0: {} - merge2@1.4.1: {} micromark-core-commonmark@2.0.0: @@ -8134,8 +7857,8 @@ snapshots: micromark-extension-mdxjs@3.0.0: dependencies: - acorn: 8.11.3 - acorn-jsx: 5.3.2(acorn@8.11.3) + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) micromark-extension-mdx-expression: 3.0.0 micromark-extension-mdx-jsx: 3.0.0 micromark-extension-mdx-md: 2.0.0 @@ -8284,9 +8007,12 @@ snapshots: braces: 3.0.2 picomatch: 2.3.1 - mimic-fn@2.1.0: {} + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 - mimic-fn@4.0.0: {} + mimic-function@5.0.1: {} minimatch@3.1.2: dependencies: @@ -8296,6 +8022,8 @@ snapshots: ms@2.1.2: {} + ms@2.1.3: {} + muggle-string@0.4.1: {} mz@2.7.0: @@ -8306,15 +8034,13 @@ snapshots: nanoid@3.3.7: {} - nlcst-to-string@3.1.1: - dependencies: - "@types/nlcst": 1.0.4 + neotraverse@0.6.18: {} nlcst-to-string@4.0.0: dependencies: "@types/nlcst": 2.0.3 - node-releases@2.0.14: {} + node-releases@2.0.18: {} normalize-path@3.0.0: {} @@ -8322,10 +8048,6 @@ snapshots: not@0.1.0: {} - npm-run-path@5.1.0: - dependencies: - path-key: 4.0.0 - nth-check@2.1.1: dependencies: boolbase: 1.0.0 @@ -8338,46 +8060,38 @@ snapshots: dependencies: wrappy: 1.0.2 - onetime@5.1.2: + onetime@7.0.0: dependencies: - mimic-fn: 2.1.0 + mimic-function: 5.0.1 - onetime@6.0.0: + oniguruma-to-js@0.4.3: dependencies: - mimic-fn: 4.0.0 + regex: 4.3.2 - ora@8.0.1: + ora@8.1.0: dependencies: chalk: 5.3.0 - cli-cursor: 4.0.0 + cli-cursor: 5.0.0 cli-spinners: 2.9.2 is-interactive: 2.0.0 is-unicode-supported: 2.0.0 log-symbols: 6.0.0 stdin-discarder: 0.2.2 - string-width: 7.1.0 + string-width: 7.2.0 strip-ansi: 7.1.0 p-limit@2.3.0: dependencies: p-try: 2.2.0 - p-limit@3.1.0: + p-limit@6.1.0: dependencies: - yocto-queue: 0.1.0 - - p-limit@5.0.0: - dependencies: - yocto-queue: 1.0.0 + yocto-queue: 1.1.1 p-locate@4.1.0: dependencies: p-limit: 2.3.0 - p-locate@5.0.0: - dependencies: - p-limit: 3.1.0 - p-queue@8.0.1: dependencies: eventemitter3: 5.0.1 @@ -8406,12 +8120,6 @@ snapshots: is-decimal: 2.0.1 is-hexadecimal: 2.0.1 - parse-latin@5.0.1: - dependencies: - nlcst-to-string: 3.1.1 - unist-util-modify-children: 3.1.1 - unist-util-visit-children: 2.0.2 - parse-latin@7.0.0: dependencies: "@types/nlcst": 2.0.3 @@ -8419,7 +8127,7 @@ snapshots: nlcst-to-string: 4.0.0 unist-util-modify-children: 4.0.0 unist-util-visit-children: 3.0.0 - vfile: 6.0.1 + vfile: 6.0.3 parse5@7.1.2: dependencies: @@ -8431,14 +8139,8 @@ snapshots: path-is-absolute@1.0.1: {} - path-key@3.1.1: {} - - path-key@4.0.0: {} - path-parse@1.0.7: {} - path-to-regexp@6.2.2: {} - periscopic@3.1.0: dependencies: "@types/estree": 1.0.5 @@ -8447,6 +8149,8 @@ snapshots: picocolors@1.0.0: {} + picocolors@1.1.0: {} + picomatch@2.3.1: {} pify@2.3.0: {} @@ -8459,439 +8163,428 @@ snapshots: dependencies: find-up: 4.1.0 - postcss-attribute-case-insensitive@6.0.3(postcss@8.4.33): + postcss-attribute-case-insensitive@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - postcss-calc@10.0.0(postcss@8.4.33): + postcss-calc@10.0.2(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 + postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-clamp@4.1.0(postcss@8.4.33): + postcss-clamp@4.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@6.0.11(postcss@8.4.33): + postcss-color-functional-notation@7.0.2(postcss@8.4.38): dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - postcss-color-hex-alpha@9.0.4(postcss@8.4.33): + postcss-color-hex-alpha@10.0.0(postcss@8.4.38): dependencies: - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-color-rebeccapurple@9.0.3(postcss@8.4.33): + postcss-color-rebeccapurple@10.0.0(postcss@8.4.38): dependencies: - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-colormin@7.0.0(postcss@8.4.33): + postcss-colormin@7.0.2(postcss@8.4.38): dependencies: - browserslist: 4.23.0 + browserslist: 4.24.0 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-convert-values@7.0.0(postcss@8.4.33): + postcss-convert-values@7.0.4(postcss@8.4.38): dependencies: - browserslist: 4.23.0 - postcss: 8.4.33 + browserslist: 4.24.0 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-custom-media@10.0.6(postcss@8.4.33): + postcss-custom-media@11.0.1(postcss@8.4.38): dependencies: - "@csstools/cascade-layer-name-parser": 1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/media-query-list-parser": 2.1.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - postcss: 8.4.33 + "@csstools/cascade-layer-name-parser": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + postcss: 8.4.38 - postcss-custom-properties@13.3.10(postcss@8.4.33): + postcss-custom-properties@14.0.1(postcss@8.4.38): dependencies: - "@csstools/cascade-layer-name-parser": 1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/cascade-layer-name-parser": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-custom-selectors@7.1.10(postcss@8.4.33): + postcss-custom-selectors@8.0.1(postcss@8.4.38): dependencies: - "@csstools/cascade-layer-name-parser": 1.0.11(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + "@csstools/cascade-layer-name-parser": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - postcss-dir-pseudo-class@8.0.1(postcss@8.4.33): + postcss-dir-pseudo-class@9.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - postcss-discard-comments@7.0.0(postcss@8.4.33): + postcss-discard-comments@7.0.3(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 + postcss-selector-parser: 6.1.2 - postcss-discard-duplicates@7.0.0(postcss@8.4.33): + postcss-discard-duplicates@7.0.1(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-discard-empty@7.0.0(postcss@8.4.33): + postcss-discard-empty@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-discard-overridden@7.0.0(postcss@8.4.33): + postcss-discard-overridden@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-double-position-gradients@5.0.6(postcss@8.4.33): + postcss-double-position-gradients@6.0.0(postcss@8.4.38): dependencies: - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-focus-visible@9.0.1(postcss@8.4.33): + postcss-focus-visible@10.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - postcss-focus-within@8.0.1(postcss@8.4.33): + postcss-focus-within@9.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - postcss-font-variant@5.0.0(postcss@8.4.33): + postcss-font-variant@5.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-gap-properties@5.0.1(postcss@8.4.33): + postcss-gap-properties@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-image-set-function@6.0.3(postcss@8.4.33): + postcss-image-set-function@7.0.0(postcss@8.4.38): dependencies: - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-import@15.1.0(postcss@8.4.33): + postcss-import@15.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 - postcss-js@4.0.1(postcss@8.4.33): + postcss-js@4.0.1(postcss@8.4.38): dependencies: camelcase-css: 2.0.1 - postcss: 8.4.33 + postcss: 8.4.38 - postcss-lab-function@6.0.16(postcss@8.4.33): + postcss-lab-function@7.0.2(postcss@8.4.38): dependencies: - "@csstools/css-color-parser": 2.0.2(@csstools/css-parser-algorithms@2.6.3(@csstools/css-tokenizer@2.3.1))(@csstools/css-tokenizer@2.3.1) - "@csstools/css-parser-algorithms": 2.6.3(@csstools/css-tokenizer@2.3.1) - "@csstools/css-tokenizer": 2.3.1 - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/utilities": 1.0.0(postcss@8.4.33) - postcss: 8.4.33 + "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) + "@csstools/css-tokenizer": 3.0.1 + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/utilities": 2.0.0(postcss@8.4.38) + postcss: 8.4.38 - postcss-load-config@4.0.2(postcss@8.4.31): + postcss-load-config@4.0.2(postcss@8.4.38): dependencies: - lilconfig: 3.0.0 + lilconfig: 3.1.1 yaml: 2.3.4 optionalDependencies: - postcss: 8.4.31 + postcss: 8.4.38 - postcss-load-config@4.0.2(postcss@8.4.33): + postcss-load-config@4.0.2(postcss@8.4.47): dependencies: - lilconfig: 3.0.0 + lilconfig: 3.1.1 yaml: 2.3.4 optionalDependencies: - postcss: 8.4.33 + postcss: 8.4.47 - postcss-logical@7.0.1(postcss@8.4.33): + postcss-logical@8.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-merge-longhand@7.0.1(postcss@8.4.33): + postcss-merge-longhand@7.0.4(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - stylehacks: 7.0.1(postcss@8.4.33) + stylehacks: 7.0.4(postcss@8.4.38) - postcss-merge-rules@7.0.1(postcss@8.4.33): + postcss-merge-rules@7.0.4(postcss@8.4.38): dependencies: - browserslist: 4.23.0 + browserslist: 4.24.0 caniuse-api: 3.0.0 - cssnano-utils: 5.0.0(postcss@8.4.33) - postcss: 8.4.33 - postcss-selector-parser: 6.1.0 + cssnano-utils: 5.0.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-selector-parser: 6.1.2 - postcss-minify-font-values@7.0.0(postcss@8.4.33): + postcss-minify-font-values@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-minify-gradients@7.0.0(postcss@8.4.33): + postcss-minify-gradients@7.0.0(postcss@8.4.38): dependencies: colord: 2.9.3 - cssnano-utils: 5.0.0(postcss@8.4.33) - postcss: 8.4.33 + cssnano-utils: 5.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-minify-params@7.0.0(postcss@8.4.33): + postcss-minify-params@7.0.2(postcss@8.4.38): dependencies: - browserslist: 4.23.0 - cssnano-utils: 5.0.0(postcss@8.4.33) - postcss: 8.4.33 + browserslist: 4.24.0 + cssnano-utils: 5.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-minify-selectors@7.0.1(postcss@8.4.33): + postcss-minify-selectors@7.0.4(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.1.0 - - postcss-nested@6.0.1(postcss@8.4.33): - dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.13 + cssesc: 3.0.0 + postcss: 8.4.38 + postcss-selector-parser: 6.1.2 postcss-nested@6.0.1(postcss@8.4.38): dependencies: postcss: 8.4.38 - postcss-selector-parser: 6.0.13 - - postcss-nesting@12.1.5(postcss@8.4.33): - dependencies: - "@csstools/selector-resolve-nested": 1.1.0(postcss-selector-parser@6.1.0) - "@csstools/selector-specificity": 3.1.1(postcss-selector-parser@6.1.0) - postcss: 8.4.33 postcss-selector-parser: 6.1.0 - postcss-normalize-charset@7.0.0(postcss@8.4.33): + postcss-nesting@13.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + "@csstools/selector-resolve-nested": 2.0.0(postcss-selector-parser@6.1.0) + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.0) + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - postcss-normalize-display-values@7.0.0(postcss@8.4.33): + postcss-normalize-charset@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 + + postcss-normalize-display-values@7.0.0(postcss@8.4.38): + dependencies: + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-positions@7.0.0(postcss@8.4.33): + postcss-normalize-positions@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@7.0.0(postcss@8.4.33): + postcss-normalize-repeat-style@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-string@7.0.0(postcss@8.4.33): + postcss-normalize-string@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@7.0.0(postcss@8.4.33): + postcss-normalize-timing-functions@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@7.0.0(postcss@8.4.33): + postcss-normalize-unicode@7.0.2(postcss@8.4.38): dependencies: - browserslist: 4.23.0 - postcss: 8.4.33 + browserslist: 4.24.0 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-url@7.0.0(postcss@8.4.33): + postcss-normalize-url@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@7.0.0(postcss@8.4.33): + postcss-normalize-whitespace@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-opacity-percentage@2.0.0(postcss@8.4.33): + postcss-opacity-percentage@3.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-ordered-values@7.0.0(postcss@8.4.33): + postcss-ordered-values@7.0.1(postcss@8.4.38): dependencies: - cssnano-utils: 5.0.0(postcss@8.4.33) - postcss: 8.4.33 + cssnano-utils: 5.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-overflow-shorthand@5.0.1(postcss@8.4.33): + postcss-overflow-shorthand@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-page-break@3.0.4(postcss@8.4.33): + postcss-page-break@3.0.4(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-place@9.0.1(postcss@8.4.33): + postcss-place@10.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-preset-env@9.5.14(postcss@8.4.33): + postcss-preset-env@10.0.5(postcss@8.4.38): dependencies: - "@csstools/postcss-cascade-layers": 4.0.6(postcss@8.4.33) - "@csstools/postcss-color-function": 3.0.16(postcss@8.4.33) - "@csstools/postcss-color-mix-function": 2.0.16(postcss@8.4.33) - "@csstools/postcss-exponential-functions": 1.0.7(postcss@8.4.33) - "@csstools/postcss-font-format-keywords": 3.0.2(postcss@8.4.33) - "@csstools/postcss-gamut-mapping": 1.0.9(postcss@8.4.33) - "@csstools/postcss-gradients-interpolation-method": 4.0.17(postcss@8.4.33) - "@csstools/postcss-hwb-function": 3.0.15(postcss@8.4.33) - "@csstools/postcss-ic-unit": 3.0.6(postcss@8.4.33) - "@csstools/postcss-initial": 1.0.1(postcss@8.4.33) - "@csstools/postcss-is-pseudo-class": 4.0.8(postcss@8.4.33) - "@csstools/postcss-light-dark-function": 1.0.5(postcss@8.4.33) - "@csstools/postcss-logical-float-and-clear": 2.0.1(postcss@8.4.33) - "@csstools/postcss-logical-overflow": 1.0.1(postcss@8.4.33) - "@csstools/postcss-logical-overscroll-behavior": 1.0.1(postcss@8.4.33) - "@csstools/postcss-logical-resize": 2.0.1(postcss@8.4.33) - "@csstools/postcss-logical-viewport-units": 2.0.9(postcss@8.4.33) - "@csstools/postcss-media-minmax": 1.1.6(postcss@8.4.33) - "@csstools/postcss-media-queries-aspect-ratio-number-values": 2.0.9(postcss@8.4.33) - "@csstools/postcss-nested-calc": 3.0.2(postcss@8.4.33) - "@csstools/postcss-normalize-display-values": 3.0.2(postcss@8.4.33) - "@csstools/postcss-oklab-function": 3.0.16(postcss@8.4.33) - "@csstools/postcss-progressive-custom-properties": 3.2.0(postcss@8.4.33) - "@csstools/postcss-relative-color-syntax": 2.0.16(postcss@8.4.33) - "@csstools/postcss-scope-pseudo-class": 3.0.1(postcss@8.4.33) - "@csstools/postcss-stepped-value-functions": 3.0.8(postcss@8.4.33) - "@csstools/postcss-text-decoration-shorthand": 3.0.6(postcss@8.4.33) - "@csstools/postcss-trigonometric-functions": 3.0.8(postcss@8.4.33) - "@csstools/postcss-unset-value": 3.0.1(postcss@8.4.33) - autoprefixer: 10.4.19(postcss@8.4.33) - browserslist: 4.23.0 - css-blank-pseudo: 6.0.2(postcss@8.4.33) - css-has-pseudo: 6.0.5(postcss@8.4.33) - css-prefers-color-scheme: 9.0.1(postcss@8.4.33) - cssdb: 8.0.1 - postcss: 8.4.33 - postcss-attribute-case-insensitive: 6.0.3(postcss@8.4.33) - postcss-clamp: 4.1.0(postcss@8.4.33) - postcss-color-functional-notation: 6.0.11(postcss@8.4.33) - postcss-color-hex-alpha: 9.0.4(postcss@8.4.33) - postcss-color-rebeccapurple: 9.0.3(postcss@8.4.33) - postcss-custom-media: 10.0.6(postcss@8.4.33) - postcss-custom-properties: 13.3.10(postcss@8.4.33) - postcss-custom-selectors: 7.1.10(postcss@8.4.33) - postcss-dir-pseudo-class: 8.0.1(postcss@8.4.33) - postcss-double-position-gradients: 5.0.6(postcss@8.4.33) - postcss-focus-visible: 9.0.1(postcss@8.4.33) - postcss-focus-within: 8.0.1(postcss@8.4.33) - postcss-font-variant: 5.0.0(postcss@8.4.33) - postcss-gap-properties: 5.0.1(postcss@8.4.33) - postcss-image-set-function: 6.0.3(postcss@8.4.33) - postcss-lab-function: 6.0.16(postcss@8.4.33) - postcss-logical: 7.0.1(postcss@8.4.33) - postcss-nesting: 12.1.5(postcss@8.4.33) - postcss-opacity-percentage: 2.0.0(postcss@8.4.33) - postcss-overflow-shorthand: 5.0.1(postcss@8.4.33) - postcss-page-break: 3.0.4(postcss@8.4.33) - postcss-place: 9.0.1(postcss@8.4.33) - postcss-pseudo-class-any-link: 9.0.2(postcss@8.4.33) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.33) - postcss-selector-not: 7.0.2(postcss@8.4.33) + "@csstools/postcss-cascade-layers": 5.0.0(postcss@8.4.38) + "@csstools/postcss-color-function": 4.0.2(postcss@8.4.38) + "@csstools/postcss-color-mix-function": 3.0.2(postcss@8.4.38) + "@csstools/postcss-content-alt-text": 2.0.1(postcss@8.4.38) + "@csstools/postcss-exponential-functions": 2.0.1(postcss@8.4.38) + "@csstools/postcss-font-format-keywords": 4.0.0(postcss@8.4.38) + "@csstools/postcss-gamut-mapping": 2.0.2(postcss@8.4.38) + "@csstools/postcss-gradients-interpolation-method": 5.0.2(postcss@8.4.38) + "@csstools/postcss-hwb-function": 4.0.2(postcss@8.4.38) + "@csstools/postcss-ic-unit": 4.0.0(postcss@8.4.38) + "@csstools/postcss-initial": 2.0.0(postcss@8.4.38) + "@csstools/postcss-is-pseudo-class": 5.0.0(postcss@8.4.38) + "@csstools/postcss-light-dark-function": 2.0.4(postcss@8.4.38) + "@csstools/postcss-logical-float-and-clear": 3.0.0(postcss@8.4.38) + "@csstools/postcss-logical-overflow": 2.0.0(postcss@8.4.38) + "@csstools/postcss-logical-overscroll-behavior": 2.0.0(postcss@8.4.38) + "@csstools/postcss-logical-resize": 3.0.0(postcss@8.4.38) + "@csstools/postcss-logical-viewport-units": 3.0.1(postcss@8.4.38) + "@csstools/postcss-media-minmax": 2.0.1(postcss@8.4.38) + "@csstools/postcss-media-queries-aspect-ratio-number-values": 3.0.1(postcss@8.4.38) + "@csstools/postcss-nested-calc": 4.0.0(postcss@8.4.38) + "@csstools/postcss-normalize-display-values": 4.0.0(postcss@8.4.38) + "@csstools/postcss-oklab-function": 4.0.2(postcss@8.4.38) + "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.38) + "@csstools/postcss-relative-color-syntax": 3.0.2(postcss@8.4.38) + "@csstools/postcss-scope-pseudo-class": 4.0.0(postcss@8.4.38) + "@csstools/postcss-stepped-value-functions": 4.0.1(postcss@8.4.38) + "@csstools/postcss-text-decoration-shorthand": 4.0.1(postcss@8.4.38) + "@csstools/postcss-trigonometric-functions": 4.0.1(postcss@8.4.38) + "@csstools/postcss-unset-value": 4.0.0(postcss@8.4.38) + autoprefixer: 10.4.20(postcss@8.4.38) + browserslist: 4.24.0 + css-blank-pseudo: 7.0.0(postcss@8.4.38) + css-has-pseudo: 7.0.0(postcss@8.4.38) + css-prefers-color-scheme: 10.0.0(postcss@8.4.38) + cssdb: 8.1.1 + postcss: 8.4.38 + postcss-attribute-case-insensitive: 7.0.0(postcss@8.4.38) + postcss-clamp: 4.1.0(postcss@8.4.38) + postcss-color-functional-notation: 7.0.2(postcss@8.4.38) + postcss-color-hex-alpha: 10.0.0(postcss@8.4.38) + postcss-color-rebeccapurple: 10.0.0(postcss@8.4.38) + postcss-custom-media: 11.0.1(postcss@8.4.38) + postcss-custom-properties: 14.0.1(postcss@8.4.38) + postcss-custom-selectors: 8.0.1(postcss@8.4.38) + postcss-dir-pseudo-class: 9.0.0(postcss@8.4.38) + postcss-double-position-gradients: 6.0.0(postcss@8.4.38) + postcss-focus-visible: 10.0.0(postcss@8.4.38) + postcss-focus-within: 9.0.0(postcss@8.4.38) + postcss-font-variant: 5.0.0(postcss@8.4.38) + postcss-gap-properties: 6.0.0(postcss@8.4.38) + postcss-image-set-function: 7.0.0(postcss@8.4.38) + postcss-lab-function: 7.0.2(postcss@8.4.38) + postcss-logical: 8.0.0(postcss@8.4.38) + postcss-nesting: 13.0.0(postcss@8.4.38) + postcss-opacity-percentage: 3.0.0(postcss@8.4.38) + postcss-overflow-shorthand: 6.0.0(postcss@8.4.38) + postcss-page-break: 3.0.4(postcss@8.4.38) + postcss-place: 10.0.0(postcss@8.4.38) + postcss-pseudo-class-any-link: 10.0.0(postcss@8.4.38) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.38) + postcss-selector-not: 8.0.0(postcss@8.4.38) - postcss-pseudo-class-any-link@9.0.2(postcss@8.4.33): + postcss-pseudo-class-any-link@10.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 - postcss-reduce-initial@7.0.0(postcss@8.4.33): + postcss-reduce-initial@7.0.2(postcss@8.4.38): dependencies: - browserslist: 4.23.0 + browserslist: 4.24.0 caniuse-api: 3.0.0 - postcss: 8.4.33 + postcss: 8.4.38 - postcss-reduce-transforms@7.0.0(postcss@8.4.33): + postcss-reduce-transforms@7.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-replace-overflow-wrap@4.0.0(postcss@8.4.33): + postcss-replace-overflow-wrap@4.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 + postcss: 8.4.38 - postcss-selector-not@7.0.2(postcss@8.4.33): + postcss-selector-not@8.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.0.16 - - postcss-selector-parser@6.0.13: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-selector-parser@6.0.16: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 + postcss: 8.4.38 + postcss-selector-parser: 6.1.0 postcss-selector-parser@6.1.0: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-svgo@7.0.1(postcss@8.4.33): + postcss-selector-parser@6.1.2: dependencies: - postcss: 8.4.33 + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss-svgo@7.0.1(postcss@8.4.38): + dependencies: + postcss: 8.4.38 postcss-value-parser: 4.2.0 svgo: 3.3.2 - postcss-unique-selectors@7.0.1(postcss@8.4.33): + postcss-unique-selectors@7.0.3(postcss@8.4.38): dependencies: - postcss: 8.4.33 - postcss-selector-parser: 6.1.0 + postcss: 8.4.38 + postcss-selector-parser: 6.1.2 postcss-value-parser@4.2.0: {} - postcss@8.4.31: - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.0.2 - - postcss@8.4.33: - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.0.2 - postcss@8.4.38: dependencies: nanoid: 3.3.7 picocolors: 1.0.0 source-map-js: 1.2.0 - preferred-pm@3.1.3: + postcss@8.4.47: dependencies: - find-up: 5.0.0 + nanoid: 3.3.7 + picocolors: 1.1.0 + source-map-js: 1.2.1 + + preferred-pm@4.0.0: + dependencies: + find-up-simple: 1.0.0 find-yarn-workspace-root2: 1.2.16 - path-exists: 4.0.0 - which-pm: 2.0.0 + which-pm: 3.0.0 + + prettier@2.8.7: + optional: true prismjs@1.29.0: {} @@ -8912,13 +8605,17 @@ snapshots: dependencies: picomatch: 2.3.1 - rehype-expressive-code@0.35.3: + regenerator-runtime@0.14.1: {} + + regex@4.3.2: {} + + rehype-expressive-code@0.35.6: dependencies: - expressive-code: 0.35.3 + expressive-code: 0.35.6 rehype-format@5.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-embedded: 3.0.0 hast-util-is-element: 3.0.0 hast-util-phrasing: 3.0.1 @@ -8929,7 +8626,7 @@ snapshots: rehype-minify-whitespace@6.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-embedded: 3.0.0 hast-util-is-element: 3.0.0 hast-util-whitespace: 3.0.0 @@ -8937,46 +8634,46 @@ snapshots: rehype-parse@9.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-from-html: 2.0.1 - unified: 11.0.4 + unified: 11.0.5 rehype-raw@7.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-raw: 9.0.1 - vfile: 6.0.1 + vfile: 6.0.3 rehype-stringify@10.0.0: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 hast-util-to-html: 9.0.1 - unified: 11.0.4 + unified: 11.0.5 rehype@13.0.1: dependencies: - "@types/hast": 3.0.3 + "@types/hast": 3.0.4 rehype-parse: 9.0.0 rehype-stringify: 10.0.0 - unified: 11.0.4 + unified: 11.0.5 remark-directive@3.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 mdast-util-directive: 3.0.0 micromark-extension-directive: 3.0.0 - unified: 11.0.4 + unified: 11.0.5 transitivePeerDependencies: - supports-color remark-gfm@4.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 mdast-util-gfm: 3.0.0 micromark-extension-gfm: 3.0.0 remark-parse: 11.0.0 remark-stringify: 11.0.0 - unified: 11.0.4 + unified: 11.0.5 transitivePeerDependencies: - supports-color @@ -8992,7 +8689,7 @@ snapshots: "@types/mdast": 4.0.3 mdast-util-from-markdown: 2.0.0 micromark-util-types: 2.0.0 - unified: 11.0.4 + unified: 11.0.5 transitivePeerDependencies: - supports-color @@ -9001,62 +8698,46 @@ snapshots: "@types/hast": 3.0.3 "@types/mdast": 4.0.3 mdast-util-to-hast: 13.0.2 - unified: 11.0.4 - vfile: 6.0.1 + unified: 11.0.5 + vfile: 6.0.3 - remark-smartypants@2.0.0: - dependencies: - retext: 8.1.0 - retext-smartypants: 5.2.0 - unist-util-visit: 4.1.2 - - remark-smartypants@3.0.1: + remark-smartypants@3.0.2: dependencies: retext: 9.0.0 retext-smartypants: 6.1.0 - unified: 11.0.4 + unified: 11.0.5 unist-util-visit: 5.0.0 remark-stringify@11.0.0: dependencies: - "@types/mdast": 4.0.3 + "@types/mdast": 4.0.4 mdast-util-to-markdown: 2.1.0 - unified: 11.0.4 + unified: 11.0.5 + + request-light@0.5.8: {} request-light@0.7.0: {} require-directory@2.1.1: {} + require-from-string@2.0.2: {} + resolve@1.22.8: dependencies: is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - restore-cursor@4.0.0: + restore-cursor@5.1.0: dependencies: - onetime: 5.1.2 - signal-exit: 3.0.7 - - retext-latin@3.1.0: - dependencies: - "@types/nlcst": 1.0.4 - parse-latin: 5.0.1 - unherit: 3.0.1 - unified: 10.1.2 + onetime: 7.0.0 + signal-exit: 4.1.0 retext-latin@4.0.0: dependencies: "@types/nlcst": 2.0.3 parse-latin: 7.0.0 - unified: 11.0.4 - - retext-smartypants@5.2.0: - dependencies: - "@types/nlcst": 1.0.4 - nlcst-to-string: 3.1.1 - unified: 10.1.2 - unist-util-visit: 4.1.2 + unified: 11.0.5 retext-smartypants@6.1.0: dependencies: @@ -9064,54 +8745,41 @@ snapshots: nlcst-to-string: 4.0.0 unist-util-visit: 5.0.0 - retext-stringify@3.1.0: - dependencies: - "@types/nlcst": 1.0.4 - nlcst-to-string: 3.1.1 - unified: 10.1.2 - retext-stringify@4.0.0: dependencies: "@types/nlcst": 2.0.3 nlcst-to-string: 4.0.0 - unified: 11.0.4 - - retext@8.1.0: - dependencies: - "@types/nlcst": 1.0.4 - retext-latin: 3.1.0 - retext-stringify: 3.1.0 - unified: 10.1.2 + unified: 11.0.5 retext@9.0.0: dependencies: "@types/nlcst": 2.0.3 retext-latin: 4.0.0 retext-stringify: 4.0.0 - unified: 11.0.4 + unified: 11.0.5 reusify@1.0.4: {} - rollup@4.17.2: + rollup@4.22.5: dependencies: - "@types/estree": 1.0.5 + "@types/estree": 1.0.6 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.17.2 - "@rollup/rollup-android-arm64": 4.17.2 - "@rollup/rollup-darwin-arm64": 4.17.2 - "@rollup/rollup-darwin-x64": 4.17.2 - "@rollup/rollup-linux-arm-gnueabihf": 4.17.2 - "@rollup/rollup-linux-arm-musleabihf": 4.17.2 - "@rollup/rollup-linux-arm64-gnu": 4.17.2 - "@rollup/rollup-linux-arm64-musl": 4.17.2 - "@rollup/rollup-linux-powerpc64le-gnu": 4.17.2 - "@rollup/rollup-linux-riscv64-gnu": 4.17.2 - "@rollup/rollup-linux-s390x-gnu": 4.17.2 - "@rollup/rollup-linux-x64-gnu": 4.17.2 - "@rollup/rollup-linux-x64-musl": 4.17.2 - "@rollup/rollup-win32-arm64-msvc": 4.17.2 - "@rollup/rollup-win32-ia32-msvc": 4.17.2 - "@rollup/rollup-win32-x64-msvc": 4.17.2 + "@rollup/rollup-android-arm-eabi": 4.22.5 + "@rollup/rollup-android-arm64": 4.22.5 + "@rollup/rollup-darwin-arm64": 4.22.5 + "@rollup/rollup-darwin-x64": 4.22.5 + "@rollup/rollup-linux-arm-gnueabihf": 4.22.5 + "@rollup/rollup-linux-arm-musleabihf": 4.22.5 + "@rollup/rollup-linux-arm64-gnu": 4.22.5 + "@rollup/rollup-linux-arm64-musl": 4.22.5 + "@rollup/rollup-linux-powerpc64le-gnu": 4.22.5 + "@rollup/rollup-linux-riscv64-gnu": 4.22.5 + "@rollup/rollup-linux-s390x-gnu": 4.22.5 + "@rollup/rollup-linux-x64-gnu": 4.22.5 + "@rollup/rollup-linux-x64-musl": 4.22.5 + "@rollup/rollup-win32-arm64-msvc": 4.22.5 + "@rollup/rollup-win32-ia32-msvc": 4.22.5 + "@rollup/rollup-win32-x64-msvc": 4.22.5 fsevents: 2.3.3 run-parallel@1.2.0: @@ -9127,54 +8795,49 @@ snapshots: semver@6.3.1: {} - semver@7.5.4: - dependencies: - lru-cache: 6.0.0 - semver@7.6.2: {} - sharp@0.33.4: + semver@7.6.3: {} + + sharp@0.33.5: dependencies: color: 4.2.3 detect-libc: 2.0.3 - semver: 7.6.2 + semver: 7.6.3 optionalDependencies: - "@img/sharp-darwin-arm64": 0.33.4 - "@img/sharp-darwin-x64": 0.33.4 - "@img/sharp-libvips-darwin-arm64": 1.0.2 - "@img/sharp-libvips-darwin-x64": 1.0.2 - "@img/sharp-libvips-linux-arm": 1.0.2 - "@img/sharp-libvips-linux-arm64": 1.0.2 - "@img/sharp-libvips-linux-s390x": 1.0.2 - "@img/sharp-libvips-linux-x64": 1.0.2 - "@img/sharp-libvips-linuxmusl-arm64": 1.0.2 - "@img/sharp-libvips-linuxmusl-x64": 1.0.2 - "@img/sharp-linux-arm": 0.33.4 - "@img/sharp-linux-arm64": 0.33.4 - "@img/sharp-linux-s390x": 0.33.4 - "@img/sharp-linux-x64": 0.33.4 - "@img/sharp-linuxmusl-arm64": 0.33.4 - "@img/sharp-linuxmusl-x64": 0.33.4 - "@img/sharp-wasm32": 0.33.4 - "@img/sharp-win32-ia32": 0.33.4 - "@img/sharp-win32-x64": 0.33.4 + "@img/sharp-darwin-arm64": 0.33.5 + "@img/sharp-darwin-x64": 0.33.5 + "@img/sharp-libvips-darwin-arm64": 1.0.4 + "@img/sharp-libvips-darwin-x64": 1.0.4 + "@img/sharp-libvips-linux-arm": 1.0.5 + "@img/sharp-libvips-linux-arm64": 1.0.4 + "@img/sharp-libvips-linux-s390x": 1.0.4 + "@img/sharp-libvips-linux-x64": 1.0.4 + "@img/sharp-libvips-linuxmusl-arm64": 1.0.4 + "@img/sharp-libvips-linuxmusl-x64": 1.0.4 + "@img/sharp-linux-arm": 0.33.5 + "@img/sharp-linux-arm64": 0.33.5 + "@img/sharp-linux-s390x": 0.33.5 + "@img/sharp-linux-x64": 0.33.5 + "@img/sharp-linuxmusl-arm64": 0.33.5 + "@img/sharp-linuxmusl-x64": 0.33.5 + "@img/sharp-wasm32": 0.33.5 + "@img/sharp-win32-ia32": 0.33.5 + "@img/sharp-win32-x64": 0.33.5 - shebang-command@2.0.0: + shiki@1.20.0: dependencies: - shebang-regex: 3.0.0 - - shebang-regex@3.0.0: {} - - shiki@1.5.2: - dependencies: - "@shikijs/core": 1.5.2 + "@shikijs/core": 1.20.0 + "@shikijs/engine-javascript": 1.20.0 + "@shikijs/engine-oniguruma": 1.20.0 + "@shikijs/types": 1.20.0 + "@shikijs/vscode-textmate": 9.2.2 + "@types/hast": 3.0.4 shiki@1.6.3: dependencies: "@shikijs/core": 1.6.3 - signal-exit@3.0.7: {} - signal-exit@4.1.0: {} simple-swizzle@0.2.2: @@ -9183,17 +8846,17 @@ snapshots: sisteransi@1.0.5: {} - sitemap@7.1.1: + sitemap@7.1.2: dependencies: "@types/node": 17.0.45 "@types/sax": 1.2.7 arg: 5.0.2 sax: 1.3.0 - source-map-js@1.0.2: {} - source-map-js@1.2.0: {} + source-map-js@1.2.1: {} + source-map@0.7.4: {} space-separated-tokens@2.0.2: {} @@ -9202,6 +8865,8 @@ snapshots: stdin-discarder@0.2.2: {} + stream-replace-string@2.0.0: {} + string-width@4.2.3: dependencies: emoji-regex: 8.0.0 @@ -9214,7 +8879,7 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string-width@7.1.0: + string-width@7.2.0: dependencies: emoji-regex: 10.3.0 get-east-asian-width: 1.2.0 @@ -9237,8 +8902,6 @@ snapshots: strip-bom@3.0.0: {} - strip-final-newline@3.0.0: {} - style-to-object@0.4.4: dependencies: inline-style-parser: 0.1.1 @@ -9247,15 +8910,15 @@ snapshots: dependencies: inline-style-parser: 0.2.2 - stylehacks@7.0.1(postcss@8.4.33): + stylehacks@7.0.4(postcss@8.4.38): dependencies: - browserslist: 4.23.0 - postcss: 8.4.33 - postcss-selector-parser: 6.1.0 + browserslist: 4.24.0 + postcss: 8.4.38 + postcss-selector-parser: 6.1.2 sucrase@3.34.0: dependencies: - "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/gen-mapping": 0.3.5 commander: 4.1.1 glob: 7.1.6 lines-and-columns: 1.2.4 @@ -9279,11 +8942,11 @@ snapshots: csso: 5.0.5 picocolors: 1.0.0 - tailwindcss@3.4.3: + tailwindcss@3.4.13: dependencies: "@alloc/quick-lru": 5.2.0 arg: 5.0.2 - chokidar: 3.5.3 + chokidar: 3.6.0 didyoumean: 1.2.2 dlv: 1.1.3 fast-glob: 3.3.2 @@ -9295,12 +8958,12 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.33 - postcss-import: 15.1.0(postcss@8.4.33) - postcss-js: 4.0.1(postcss@8.4.33) - postcss-load-config: 4.0.2(postcss@8.4.33) - postcss-nested: 6.0.1(postcss@8.4.33) - postcss-selector-parser: 6.0.13 + postcss: 8.4.38 + postcss-import: 15.1.0(postcss@8.4.38) + postcss-js: 4.0.1(postcss@8.4.38) + postcss-load-config: 4.0.2(postcss@8.4.38) + postcss-nested: 6.0.1(postcss@8.4.38) + postcss-selector-parser: 6.1.0 resolve: 1.22.8 sucrase: 3.34.0 transitivePeerDependencies: @@ -9314,6 +8977,8 @@ snapshots: dependencies: any-promise: 1.3.0 + tinyexec@0.3.0: {} + to-fast-properties@2.0.0: {} to-regex-range@5.0.1: @@ -9326,9 +8991,9 @@ snapshots: ts-interface-checker@0.1.13: {} - tsconfck@3.1.0(typescript@5.4.5): + tsconfck@3.1.3(typescript@5.6.2): optionalDependencies: - typescript: 5.4.5 + typescript: 5.6.2 tslib@2.6.2: optional: true @@ -9337,25 +9002,13 @@ snapshots: typesafe-path@0.2.2: {} - typescript-auto-import-cache@0.3.2: + typescript-auto-import-cache@0.3.3: dependencies: - semver: 7.5.4 + semver: 7.6.2 - typescript@5.4.5: {} + typescript@5.6.2: {} - unherit@3.0.1: {} - - unified@10.1.2: - dependencies: - "@types/unist": 2.0.10 - bail: 2.0.2 - extend: 3.0.2 - is-buffer: 2.0.5 - is-plain-obj: 4.1.0 - trough: 2.1.0 - vfile: 5.3.7 - - unified@11.0.4: + unified@11.0.5: dependencies: "@types/unist": 3.0.2 bail: 2.0.2 @@ -9363,26 +9016,17 @@ snapshots: extend: 3.0.2 is-plain-obj: 4.1.0 trough: 2.1.0 - vfile: 6.0.1 + vfile: 6.0.3 unist-util-find-after@5.0.0: dependencies: "@types/unist": 3.0.2 unist-util-is: 6.0.0 - unist-util-is@5.2.1: - dependencies: - "@types/unist": 2.0.10 - unist-util-is@6.0.0: dependencies: "@types/unist": 3.0.2 - unist-util-modify-children@3.1.1: - dependencies: - "@types/unist": 2.0.10 - array-iterate: 2.0.1 - unist-util-modify-children@4.0.0: dependencies: "@types/unist": 3.0.2 @@ -9401,140 +9045,119 @@ snapshots: "@types/unist": 3.0.2 unist-util-visit: 5.0.0 - unist-util-stringify-position@3.0.3: - dependencies: - "@types/unist": 2.0.10 - unist-util-stringify-position@4.0.0: dependencies: "@types/unist": 3.0.2 - unist-util-visit-children@2.0.2: - dependencies: - "@types/unist": 2.0.10 - unist-util-visit-children@3.0.0: dependencies: "@types/unist": 3.0.2 - unist-util-visit-parents@5.1.3: - dependencies: - "@types/unist": 2.0.10 - unist-util-is: 5.2.1 - unist-util-visit-parents@6.0.1: dependencies: "@types/unist": 3.0.2 unist-util-is: 6.0.0 - unist-util-visit@4.1.2: - dependencies: - "@types/unist": 2.0.10 - unist-util-is: 5.2.1 - unist-util-visit-parents: 5.1.3 - unist-util-visit@5.0.0: dependencies: "@types/unist": 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 - update-browserslist-db@1.0.13(browserslist@4.23.0): + update-browserslist-db@1.1.1(browserslist@4.24.0): dependencies: - browserslist: 4.23.0 - escalade: 3.1.1 - picocolors: 1.0.0 + browserslist: 4.24.0 + escalade: 3.2.0 + picocolors: 1.1.0 util-deprecate@1.0.2: {} vfile-location@5.0.2: dependencies: "@types/unist": 3.0.2 - vfile: 6.0.1 - - vfile-message@3.1.4: - dependencies: - "@types/unist": 2.0.10 - unist-util-stringify-position: 3.0.3 + vfile: 6.0.3 vfile-message@4.0.2: dependencies: "@types/unist": 3.0.2 unist-util-stringify-position: 4.0.0 - vfile@5.3.7: - dependencies: - "@types/unist": 2.0.10 - is-buffer: 2.0.5 - unist-util-stringify-position: 3.0.3 - vfile-message: 3.1.4 - - vfile@6.0.1: + vfile@6.0.3: dependencies: "@types/unist": 3.0.2 - unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 - vite@5.2.13: + vite@5.4.8: dependencies: - esbuild: 0.20.2 - postcss: 8.4.38 - rollup: 4.17.2 + esbuild: 0.21.5 + postcss: 8.4.47 + rollup: 4.22.5 optionalDependencies: fsevents: 2.3.3 - vitefu@0.2.5(vite@5.2.13): + vitefu@1.0.2(vite@5.4.8): optionalDependencies: - vite: 5.2.13 + vite: 5.4.8 - volar-service-css@0.0.45(@volar/language-service@2.2.4): + volar-service-css@0.0.61(@volar/language-service@2.4.5): dependencies: - vscode-css-languageservice: 6.2.10 + vscode-css-languageservice: 6.3.1 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 optionalDependencies: - "@volar/language-service": 2.2.4 + "@volar/language-service": 2.4.5 - volar-service-emmet@0.0.45(@volar/language-service@2.2.4): + volar-service-emmet@0.0.61(@volar/language-service@2.4.5): dependencies: "@emmetio/css-parser": 0.4.0 "@emmetio/html-matcher": 1.3.0 - "@vscode/emmet-helper": 2.9.2 + "@vscode/emmet-helper": 2.9.3 + vscode-uri: 3.0.8 optionalDependencies: - "@volar/language-service": 2.2.4 + "@volar/language-service": 2.4.5 - volar-service-html@0.0.45(@volar/language-service@2.2.4): + volar-service-html@0.0.61(@volar/language-service@2.4.5): dependencies: - vscode-html-languageservice: "@johnsoncodehk/vscode-html-languageservice@5.2.0-34a5462" + vscode-html-languageservice: 5.3.1 vscode-languageserver-textdocument: 1.0.11 vscode-uri: 3.0.8 optionalDependencies: - "@volar/language-service": 2.2.4 + "@volar/language-service": 2.4.5 - volar-service-prettier@0.0.45(@volar/language-service@2.2.4): + volar-service-prettier@0.0.61(@volar/language-service@2.4.5): dependencies: vscode-uri: 3.0.8 optionalDependencies: - "@volar/language-service": 2.2.4 + "@volar/language-service": 2.4.5 - volar-service-typescript-twoslash-queries@0.0.45(@volar/language-service@2.2.4): + volar-service-typescript-twoslash-queries@0.0.61(@volar/language-service@2.4.5): + dependencies: + vscode-uri: 3.0.8 optionalDependencies: - "@volar/language-service": 2.2.4 + "@volar/language-service": 2.4.5 - volar-service-typescript@0.0.45(@volar/language-service@2.2.4): + volar-service-typescript@0.0.61(@volar/language-service@2.4.5): dependencies: path-browserify: 1.0.1 - semver: 7.5.4 - typescript-auto-import-cache: 0.3.2 + semver: 7.6.2 + typescript-auto-import-cache: 0.3.3 vscode-languageserver-textdocument: 1.0.11 vscode-nls: 5.2.0 + vscode-uri: 3.0.8 optionalDependencies: - "@volar/language-service": 2.2.4 + "@volar/language-service": 2.4.5 - vscode-css-languageservice@6.2.10: + volar-service-yaml@0.0.61(@volar/language-service@2.4.5): dependencies: - "@vscode/l10n": 0.0.16 - vscode-languageserver-textdocument: 1.0.11 + vscode-uri: 3.0.8 + yaml-language-server: 1.15.0 + optionalDependencies: + "@volar/language-service": 2.4.5 + + vscode-css-languageservice@6.3.1: + dependencies: + "@vscode/l10n": 0.0.18 + vscode-languageserver-textdocument: 1.0.12 vscode-languageserver-types: 3.17.5 vscode-uri: 3.0.8 @@ -9545,8 +9168,30 @@ snapshots: vscode-languageserver-types: 3.17.5 vscode-uri: 3.0.8 + vscode-html-languageservice@5.3.1: + dependencies: + "@vscode/l10n": 0.0.18 + vscode-languageserver-textdocument: 1.0.12 + vscode-languageserver-types: 3.17.5 + vscode-uri: 3.0.8 + + vscode-json-languageservice@4.1.8: + dependencies: + jsonc-parser: 3.3.1 + vscode-languageserver-textdocument: 1.0.11 + vscode-languageserver-types: 3.17.5 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 + + vscode-jsonrpc@6.0.0: {} + vscode-jsonrpc@8.2.0: {} + vscode-languageserver-protocol@3.16.0: + dependencies: + vscode-jsonrpc: 6.0.0 + vscode-languageserver-types: 3.16.0 + vscode-languageserver-protocol@3.17.5: dependencies: vscode-jsonrpc: 8.2.0 @@ -9554,8 +9199,16 @@ snapshots: vscode-languageserver-textdocument@1.0.11: {} + vscode-languageserver-textdocument@1.0.12: {} + + vscode-languageserver-types@3.16.0: {} + vscode-languageserver-types@3.17.5: {} + vscode-languageserver@7.0.0: + dependencies: + vscode-languageserver-protocol: 3.16.0 + vscode-languageserver@9.0.1: dependencies: vscode-languageserver-protocol: 3.17.5 @@ -9570,19 +9223,9 @@ snapshots: which-pm-runs@1.1.0: {} - which-pm@2.0.0: + which-pm@3.0.0: dependencies: load-yaml-file: 0.2.0 - path-exists: 4.0.0 - - which-pm@2.2.0: - dependencies: - load-yaml-file: 0.2.0 - path-exists: 4.0.0 - - which@2.0.2: - dependencies: - isexe: 2.0.0 widest-line@4.0.1: dependencies: @@ -9602,14 +9245,33 @@ snapshots: wrappy@1.0.2: {} + xxhash-wasm@1.0.2: {} + y18n@5.0.8: {} yallist@3.1.1: {} - yallist@4.0.0: {} + yaml-language-server@1.15.0: + dependencies: + ajv: 8.17.1 + lodash: 4.17.21 + request-light: 0.5.8 + vscode-json-languageservice: 4.1.8 + vscode-languageserver: 7.0.0 + vscode-languageserver-textdocument: 1.0.11 + vscode-languageserver-types: 3.17.5 + vscode-nls: 5.2.0 + vscode-uri: 3.0.8 + yaml: 2.2.2 + optionalDependencies: + prettier: 2.8.7 + + yaml@2.2.2: {} yaml@2.3.4: {} + yaml@2.5.1: {} + yargs-parser@21.1.1: {} yargs@17.7.2: @@ -9622,14 +9284,17 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 - yocto-queue@0.1.0: {} + yocto-queue@1.1.1: {} - yocto-queue@1.0.0: {} - - zod-to-json-schema@3.23.0(zod@3.23.8): + zod-to-json-schema@3.23.3(zod@3.23.8): dependencies: zod: 3.23.8 + zod-to-ts@1.2.0(typescript@5.6.2)(zod@3.23.8): + dependencies: + typescript: 5.6.2 + zod: 3.23.8 + zod@3.23.8: {} zwitch@2.0.4: {} diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 00000000..c9d330e6 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,23 @@ +import globals from "globals"; +import eslint from "@eslint/js"; +import tseslint from "typescript-eslint"; +import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"; + +export default [ + ...tseslint.config( + eslint.configs.recommended, + ...tseslint.configs.strict, + eslintPluginPrettierRecommended + ), + { + ignores: ["public/*", "docs/*", "vendor/*", "castopod/*"], + }, + { + languageOptions: { + globals: { + ...globals.browser, + ...globals.node, + }, + }, + }, +]; diff --git a/modules/Auth/Controllers/ContributorController.php b/modules/Auth/Controllers/ContributorController.php index da5989df..4326a750 100644 --- a/modules/Auth/Controllers/ContributorController.php +++ b/modules/Auth/Controllers/ContributorController.php @@ -84,7 +84,10 @@ class ContributorController extends BaseController $contributorOptions = array_reduce( $users, static function (array $result, $user): array { - $result[$user->id] = $user->username; + $result[] = [ + 'value' => $user->id, + 'label' => $user->username, + ]; return $result; }, [], @@ -95,7 +98,10 @@ class ContributorController extends BaseController array_walk( $roles, static function (string $role, $key) use (&$roleOptions): array { - $roleOptions[$role] = lang('Auth.podcast_groups.' . $role . '.title'); + $roleOptions[] = [ + 'value' => $role, + 'label' => lang('Auth.podcast_groups.' . $role . '.title'), + ]; return $roleOptions; }, [], @@ -139,7 +145,10 @@ class ContributorController extends BaseController array_walk( $roles, static function (string $role) use (&$roleOptions): array { - $roleOptions[$role] = lang('Auth.podcast_groups.' . $role . '.title'); + $roleOptions[] = [ + 'value' => $role, + 'label' => lang('Auth.podcast_groups.' . $role . '.title'), + ]; return $roleOptions; }, [], diff --git a/modules/Plugins/Manifest/Option.php b/modules/Plugins/Manifest/Option.php index ff14f918..02408442 100644 --- a/modules/Plugins/Manifest/Option.php +++ b/modules/Plugins/Manifest/Option.php @@ -13,7 +13,7 @@ class Option extends ManifestObject { protected const VALIDATION_RULES = [ 'label' => 'required|string', - 'value' => 'required|alpha_dash', + 'value' => 'required|alpha_numeric_punct', 'hint' => 'permit_empty|string', ]; diff --git a/package.json b/package.json index c42c40ad..2b3534b8 100644 --- a/package.json +++ b/package.json @@ -16,8 +16,8 @@ "build:static": "pnpm run build:icons && pnpm run build:svg", "build:icons": "svgo -f app/Resources/icons -o app/Resources/icons -r --config=./.svgo.icons.cjs", "build:svg": "svgo -f app/Resources/images -o public/assets/images -r --config=./.svgo.cjs", - "lint": "eslint --ext js,ts app/Resources", - "lint:fix": "eslint --ext js,ts app/Resources --fix", + "lint": "eslint", + "lint:fix": "eslint --fix", "lint:css": "stylelint -f verbose \"app/Resources/**/*.css\"", "lint:css:fix": "stylelint -f verbose --fix \"app/Resources/**/*.css\"", "prettier": "prettier --check .", @@ -30,67 +30,70 @@ "dependencies": { "@amcharts/amcharts4": "^4.10.39", "@amcharts/amcharts4-geodata": "^4.1.30", - "@codemirror/commands": "^6.6.2", + "@codemirror/commands": "^6.7.0", "@codemirror/lang-xml": "^6.1.0", "@codemirror/language": "^6.10.3", "@codemirror/state": "^6.4.1", - "@codemirror/view": "^6.33.0", + "@codemirror/view": "^6.34.1", "@floating-ui/dom": "^1.6.11", "@github/clipboard-copy-element": "^1.3.0", "@github/hotkey": "^3.1.1", "@github/markdown-toolbar-element": "^2.2.3", "@github/relative-time-element": "^4.4.3", - "@patternfly/elements": "^4.0.1", + "@patternfly/elements": "^4.0.2", "@tailwindcss/nesting": "0.0.0-insiders.565cd3e", "@vime/core": "^5.4.1", - "choices.js": "^10.2.0", + "choices.js": "^11.0.2", "codemirror": "^6.0.1", "flatpickr": "^4.6.13", "leaflet": "^1.9.4", "leaflet.markercluster": "^1.5.3", - "lit": "^3.2.0", - "marked": "^13.0.3", + "lit": "^3.2.1", + "marked": "^14.1.3", "wavesurfer.js": "^7.8.6", "xml-formatter": "^3.6.3" }, "devDependencies": { "@commitlint/cli": "^19.5.0", "@commitlint/config-conventional": "^19.5.0", - "@csstools/css-tokenizer": "^3.0.1", + "@csstools/css-tokenizer": "^3.0.2", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "^9.12.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/exec": "^6.0.3", "@semantic-release/git": "^10.0.1", "@semantic-release/gitlab": "^13.2.1", "@tailwindcss/forms": "^0.5.9", "@tailwindcss/typography": "^0.5.15", + "@types/eslint__js": "^8.42.3", "@types/leaflet": "^1.9.12", - "@typescript-eslint/eslint-plugin": "^8.7.0", - "@typescript-eslint/parser": "^8.7.0", "all-contributors-cli": "^6.26.1", - "commitizen": "^4.3.0", + "commitizen": "^4.3.1", "cross-env": "^7.0.3", "cssnano": "^7.0.6", "cz-conventional-changelog": "^3.3.0", - "eslint": "^8.57.1", + "eslint": "^9.12.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", + "globals": "^15.11.0", "husky": "^9.1.6", "is-ci": "^3.0.1", "lint-staged": "^15.2.10", "postcss": "^8.4.47", "postcss-import": "^16.1.0", "postcss-nesting": "^13.0.0", - "postcss-preset-env": "^10.0.5", + "postcss-preset-env": "^10.0.7", "postcss-reporter": "^7.1.0", "prettier": "3.3.3", "prettier-plugin-organize-imports": "^4.1.0", - "semantic-release": "^24.1.1", - "stylelint": "^16.9.0", + "semantic-release": "^24.1.2", + "stylelint": "^16.10.0", "stylelint-config-standard": "^36.0.1", "svgo": "^3.3.2", - "tailwindcss": "^3.4.13", + "tailwindcss": "^3.4.14", "typescript": "~5.5.4", - "vite": "^5.4.7", + "typescript-eslint": "^8.9.0", + "vite": "^5.4.9", "vite-plugin-pwa": "^0.20.5", "workbox-build": "^7.1.1", "workbox-core": "^7.1.0", @@ -99,7 +102,7 @@ }, "lint-staged": { "*.{js,ts,css,md,json}": "prettier --write", - "*.{ts,js}": "eslint --ext js,ts,tsx app/Resources --fix", + "*.{ts,js}": "eslint --fix", "*.css": "stylelint --fix" }, "config": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 25a7d106..4dd618ee 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,8 +14,8 @@ importers: specifier: ^4.1.30 version: 4.1.30 "@codemirror/commands": - specifier: ^6.6.2 - version: 6.6.2 + specifier: ^6.7.0 + version: 6.7.0 "@codemirror/lang-xml": specifier: ^6.1.0 version: 6.1.0 @@ -26,8 +26,8 @@ importers: specifier: ^6.4.1 version: 6.4.1 "@codemirror/view": - specifier: ^6.33.0 - version: 6.33.0 + specifier: ^6.34.1 + version: 6.34.1 "@floating-ui/dom": specifier: ^1.6.11 version: 1.6.11 @@ -44,8 +44,8 @@ importers: specifier: ^4.4.3 version: 4.4.3 "@patternfly/elements": - specifier: ^4.0.1 - version: 4.0.1 + specifier: ^4.0.2 + version: 4.0.2 "@tailwindcss/nesting": specifier: 0.0.0-insiders.565cd3e version: 0.0.0-insiders.565cd3e(postcss@8.4.47) @@ -53,11 +53,11 @@ importers: specifier: ^5.4.1 version: 5.4.1 choices.js: - specifier: ^10.2.0 - version: 10.2.0 + specifier: ^11.0.2 + version: 11.0.2 codemirror: specifier: ^6.0.1 - version: 6.0.1(@lezer/common@1.2.0) + version: 6.0.1(@lezer/common@1.2.1) flatpickr: specifier: ^4.6.13 version: 4.6.13 @@ -68,11 +68,11 @@ importers: specifier: ^1.5.3 version: 1.5.3(leaflet@1.9.4) lit: - specifier: ^3.2.0 - version: 3.2.0 + specifier: ^3.2.1 + version: 3.2.1 marked: - specifier: ^13.0.3 - version: 13.0.3 + specifier: ^14.1.3 + version: 14.1.3 wavesurfer.js: specifier: ^7.8.6 version: 7.8.6 @@ -82,46 +82,49 @@ importers: devDependencies: "@commitlint/cli": specifier: ^19.5.0 - version: 19.5.0(@types/node@20.10.5)(typescript@5.5.4) + version: 19.5.0(@types/node@22.7.3)(typescript@5.5.4) "@commitlint/config-conventional": specifier: ^19.5.0 version: 19.5.0 "@csstools/css-tokenizer": - specifier: ^3.0.1 - version: 3.0.1 + specifier: ^3.0.2 + version: 3.0.2 + "@eslint/eslintrc": + specifier: ^3.1.0 + version: 3.1.0 + "@eslint/js": + specifier: ^9.12.0 + version: 9.12.0 "@semantic-release/changelog": specifier: ^6.0.3 - version: 6.0.3(semantic-release@24.1.1(typescript@5.5.4)) + version: 6.0.3(semantic-release@24.1.2(typescript@5.5.4)) "@semantic-release/exec": specifier: ^6.0.3 - version: 6.0.3(semantic-release@24.1.1(typescript@5.5.4)) + version: 6.0.3(semantic-release@24.1.2(typescript@5.5.4)) "@semantic-release/git": specifier: ^10.0.1 - version: 10.0.1(semantic-release@24.1.1(typescript@5.5.4)) + version: 10.0.1(semantic-release@24.1.2(typescript@5.5.4)) "@semantic-release/gitlab": specifier: ^13.2.1 - version: 13.2.1(semantic-release@24.1.1(typescript@5.5.4)) + version: 13.2.1(semantic-release@24.1.2(typescript@5.5.4)) "@tailwindcss/forms": specifier: ^0.5.9 - version: 0.5.9(tailwindcss@3.4.13) + version: 0.5.9(tailwindcss@3.4.14) "@tailwindcss/typography": specifier: ^0.5.15 - version: 0.5.15(tailwindcss@3.4.13) + version: 0.5.15(tailwindcss@3.4.14) + "@types/eslint__js": + specifier: ^8.42.3 + version: 8.42.3 "@types/leaflet": specifier: ^1.9.12 version: 1.9.12 - "@typescript-eslint/eslint-plugin": - specifier: ^8.7.0 - version: 8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4) - "@typescript-eslint/parser": - specifier: ^8.7.0 - version: 8.7.0(eslint@8.57.1)(typescript@5.5.4) all-contributors-cli: specifier: ^6.26.1 version: 6.26.1 commitizen: - specifier: ^4.3.0 - version: 4.3.0(@types/node@20.10.5)(typescript@5.5.4) + specifier: ^4.3.1 + version: 4.3.1(@types/node@22.7.3)(typescript@5.5.4) cross-env: specifier: ^7.0.3 version: 7.0.3 @@ -130,16 +133,19 @@ importers: version: 7.0.6(postcss@8.4.47) cz-conventional-changelog: specifier: ^3.3.0 - version: 3.3.0(@types/node@20.10.5)(typescript@5.5.4) + version: 3.3.0(@types/node@22.7.3)(typescript@5.5.4) eslint: - specifier: ^8.57.1 - version: 8.57.1 + specifier: ^9.12.0 + version: 9.12.0(jiti@1.21.6) eslint-config-prettier: specifier: ^9.1.0 - version: 9.1.0(eslint@8.57.1) + version: 9.1.0(eslint@9.12.0(jiti@1.21.6)) eslint-plugin-prettier: specifier: ^5.2.1 - version: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) + version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.12.0(jiti@1.21.6)))(eslint@9.12.0(jiti@1.21.6))(prettier@3.3.3) + globals: + specifier: ^15.11.0 + version: 15.11.0 husky: specifier: ^9.1.6 version: 9.1.6 @@ -159,8 +165,8 @@ importers: specifier: ^13.0.0 version: 13.0.0(postcss@8.4.47) postcss-preset-env: - specifier: ^10.0.5 - version: 10.0.5(postcss@8.4.47) + specifier: ^10.0.7 + version: 10.0.7(postcss@8.4.47) postcss-reporter: specifier: ^7.1.0 version: 7.1.0(postcss@8.4.47) @@ -171,29 +177,32 @@ importers: specifier: ^4.1.0 version: 4.1.0(prettier@3.3.3)(typescript@5.5.4) semantic-release: - specifier: ^24.1.1 - version: 24.1.1(typescript@5.5.4) + specifier: ^24.1.2 + version: 24.1.2(typescript@5.5.4) stylelint: - specifier: ^16.9.0 - version: 16.9.0(typescript@5.5.4) + specifier: ^16.10.0 + version: 16.10.0(typescript@5.5.4) stylelint-config-standard: specifier: ^36.0.1 - version: 36.0.1(stylelint@16.9.0(typescript@5.5.4)) + version: 36.0.1(stylelint@16.10.0(typescript@5.5.4)) svgo: specifier: ^3.3.2 version: 3.3.2 tailwindcss: - specifier: ^3.4.13 - version: 3.4.13 + specifier: ^3.4.14 + version: 3.4.14 typescript: specifier: ~5.5.4 version: 5.5.4 + typescript-eslint: + specifier: ^8.9.0 + version: 8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) vite: - specifier: ^5.4.7 - version: 5.4.7(@types/node@20.10.5)(terser@5.26.0) + specifier: ^5.4.9 + version: 5.4.9(@types/node@22.7.3)(terser@5.34.0) vite-plugin-pwa: specifier: ^0.20.5 - version: 0.20.5(vite@5.4.7(@types/node@20.10.5)(terser@5.26.0))(workbox-build@7.1.1)(workbox-window@7.1.0) + version: 0.20.5(vite@5.4.9(@types/node@22.7.3)(terser@5.34.0))(workbox-build@7.1.1)(workbox-window@7.1.0) workbox-build: specifier: ^7.1.1 version: 7.1.1 @@ -208,13 +217,6 @@ importers: version: 7.1.0 packages: - "@aashutoshrathi/word-wrap@1.2.6": - resolution: - { - integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, - } - engines: { node: ">=0.10.0" } - "@alloc/quick-lru@5.2.0": resolution: { @@ -234,10 +236,10 @@ packages: integrity: sha512-5WbpZgI0m0Mf8Ydwlm1XWB8hIzkk6fJifzYmJqo5HLdA8jCQa+4I+8uOlGlvSMxbBTkvxanEgA2WX27+99X44w==, } - "@ampproject/remapping@2.2.1": + "@ampproject/remapping@2.3.0": resolution: { - integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, + integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==, } engines: { node: ">=6.0.0" } @@ -250,264 +252,240 @@ packages: peerDependencies: ajv: ">=8" - "@babel/code-frame@7.23.5": + "@babel/code-frame@7.24.7": resolution: { - integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, + integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==, } engines: { node: ">=6.9.0" } - "@babel/code-frame@7.24.2": + "@babel/compat-data@7.25.4": resolution: { - integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==, + integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==, } engines: { node: ">=6.9.0" } - "@babel/compat-data@7.23.5": + "@babel/core@7.25.2": resolution: { - integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==, + integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==, } engines: { node: ">=6.9.0" } - "@babel/core@7.24.4": + "@babel/generator@7.25.6": resolution: { - integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==, + integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==, } engines: { node: ">=6.9.0" } - "@babel/generator@7.24.4": + "@babel/helper-annotate-as-pure@7.24.7": resolution: { - integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==, + integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==, } engines: { node: ">=6.9.0" } - "@babel/helper-annotate-as-pure@7.22.5": + "@babel/helper-builder-binary-assignment-operator-visitor@7.24.7": resolution: { - integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, + integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==, } engines: { node: ">=6.9.0" } - "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15": + "@babel/helper-compilation-targets@7.25.2": resolution: { - integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, + integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==, } engines: { node: ">=6.9.0" } - "@babel/helper-compilation-targets@7.23.6": + "@babel/helper-create-class-features-plugin@7.25.4": resolution: { - integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-create-class-features-plugin@7.23.6": - resolution: - { - integrity: sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==, + integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-create-regexp-features-plugin@7.22.15": + "@babel/helper-create-regexp-features-plugin@7.25.2": resolution: { - integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, + integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-define-polyfill-provider@0.4.4": + "@babel/helper-define-polyfill-provider@0.6.2": resolution: { - integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==, + integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - "@babel/helper-environment-visitor@7.22.20": + "@babel/helper-member-expression-to-functions@7.24.8": resolution: { - integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, + integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==, } engines: { node: ">=6.9.0" } - "@babel/helper-function-name@7.23.0": + "@babel/helper-module-imports@7.24.7": resolution: { - integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, + integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==, } engines: { node: ">=6.9.0" } - "@babel/helper-hoist-variables@7.22.5": + "@babel/helper-module-transforms@7.25.2": resolution: { - integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-member-expression-to-functions@7.23.0": - resolution: - { - integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-imports@7.22.15": - resolution: - { - integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-transforms@7.23.3": - resolution: - { - integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==, + integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-optimise-call-expression@7.22.5": + "@babel/helper-optimise-call-expression@7.24.7": resolution: { - integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, + integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==, } engines: { node: ">=6.9.0" } - "@babel/helper-plugin-utils@7.22.5": + "@babel/helper-plugin-utils@7.24.8": resolution: { - integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, + integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==, } engines: { node: ">=6.9.0" } - "@babel/helper-remap-async-to-generator@7.22.20": + "@babel/helper-remap-async-to-generator@7.25.0": resolution: { - integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, + integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-replace-supers@7.22.20": + "@babel/helper-replace-supers@7.25.0": resolution: { - integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==, + integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/helper-simple-access@7.22.5": + "@babel/helper-simple-access@7.24.7": resolution: { - integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, + integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==, } engines: { node: ">=6.9.0" } - "@babel/helper-skip-transparent-expression-wrappers@7.22.5": + "@babel/helper-skip-transparent-expression-wrappers@7.24.7": resolution: { - integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, + integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==, } engines: { node: ">=6.9.0" } - "@babel/helper-split-export-declaration@7.22.6": + "@babel/helper-string-parser@7.24.8": resolution: { - integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, + integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==, } engines: { node: ">=6.9.0" } - "@babel/helper-string-parser@7.23.4": + "@babel/helper-validator-identifier@7.24.7": resolution: { - integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==, + integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, } engines: { node: ">=6.9.0" } - "@babel/helper-validator-identifier@7.22.20": + "@babel/helper-validator-option@7.24.8": resolution: { - integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, + integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==, } engines: { node: ">=6.9.0" } - "@babel/helper-validator-option@7.23.5": + "@babel/helper-wrap-function@7.25.0": resolution: { - integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==, + integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==, } engines: { node: ">=6.9.0" } - "@babel/helper-wrap-function@7.22.20": + "@babel/helpers@7.25.6": resolution: { - integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==, + integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==, } engines: { node: ">=6.9.0" } - "@babel/helpers@7.24.4": + "@babel/highlight@7.24.7": resolution: { - integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==, + integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==, } engines: { node: ">=6.9.0" } - "@babel/highlight@7.23.4": + "@babel/parser@7.25.6": resolution: { - integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, - } - engines: { node: ">=6.9.0" } - - "@babel/highlight@7.24.2": - resolution: - { - integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==, - } - engines: { node: ">=6.9.0" } - - "@babel/parser@7.24.4": - resolution: - { - integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==, + integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==, } engines: { node: ">=6.0.0" } hasBin: true - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3": + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3": resolution: { - integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==, + integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3": + "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0": resolution: { - integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==, + integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0": + resolution: + { + integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7": + resolution: + { + integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.13.0 - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3": + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0": resolution: { - integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==, + integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -563,19 +541,19 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-import-assertions@7.23.3": + "@babel/plugin-syntax-import-assertions@7.25.6": resolution: { - integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==, + integrity: sha512-aABl0jHw9bZ2karQ/uUD6XP4u0SG22SJrOHFoL6XB1R7dTovOP4TzTlsxOYC5yQ1pdscVK2JTUnF6QL3ARoAiQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-syntax-import-attributes@7.23.3": + "@babel/plugin-syntax-import-attributes@7.25.6": resolution: { - integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==, + integrity: sha512-sXaDXaJN9SNLymBdlWFA+bjzBhFD617ZaFiY13dGt7TVslVvVgA6fkZOP7Ki3IGElC45lwHdOTrCtKZGVAWeLQ==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -672,442 +650,451 @@ packages: peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-transform-arrow-functions@7.23.3": + "@babel/plugin-transform-arrow-functions@7.24.7": resolution: { - integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==, + integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-async-generator-functions@7.23.4": + "@babel/plugin-transform-async-generator-functions@7.25.4": resolution: { - integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==, + integrity: sha512-jz8cV2XDDTqjKPwVPJBIjORVEmSGYhdRa8e5k5+vN+uwcjSrSxUaebBRa4ko1jqNF2uxyg8G6XYk30Jv285xzg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-async-to-generator@7.23.3": + "@babel/plugin-transform-async-to-generator@7.24.7": resolution: { - integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==, + integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-block-scoped-functions@7.23.3": + "@babel/plugin-transform-block-scoped-functions@7.24.7": resolution: { - integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==, + integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-block-scoping@7.23.4": + "@babel/plugin-transform-block-scoping@7.25.0": resolution: { - integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==, + integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-class-properties@7.23.3": + "@babel/plugin-transform-class-properties@7.25.4": resolution: { - integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==, + integrity: sha512-nZeZHyCWPfjkdU5pA/uHiTaDAFUEqkpzf1YoQT2NeSynCGYq9rxfyI3XpQbfx/a0hSnFH6TGlEXvae5Vi7GD8g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-class-static-block@7.23.4": + "@babel/plugin-transform-class-static-block@7.24.7": resolution: { - integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==, + integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.12.0 - "@babel/plugin-transform-classes@7.23.5": + "@babel/plugin-transform-classes@7.25.4": resolution: { - integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==, + integrity: sha512-oexUfaQle2pF/b6E0dwsxQtAol9TLSO88kQvym6HHBWFliV2lGdrPieX+WgMRLSJDVzdYywk7jXbLPuO2KLTLg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-computed-properties@7.23.3": + "@babel/plugin-transform-computed-properties@7.24.7": resolution: { - integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==, + integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-destructuring@7.23.3": + "@babel/plugin-transform-destructuring@7.24.8": resolution: { - integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==, + integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-dotall-regex@7.23.3": + "@babel/plugin-transform-dotall-regex@7.24.7": resolution: { - integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==, + integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-duplicate-keys@7.23.3": + "@babel/plugin-transform-duplicate-keys@7.24.7": resolution: { - integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==, + integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-dynamic-import@7.23.4": + "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0": resolution: { - integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-exponentiation-operator@7.23.3": - resolution: - { - integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-export-namespace-from@7.23.4": - resolution: - { - integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-for-of@7.23.6": - resolution: - { - integrity: sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-function-name@7.23.3": - resolution: - { - integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-json-strings@7.23.4": - resolution: - { - integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-literals@7.23.3": - resolution: - { - integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-logical-assignment-operators@7.23.4": - resolution: - { - integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-member-expression-literals@7.23.3": - resolution: - { - integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-amd@7.23.3": - resolution: - { - integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-commonjs@7.23.3": - resolution: - { - integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-systemjs@7.23.3": - resolution: - { - integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-umd@7.23.3": - resolution: - { - integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-named-capturing-groups-regex@7.22.5": - resolution: - { - integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, + integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/plugin-transform-new-target@7.23.3": + "@babel/plugin-transform-dynamic-import@7.24.7": resolution: { - integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==, + integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-nullish-coalescing-operator@7.23.4": + "@babel/plugin-transform-exponentiation-operator@7.24.7": resolution: { - integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==, + integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-numeric-separator@7.23.4": + "@babel/plugin-transform-export-namespace-from@7.24.7": resolution: { - integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==, + integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-object-rest-spread@7.23.4": + "@babel/plugin-transform-for-of@7.24.7": resolution: { - integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==, + integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-object-super@7.23.3": + "@babel/plugin-transform-function-name@7.25.1": resolution: { - integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==, + integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-optional-catch-binding@7.23.4": + "@babel/plugin-transform-json-strings@7.24.7": resolution: { - integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==, + integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-optional-chaining@7.23.4": + "@babel/plugin-transform-literals@7.25.2": resolution: { - integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==, + integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-parameters@7.23.3": + "@babel/plugin-transform-logical-assignment-operators@7.24.7": resolution: { - integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==, + integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-private-methods@7.23.3": + "@babel/plugin-transform-member-expression-literals@7.24.7": resolution: { - integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==, + integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-private-property-in-object@7.23.4": + "@babel/plugin-transform-modules-amd@7.24.7": resolution: { - integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==, + integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-property-literals@7.23.3": + "@babel/plugin-transform-modules-commonjs@7.24.8": resolution: { - integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==, + integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-regenerator@7.23.3": + "@babel/plugin-transform-modules-systemjs@7.25.0": resolution: { - integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==, + integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-reserved-words@7.23.3": + "@babel/plugin-transform-modules-umd@7.24.7": resolution: { - integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==, + integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - "@babel/plugin-transform-shorthand-properties@7.23.3": + "@babel/plugin-transform-named-capturing-groups-regex@7.24.7": resolution: { - integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-spread@7.23.3": - resolution: - { - integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-sticky-regex@7.23.3": - resolution: - { - integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-template-literals@7.23.3": - resolution: - { - integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-typeof-symbol@7.23.3": - resolution: - { - integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-escapes@7.23.3": - resolution: - { - integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-property-regex@7.23.3": - resolution: - { - integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-regex@7.23.3": - resolution: - { - integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-sets-regex@7.23.3": - resolution: - { - integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==, + integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 - "@babel/preset-env@7.23.6": + "@babel/plugin-transform-new-target@7.24.7": resolution: { - integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==, + integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-nullish-coalescing-operator@7.24.7": + resolution: + { + integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-numeric-separator@7.24.7": + resolution: + { + integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-object-rest-spread@7.24.7": + resolution: + { + integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-object-super@7.24.7": + resolution: + { + integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-optional-catch-binding@7.24.7": + resolution: + { + integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-optional-chaining@7.24.8": + resolution: + { + integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-parameters@7.24.7": + resolution: + { + integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-private-methods@7.25.4": + resolution: + { + integrity: sha512-ao8BG7E2b/URaUQGqN3Tlsg+M3KlHY6rJ1O1gXAEUnZoyNQnvKyH87Kfg+FoxSeyWUB8ISZZsC91C44ZuBFytw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-private-property-in-object@7.24.7": + resolution: + { + integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-property-literals@7.24.7": + resolution: + { + integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-regenerator@7.24.7": + resolution: + { + integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-reserved-words@7.24.7": + resolution: + { + integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-shorthand-properties@7.24.7": + resolution: + { + integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-spread@7.24.7": + resolution: + { + integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-sticky-regex@7.24.7": + resolution: + { + integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-template-literals@7.24.7": + resolution: + { + integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-typeof-symbol@7.24.8": + resolution: + { + integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-escapes@7.24.7": + resolution: + { + integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-property-regex@7.24.7": + resolution: + { + integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-regex@7.24.7": + resolution: + { + integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-sets-regex@7.25.4": + resolution: + { + integrity: sha512-qesBxiWkgN1Q+31xUE9RcMk79eOXXDCv6tfyGMRSs4RGlioSg2WVyQAm07k726cSE56pa+Kb0y9epX2qaXzTvA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/preset-env@7.25.4": + resolution: + { + integrity: sha512-W9Gyo+KmcxjGahtt3t9fb14vFRWvPpu5pT6GBlovAK6BTBcxgjfVMSQCfJl4oi35ODrxP6xx2Wr8LNST57Mraw==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -1127,38 +1114,38 @@ packages: integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, } - "@babel/runtime@7.23.6": + "@babel/runtime@7.25.6": resolution: { - integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==, + integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==, } engines: { node: ">=6.9.0" } - "@babel/template@7.24.0": + "@babel/template@7.25.0": resolution: { - integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==, + integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==, } engines: { node: ">=6.9.0" } - "@babel/traverse@7.24.1": + "@babel/traverse@7.25.6": resolution: { - integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==, + integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==, } engines: { node: ">=6.9.0" } - "@babel/types@7.24.0": + "@babel/types@7.25.6": resolution: { - integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==, + integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==, } engines: { node: ">=6.9.0" } - "@codemirror/autocomplete@6.11.1": + "@codemirror/autocomplete@6.18.1": resolution: { - integrity: sha512-L5UInv8Ffd6BPw0P3EF7JLYAMeEbclY7+6Q11REt8vhih8RuLreKtPy/xk8wPxs4EQgYqzI7cdgpiYwWlbS/ow==, + integrity: sha512-iWHdj/B1ethnHRTwZj+C1obmmuCzquH29EbcKr0qIjA9NfDeBDJ7vs+WOHsFeLeflE4o+dHfYndJloMKHUkWUA==, } peerDependencies: "@codemirror/language": ^6.0.0 @@ -1166,10 +1153,10 @@ packages: "@codemirror/view": ^6.0.0 "@lezer/common": ^1.0.0 - "@codemirror/commands@6.6.2": + "@codemirror/commands@6.7.0": resolution: { - integrity: sha512-Fq7eWOl1Rcbrfn6jD8FPCj9Auaxdm5nIK5RYOeW7ughnd/rY5AmPg6b+CfsG39ZHdwiwe8lde3q8uR7CF5S0yQ==, + integrity: sha512-+cduIZ2KbesDhbykV02K25A5xIVrquSPz4UxxYBemRlAT2aW8dhwUgLDwej7q/RJUHKk4nALYcR1puecDvbdqw==, } "@codemirror/lang-xml@6.1.0": @@ -1184,16 +1171,16 @@ packages: integrity: sha512-kDqEU5sCP55Oabl6E7m5N+vZRoc0iWqgDVhEKifcHzPzjqCegcO4amfrYVL9PmPZpl4G0yjkpTpUO/Ui8CzO8A==, } - "@codemirror/lint@6.4.2": + "@codemirror/lint@6.8.2": resolution: { - integrity: sha512-wzRkluWb1ptPKdzlsrbwwjYCPLgzU6N88YBAmlZi8WFyuiEduSd05MnJYNogzyc8rPK7pj6m95ptUApc8sHKVA==, + integrity: sha512-PDFG5DjHxSEjOXk9TQYYVjZDqlZTFaDBfhQixHnQOEVDDNHUbEh/hstAjcQJaA6FQdZTD1hquXTK0rVBLADR1g==, } - "@codemirror/search@6.5.5": + "@codemirror/search@6.5.6": resolution: { - integrity: sha512-PIEN3Ke1buPod2EHbJsoQwlbpkz30qGZKcnmH1eihq9+bPQx8gelauUwLYaY4vBOuBAuEhmpDLii4rj/uO0yMA==, + integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==, } "@codemirror/state@6.4.1": @@ -1202,10 +1189,10 @@ packages: integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==, } - "@codemirror/view@6.33.0": + "@codemirror/view@6.34.1": resolution: { - integrity: sha512-AroaR3BvnjRW8fiZBalAaK+ZzB5usGgI014YKElYZvQdNH5ZIidHlO+cyf/2rWzyBFRkvG6VhiXeAEbC53P2YQ==, + integrity: sha512-t1zK/l9UiRqwUNPm+pdIT0qzJlzuVckbTEMVNFhfWkGiBQClstzg+78vedCvLSX0xJEZ6lwZbPpnljL7L6iwMQ==, } "@colors/colors@1.5.0": @@ -1230,13 +1217,6 @@ packages: } engines: { node: ">=v18" } - "@commitlint/config-validator@18.6.1": - resolution: - { - integrity: sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw==, - } - engines: { node: ">=v18" } - "@commitlint/config-validator@19.5.0": resolution: { @@ -1251,13 +1231,6 @@ packages: } engines: { node: ">=v18" } - "@commitlint/execute-rule@18.6.1": - resolution: - { - integrity: sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg==, - } - engines: { node: ">=v18" } - "@commitlint/execute-rule@19.5.0": resolution: { @@ -1286,13 +1259,6 @@ packages: } engines: { node: ">=v18" } - "@commitlint/load@18.6.1": - resolution: - { - integrity: sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA==, - } - engines: { node: ">=v18" } - "@commitlint/load@19.5.0": resolution: { @@ -1321,13 +1287,6 @@ packages: } engines: { node: ">=v18" } - "@commitlint/resolve-extends@18.6.1": - resolution: - { - integrity: sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ==, - } - engines: { node: ">=v18" } - "@commitlint/resolve-extends@19.5.0": resolution: { @@ -1356,13 +1315,6 @@ packages: } engines: { node: ">=v18" } - "@commitlint/types@18.6.1": - resolution: - { - integrity: sha512-gwRLBLra/Dozj2OywopeuHj2ac26gjGkz2cZ+86cTJOdtWfiRRr4+e77ZDAGc6MDWxaWheI+mAV5TLWWRwqrFg==, - } - engines: { node: ">=v18" } - "@commitlint/types@19.5.0": resolution: { @@ -1370,15 +1322,15 @@ packages: } engines: { node: ">=v18" } - "@csstools/cascade-layer-name-parser@2.0.1": + "@csstools/cascade-layer-name-parser@2.0.2": resolution: { - integrity: sha512-G9ZYN5+yr/E6xYSiy1BwOEFP5p88ZtWo8sL4NztKBkRRAwRkzVGa70M+D+fYHugMID5jkLeNt5X9jYd5EaVuyg==, + integrity: sha512-rRWNJ8n16okpQT+8RWEbPfSl8D9WVoDZGBfHkjYnMYWcC20RiMpu/iGeKqUl1hR+SQIKg6p/QJap5rZJaHtVOg==, } engines: { node: ">=18" } peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.1 - "@csstools/css-tokenizer": ^3.0.1 + "@csstools/css-parser-algorithms": ^3.0.2 + "@csstools/css-tokenizer": ^3.0.2 "@csstools/color-helpers@5.0.1": resolution: @@ -1387,25 +1339,25 @@ packages: } engines: { node: ">=18" } - "@csstools/css-calc@2.0.1": + "@csstools/css-calc@2.0.2": resolution: { - integrity: sha512-e59V+sNp6e5m+9WnTUydA1DQO70WuKUdseflRpWmXxocF/h5wWGIxUjxfvLtajcmwstH0vm6l0reKMzcyI757Q==, + integrity: sha512-N70YZw+R6WDP9EEd5xAT3xd+SgZFZsllXR6kclq6U8e2thlakNpWCKhuOiWfCKU8HpeWOyL+2ArSX8uDszMytA==, } engines: { node: ">=18" } peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.1 - "@csstools/css-tokenizer": ^3.0.1 + "@csstools/css-parser-algorithms": ^3.0.2 + "@csstools/css-tokenizer": ^3.0.2 - "@csstools/css-color-parser@3.0.2": + "@csstools/css-color-parser@3.0.3": resolution: { - integrity: sha512-mNg7A6HnNjlm0we/pDS9dUafOuBxcanN0TBhEGeIk6zZincuk0+mAbnBqfVs29NlvWHZ8diwTG6g5FeU8246sA==, + integrity: sha512-mnOTQ6KbQ6GHfdVHVTNXffroW0r5P5531h73bIyEzWAScGjMPQi+1XYgAydYVaZiKeXlQ4GHG9dnBWq9h7xFIQ==, } engines: { node: ">=18" } peerDependencies: - "@csstools/css-parser-algorithms": ^3.0.1 - "@csstools/css-tokenizer": ^3.0.1 + "@csstools/css-parser-algorithms": ^3.0.2 + "@csstools/css-tokenizer": ^3.0.2 "@csstools/css-parser-algorithms@3.0.1": resolution: @@ -1416,10 +1368,19 @@ packages: peerDependencies: "@csstools/css-tokenizer": ^3.0.1 - "@csstools/css-tokenizer@3.0.1": + "@csstools/css-parser-algorithms@3.0.2": resolution: { - integrity: sha512-UBqaiu7kU0lfvaP982/o3khfXccVlHPWp0/vwwiIgDF0GmqqqxoiXC/6FCjlS9u92f7CoEz6nXKQnrn1kIAkOw==, + integrity: sha512-6tC/MnlEvs5suR4Ahef4YlBccJDHZuxGsAlxXmybWjZ5jPxlzLSMlRZ9mVHSRvlD+CmtE7+hJ+UQbfXrws/rUQ==, + } + engines: { node: ">=18" } + peerDependencies: + "@csstools/css-tokenizer": ^3.0.2 + + "@csstools/css-tokenizer@3.0.2": + resolution: + { + integrity: sha512-IuTRcD53WHsXPCZ6W7ubfGqReTJ9Ra0yRRFmXYP/Re8hFYYfoIYIK4080X5luslVLWimhIeFq0hj09urVMQzTw==, } engines: { node: ">=18" } @@ -1433,6 +1394,16 @@ packages: "@csstools/css-parser-algorithms": ^3.0.1 "@csstools/css-tokenizer": ^3.0.1 + "@csstools/media-query-list-parser@4.0.0": + resolution: + { + integrity: sha512-nUfbCGeqCju55Po8ujRNQ8DjuKYth5UcsDj5HsVzSfqnaFdpOwYCUAhRJ2grfwrXhb9+KuRXHQ6JHzaI0Qhu8Q==, + } + engines: { node: ">=18" } + peerDependencies: + "@csstools/css-parser-algorithms": ^3.0.2 + "@csstools/css-tokenizer": ^3.0.2 + "@csstools/postcss-cascade-layers@5.0.0": resolution: { @@ -1442,37 +1413,37 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-color-function@4.0.2": + "@csstools/postcss-color-function@4.0.3": resolution: { - integrity: sha512-q/W3RXh66SM7WqxW3/KU6koL8nOgqyB/wrcU3+ThXnNtXY2+k8UgdE301ISJpMt6PDyYgC7eMaIBo535RvFIgw==, + integrity: sha512-dziWTvbyBsXze7Li+BemXyYX9yCf8udlGKB78evZismrBf7SNN6K5S0qE4sRQELKEkttugcGz0hwqyXilEhoUA==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-color-mix-function@3.0.2": + "@csstools/postcss-color-mix-function@3.0.3": resolution: { - integrity: sha512-zG9PHNzZVCRk6eprm+T/ybrnuiwLdO+RR7+GCtNut+NZJGtPJj6bfPOEX23aOlMslLcRAlN6QOpxH3tovn+WpA==, + integrity: sha512-L7v0pQlLC3VejShxn5bjrdo3GhhHExSVGB8CgZqIcED/W/eK9pKGxubyGivNcJQYl+iznBtTU3mFPMmOrLccBQ==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-content-alt-text@2.0.1": + "@csstools/postcss-content-alt-text@2.0.2": resolution: { - integrity: sha512-TWjjewVZqdkjavsi8a2THuXgkhUum1k/m4QJpZpzOv72q6WnaoQZGSj5t5uCs7ymJr0H3qj6JcXMwMApSWUOGQ==, + integrity: sha512-GzMdDJrNPAOq4XxGac5xv5Ae2pB3JjvYWIJhJPcE6g87Q38gXG1Daaqq55QUU8DnC+iVm8lrO/JGvSC2T4YBOA==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-exponential-functions@2.0.1": + "@csstools/postcss-exponential-functions@2.0.2": resolution: { - integrity: sha512-A/MG8es3ylFzZ30oYIQUyJcMOfTfCs0dqqBMzeuzaPRlx4q/72WG+BbKe/pL9BUNIWsM0Q8jn3e3la8enjHJJA==, + integrity: sha512-gSGeXEKse3U3lDzSXh9XE1DgdicMWolo+eyXN8nH96Vr5mWPd6jUwk6W+x8yRNwM5dDkoAE/HkYK6/WzSo9Jsw==, } engines: { node: ">=18" } peerDependencies: @@ -1487,28 +1458,28 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-gamut-mapping@2.0.2": + "@csstools/postcss-gamut-mapping@2.0.3": resolution: { - integrity: sha512-/1ur3ca9RWg/KnbLlxaDswyjLSGoaHNDruAzrVhkn5axgd7LOH6JHCBRhrKDafdMw9bf4MQrYFoaLfHAPekLFg==, + integrity: sha512-1mbYE41F3fluEdjExw70b339NVU62O6sz43mya5O+LultfZQdmY68qRsWT+rw85Imya9aeLCDgBHaxwgXf1Z/g==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-gradients-interpolation-method@5.0.2": + "@csstools/postcss-gradients-interpolation-method@5.0.3": resolution: { - integrity: sha512-qRpvA4sduAfiV9yZG4OM7q/h2Qhr3lg+GrHe9NZwuzWnfSDLGh+Dh4Ea6fQ+1++jdKXW/Cb4/vHRp0ssQYra4w==, + integrity: sha512-TW+utpEOOn2HLlRZTEVNS8XBlG5bOcSNBanIKjPWnkmdgkFjcj1eIaEtWezpGX2hKJpkiwZeIEyP/UItWk6c3g==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-hwb-function@4.0.2": + "@csstools/postcss-hwb-function@4.0.3": resolution: { - integrity: sha512-RUBVCyJE1hTsf9vGp3zrALeMollkAlHRFKm+T36y67nLfOOf+6GNQsdTGFAyLrY65skcm8ddC26Jp1n9ZIauEA==, + integrity: sha512-HBeApQzk6UlqAAWbuXSiWmF0Xtc/hfMTESSbkRUpolXshuPkUaBWXflfQuoo6exv3MvID6iTmv11GZT1ZfADDQ==, } engines: { node: ">=18" } peerDependencies: @@ -1541,10 +1512,10 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-light-dark-function@2.0.4": + "@csstools/postcss-light-dark-function@2.0.5": resolution: { - integrity: sha512-yHUt5DZ61Irvp72notmAl3Zt4Me50EWToWNocazyIFTVYFwwo/EucmV3hWi9zJehu3rOSvMclL7DzvRDfbak/A==, + integrity: sha512-mSqqxuwlBg10YyErq2YYB71KtvWDueBYE9WAnC6B7GHU+z0ECcGf+sR9zxpvePGzesuBNDB+cp15cW2CvOyszA==, } engines: { node: ">=18" } peerDependencies: @@ -1586,28 +1557,28 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-logical-viewport-units@3.0.1": + "@csstools/postcss-logical-viewport-units@3.0.2": resolution: { - integrity: sha512-JsfaoTiBqIuRE+CYL4ZpYKOqJ965GyiMH4b8UrY0Z7i5GfMiHZrK7xtTB29piuyKQzrW+Z8w3PAExhwND9cuAQ==, + integrity: sha512-oog7VobKvrS34oyUKslI6wCphtJxx0ldiA8RToPQ0HXPWNiXXSM7IbgwOTImJKTIUjo3eL7o5uuPxeu5MsnkvA==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-media-minmax@2.0.1": + "@csstools/postcss-media-minmax@2.0.2": resolution: { - integrity: sha512-EMa3IgUip+F/MwH4r2KfIA9ym9hQkT2PpR9MOukdomfGGCFuw9V3n/iIOBKziN1qfeddsYoOvtYOKQcHU2yIjg==, + integrity: sha512-zodxyIwRNuro/SIjN+zrYeZCQJvMd1obPtsvmNxLRvk3FOM3KwuuX8GEev9if19OGlNVvJZIe9wH77c+jIbXzA==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.1": + "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.2": resolution: { - integrity: sha512-JTzMQz//INahTALkvXnC5lC2fJKzwb5PY443T2zaM9hAzM7nzHMLIlEfFgdtBahVIBtBSalMefdxNr99LGW1lQ==, + integrity: sha512-9bEvSC8hIkdqHwehYIADcwC7/TvuJeb1hAw0STI7BMRVE57nFxHyXY+WzfLPXtmhpdFqGcKJIyQkDcenQI3Sow==, } engines: { node: ">=18" } peerDependencies: @@ -1631,10 +1602,10 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-oklab-function@4.0.2": + "@csstools/postcss-oklab-function@4.0.3": resolution: { - integrity: sha512-2iSK/T77PHMeorakBAk/WLxSodfIJ/lmi6nxEkuruXfhGH7fByZim4Fw6ZJf4B73SVieRSH2ep8zvYkA2ZfRtA==, + integrity: sha512-BrhnL98OSpWt5EOMk5Hm+kL0kjA8BhBc9DGG0jYgww1GhWItn+L/McQ4WgHE2cm9+jSUE2OMy/31WvSRKhWpnQ==, } engines: { node: ">=18" } peerDependencies: @@ -1649,10 +1620,10 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-relative-color-syntax@3.0.2": + "@csstools/postcss-relative-color-syntax@3.0.3": resolution: { - integrity: sha512-aBpuUdpJBswNGfw6lOkhown2cZ0YXrMjASye56nkoRpgRe9yDF4BM1fvEuakrCDiaeoUzVaI4SF6+344BflXfQ==, + integrity: sha512-1VYBTdGiFSOFrlczaYcUNybCU3XZRL9DDY3ooYRkvweWJZas8dQVHi6vy9SUmxnk0vfGbMbrISXLOIHw4LjKDg==, } engines: { node: ">=18" } peerDependencies: @@ -1667,10 +1638,10 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-stepped-value-functions@4.0.1": + "@csstools/postcss-stepped-value-functions@4.0.2": resolution: { - integrity: sha512-dk3KqVcIEYzy9Mvx8amoBbk123BWgd5DfjXDiPrEqxGma37PG7m/MoMmHQhuVHIjvPDHoJwyIZi2yy7j0RA5fw==, + integrity: sha512-AxLKGIV0zYIAkeN02fo4o/vcG39WEZjT9dXs78ajy87dM94OFNIu5huxqBgkFGKLiXhQIKBRxAF/MtJmuIWi8w==, } engines: { node: ">=18" } peerDependencies: @@ -1685,10 +1656,10 @@ packages: peerDependencies: postcss: ^8.4 - "@csstools/postcss-trigonometric-functions@4.0.1": + "@csstools/postcss-trigonometric-functions@4.0.2": resolution: { - integrity: sha512-QHOYuN3bzS/rcpAygFhJxJUtD8GuJEWF6f9Zm518Tq/cSMlcTgU+v0geyi5EqbmYxKMig2oKCKUSGqOj9gehkg==, + integrity: sha512-hQzJkTWNvHKGYa5ySpdex2K/ODX6bI3z8Pmdl3W/opRlaXMA7Xvq7Nagp31BTkr1ngzfnqTY9XNKEI2FqaO3fg==, } engines: { node: ">=18" } peerDependencies: @@ -1952,31 +1923,59 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - "@eslint-community/regexpp@4.10.0": + "@eslint-community/regexpp@4.11.1": resolution: { - integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==, + integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==, } engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } - "@eslint/eslintrc@2.1.4": + "@eslint/config-array@0.18.0": resolution: { - integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==, + integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@eslint/js@8.57.1": + "@eslint/core@0.6.0": resolution: { - integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==, + integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@floating-ui/core@1.6.4": + "@eslint/eslintrc@3.1.0": resolution: { - integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==, + integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/js@9.12.0": + resolution: + { + integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/object-schema@2.1.4": + resolution: + { + integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@eslint/plugin-kit@0.2.0": + resolution: + { + integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + "@floating-ui/core@1.6.8": + resolution: + { + integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==, } "@floating-ui/dom@1.6.11": @@ -1991,16 +1990,16 @@ packages: integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==, } - "@foliojs-fork/fontkit@1.9.1": + "@foliojs-fork/fontkit@1.9.2": resolution: { - integrity: sha512-U589voc2/ROnvx1CyH9aNzOQWJp127JGU1QAylXGQ7LoEAF6hMmahZLQ4eqAcgHUw+uyW4PjtCItq9qudPkK3A==, + integrity: sha512-IfB5EiIb+GZk+77TRB86AHroVaqfq8JRFlUbz0WEwsInyCG0epX2tCPOy+UfaWPju30DeVoUAXfzWXmhn753KA==, } - "@foliojs-fork/linebreak@1.1.1": + "@foliojs-fork/linebreak@1.1.2": resolution: { - integrity: sha512-pgY/+53GqGQI+mvDiyprvPWgkTlVBS8cxqee03ejm6gKAQNsR1tCYCIvN9FHy7otZajzMqCgPOgC4cHdt4JPig==, + integrity: sha512-ZPohpxxbuKNE0l/5iBJnOAfUaMACwvUIKCvqtWGKIMv1lPYoNjYXRfhi9FeeV9McBkBLxsMFWTVVhHJA8cyzvg==, } "@foliojs-fork/pdfkit@0.14.0": @@ -2039,13 +2038,19 @@ packages: integrity: sha512-EVKokqx9/DdUAZ2l9WVyY51EtRCO2gQWWMvsRIn7r4glJ91q9CXcnILVHZVCpfD52ucXUhUvtYsAjNJ4qP4uIg==, } - "@humanwhocodes/config-array@0.13.0": + "@humanfs/core@0.19.0": resolution: { - integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==, + integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==, } - engines: { node: ">=10.10.0" } - deprecated: Use @eslint/config-array instead + engines: { node: ">=18.18.0" } + + "@humanfs/node@0.16.5": + resolution: + { + integrity: sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==, + } + engines: { node: ">=18.18.0" } "@humanwhocodes/module-importer@1.0.1": resolution: @@ -2054,12 +2059,12 @@ packages: } engines: { node: ">=12.22" } - "@humanwhocodes/object-schema@2.0.3": + "@humanwhocodes/retry@0.3.1": resolution: { - integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==, + integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==, } - deprecated: Use @eslint/object-schema instead + engines: { node: ">=18.18" } "@isaacs/cliui@8.0.2": resolution: @@ -2075,10 +2080,10 @@ packages: } engines: { node: ">=6.0.0" } - "@jridgewell/resolve-uri@3.1.1": + "@jridgewell/resolve-uri@3.1.2": resolution: { - integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, } engines: { node: ">=6.0.0" } @@ -2089,16 +2094,16 @@ packages: } engines: { node: ">=6.0.0" } - "@jridgewell/source-map@0.3.5": + "@jridgewell/source-map@0.3.6": resolution: { - integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, + integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==, } - "@jridgewell/sourcemap-codec@1.4.15": + "@jridgewell/sourcemap-codec@1.5.0": resolution: { - integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, + integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==, } "@jridgewell/trace-mapping@0.3.25": @@ -2107,34 +2112,34 @@ packages: integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, } - "@lezer/common@1.2.0": + "@lezer/common@1.2.1": resolution: { - integrity: sha512-Wmvlm4q6tRpwiy20TnB3yyLTZim38Tkc50dPY8biQRwqE+ati/wD84rm3N15hikvdT4uSg9phs9ubjvcLmkpKg==, + integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==, } - "@lezer/highlight@1.2.0": + "@lezer/highlight@1.2.1": resolution: { - integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==, + integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==, } - "@lezer/lr@1.3.14": + "@lezer/lr@1.4.2": resolution: { - integrity: sha512-z5mY4LStlA3yL7aHT/rqgG614cfcvklS+8oFRFBYrs4YaWLJyKKM4+nN6KopToX0o9Hj6zmH6M5kinOYuy06ug==, + integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==, } - "@lezer/xml@1.0.4": + "@lezer/xml@1.0.5": resolution: { - integrity: sha512-WmXKb5eX8+rRfZYSNRR5TPee/ZoDgBdVS/rj1VCJGDKa5gNldIctQYibCoFVyNhvZsyL/8nHbZJZPM4gnXN2Vw==, + integrity: sha512-VFouqOzmUWfIg+tfmpcdV33ewtK+NSwd4ngSe1aG7HFb4BN0ExyY1b8msp+ndFrnlG4V4iC8yXacjFtrwERnaw==, } - "@lit-labs/ssr-dom-shim@1.2.0": + "@lit-labs/ssr-dom-shim@1.2.1": resolution: { - integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==, + integrity: sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==, } "@lit/context@1.1.2": @@ -2198,63 +2203,63 @@ packages: } engines: { node: ">= 18" } - "@octokit/openapi-types@22.1.0": + "@octokit/openapi-types@22.2.0": resolution: { - integrity: sha512-pGUdSP+eEPfZiQHNkZI0U01HLipxncisdJQB4G//OAmfeO8sqTQ9KRa0KF03TUPCziNsoXUrTg4B2Q1EX++T0Q==, + integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==, } - "@octokit/plugin-paginate-rest@11.2.0": + "@octokit/plugin-paginate-rest@11.3.3": resolution: { - integrity: sha512-Nd3hCJbr5GUwTgV6j2dMONIigoqNwJRm+yvA5BYb1dnGBTmVUrGYGNwYsGl2hN+xtDAYpqxDiz8vysh/NqEN+A==, + integrity: sha512-o4WRoOJZlKqEEgj+i9CpcmnByvtzoUYC6I8PD2SA95M+BJ2x8h7oLcVOg9qcowWXBOdcTRsMZiwvM3EyLm9AfA==, } engines: { node: ">= 18" } peerDependencies: "@octokit/core": ">=6" - "@octokit/plugin-retry@7.1.1": + "@octokit/plugin-retry@7.1.2": resolution: { - integrity: sha512-G9Ue+x2odcb8E1XIPhaFBnTTIrrUDfXN05iFXiqhR+SeeeDMMILcAnysOsxUpEWcQp2e5Ft397FCXTcPkiPkLw==, + integrity: sha512-XOWnPpH2kJ5VTwozsxGurw+svB2e61aWlmk5EVIYZPwFK5F9h4cyPyj9CIKRyMXMHSwpIsI3mPOdpMmrRhe7UQ==, } engines: { node: ">= 18" } peerDependencies: "@octokit/core": ">=6" - "@octokit/plugin-throttling@9.2.1": + "@octokit/plugin-throttling@9.3.1": resolution: { - integrity: sha512-n6EK4/1Npva54sAFDdpUxAbO14FbzudJ/k7DZPjQuLYOvNTWj4DGeH//J9ZCVoLkAlvRWV5sWKLaICsmGvqg2g==, + integrity: sha512-Qd91H4liUBhwLB2h6jZ99bsxoQdhgPk6TdwnClPyTBSDAdviGPceViEgUwj+pcQDmB/rfAXAXK7MTochpHM3yQ==, } engines: { node: ">= 18" } peerDependencies: "@octokit/core": ^6.0.0 - "@octokit/request-error@6.1.1": + "@octokit/request-error@6.1.5": resolution: { - integrity: sha512-1mw1gqT3fR/WFvnoVpY/zUM2o/XkMs/2AszUUG9I69xn0JFLv6PGkPhNk5lbfvROs79wiS0bqiJNxfCZcRJJdg==, + integrity: sha512-IlBTfGX8Yn/oFPMwSfvugfncK2EwRLjzbrpifNaMY8o/HTEAFqCA1FZxjD9cWvSKBHgrIhc4CSBIzMxiLsbzFQ==, } engines: { node: ">= 18" } - "@octokit/request@9.1.1": + "@octokit/request@9.1.3": resolution: { - integrity: sha512-pyAguc0p+f+GbQho0uNetNQMmLG1e80WjkIaqqgUkihqUp0boRU6nKItXO4VWnr+nbZiLGEyy4TeKRwqaLvYgw==, + integrity: sha512-V+TFhu5fdF3K58rs1pGUJIDH5RZLbZm5BI+MNF+6o/ssFNT4vWlCh/tVpF3NxGtP15HUxTTMUbsG5llAuU2CZA==, } engines: { node: ">= 18" } - "@octokit/types@13.4.1": + "@octokit/types@13.5.1": resolution: { - integrity: sha512-Y73oOAzRBAUzR/iRAbGULzpNkX8vaxKCqEtg6K74Ff3w9f5apFnWtE/2nade7dMWWW3bS5Kkd6DJS4HF04xreg==, + integrity: sha512-F41lGiWBKPIWPBgjSvaDXTTQptBujnozENAK3S//nj7xsFdYdirImKlBB/hTjr+Vii68SM+8jG3UJWRa6DMuDA==, } - "@patternfly/elements@4.0.1": + "@patternfly/elements@4.0.2": resolution: { - integrity: sha512-uYRfT6v3mPEJz/ty8XGIOqxaS7mr/UJT/uBTgcwAPFalTVmNnoVKMFlCEGxUnAQXS9FNeu2Ir4ycpLy6LFbApQ==, + integrity: sha512-JaM4l2aWE4GXVzqWN90oYsi2w4YhkWWG18cSDoh0qemi8iZNoD74DrUYn1KdZz3FS7q2G05X7ST4wr7qbsOceQ==, } "@patternfly/icons@1.0.3": @@ -2263,10 +2268,10 @@ packages: integrity: sha512-8BARaCFBUZU2/TxuOQb8R2/VIpxGMnFwdw5ddT1AMnR2KSifdo+d05SgZtVmFkOIAOA0oCo/YKRgSORDA47wig==, } - "@patternfly/pfe-core@4.0.1": + "@patternfly/pfe-core@4.0.2": resolution: { - integrity: sha512-zBztsSRam2t2lWZGsgHxTWwsNhMQbq8R9vyyzEXTLdyvMF56gzKnUbhbNUQTimCuICuz3LynJ8XJ24Grx6iKdg==, + integrity: sha512-7ua3RpqUSwb03l9ZbJmhWKDgCz0vwYowl8xyBUJHecrOpO/WJKk/aNRnsaZg4zexlWo2iOF/Rnm381G3NAurBg==, } "@pkgjs/parseargs@0.11.0": @@ -2297,10 +2302,10 @@ packages: } engines: { node: ">=12.22.0" } - "@pnpm/npm-conf@2.2.2": + "@pnpm/npm-conf@2.3.1": resolution: { - integrity: sha512-UA91GwWPhFExt3IizW6bOeY/pQ0BkuNwKjk9iQW9KqxluGCrg4VenZ0/L+2Y0+ZOtme72EVvg6v0zo3AMQRCeA==, + integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==, } engines: { node: ">=12" } @@ -2318,10 +2323,10 @@ packages: "@types/babel__core": optional: true - "@rollup/plugin-node-resolve@15.2.3": + "@rollup/plugin-node-resolve@15.3.0": resolution: { - integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==, + integrity: sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==, } engines: { node: ">=14.0.0" } peerDependencies: @@ -2359,10 +2364,10 @@ packages: peerDependencies: rollup: ^1.20.0||^2.0.0 - "@rollup/pluginutils@5.1.0": + "@rollup/pluginutils@5.1.2": resolution: { - integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==, + integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==, } engines: { node: ">=14.0.0" } peerDependencies: @@ -2555,14 +2560,14 @@ packages: peerDependencies: semantic-release: ">=18.0.0" - "@semantic-release/github@10.0.3": + "@semantic-release/github@11.0.0": resolution: { - integrity: sha512-nSJQboKrG4xBn7hHpRMrK8lt5DgqJg50ZMz9UbrsfTxuRk55XVoQEadbGZ2L9M0xZAC6hkuwkDhQJKqfPU35Fw==, + integrity: sha512-Uon6G6gJD8U1JNvPm7X0j46yxNRJ8Ui6SgK4Zw5Ktu8RgjEft3BGn+l/RX1TTzhhO3/uUcKuqM+/9/ETFxWS/Q==, } engines: { node: ">=20.8.1" } peerDependencies: - semantic-release: ">=20.1.0" + semantic-release: ">=24.1.0" "@semantic-release/gitlab@13.2.1": resolution: @@ -2573,10 +2578,10 @@ packages: peerDependencies: semantic-release: ">=20.1.0" - "@semantic-release/npm@12.0.0": + "@semantic-release/npm@12.0.1": resolution: { - integrity: sha512-72TVYQCH9NvVsO/y13eF8vE4bNnfls518+4KcFwJUKi7AtA/ZXoNgSg9gTTfw5eMZMkiH0izUrpGXgZE/cSQhA==, + integrity: sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw==, } engines: { node: ">=20.8.1" } peerDependencies: @@ -2598,17 +2603,17 @@ packages: } engines: { node: ">=10" } - "@sindresorhus/is@6.1.0": + "@sindresorhus/is@7.0.1": resolution: { - integrity: sha512-BuvU07zq3tQ/2SIgBsEuxKYDyDjC0n7Zir52bpHy2xnBbW81+po43aLFPLbeV3HRAheFbGud1qgcqSYfhtHMAg==, + integrity: sha512-QWLl2P+rsCJeofkDNIT3WFmb6NrRud1SUYW8dIhXK/46XFV8Q/g7Bsvib0Askb0reRLe+WYPeeE+l5cH7SlkuQ==, } - engines: { node: ">=16" } + engines: { node: ">=18" } - "@sindresorhus/merge-streams@1.0.0": + "@sindresorhus/merge-streams@2.3.0": resolution: { - integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==, + integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==, } engines: { node: ">=18" } @@ -2677,6 +2682,18 @@ packages: integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==, } + "@types/eslint@9.6.1": + resolution: + { + integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==, + } + + "@types/eslint__js@8.42.3": + resolution: + { + integrity: sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw==, + } + "@types/estree@0.0.39": resolution: { @@ -2689,16 +2706,22 @@ packages: integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, } + "@types/estree@1.0.6": + resolution: + { + integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==, + } + "@types/fscreen@1.0.4": resolution: { integrity: sha512-TsjxyAUvlvuQyao9vNk0yES4nY07K9xoAbkhgXU948JG39EqlLxniWuW9OiZde9Q8ACSpu3fmbXXRAfb/l/HqQ==, } - "@types/geojson@7946.0.13": + "@types/geojson@7946.0.14": resolution: { - integrity: sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==, + integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==, } "@types/http-cache-semantics@4.0.4": @@ -2707,16 +2730,22 @@ packages: integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==, } + "@types/json-schema@7.0.15": + resolution: + { + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, + } + "@types/leaflet@1.9.12": resolution: { integrity: sha512-BK7XS+NyRI291HIo0HCfE18Lp8oA30H1gpi1tf0mF3TgiCEzanQjOqNZ4x126SXzzi2oNSZhZ5axJp1k0iM6jg==, } - "@types/node@20.10.5": + "@types/node@22.7.3": resolution: { - integrity: sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==, + integrity: sha512-qXKfhXXqGTyBskvWEzJZPUxSslAiLaB6JGP1ic/XTH9ctGgzdgYguuLP1C601aRTSDNlLb0jbKqXjZ48GNraSA==, } "@types/normalize-package-data@2.4.4": @@ -2749,10 +2778,10 @@ packages: integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, } - "@typescript-eslint/eslint-plugin@8.7.0": + "@typescript-eslint/eslint-plugin@8.9.0": resolution: { - integrity: sha512-RIHOoznhA3CCfSTFiB6kBGLQtB/sox+pJ6jeFu6FxJvqL8qRxq/FfGO/UhsGgQM9oGdXkV4xUgli+dt26biB6A==, + integrity: sha512-Y1n621OCy4m7/vTXNlCbMVp87zSd7NH0L9cXD8aIpOaNlzeWxIK4+Q19A68gSmTNRZn92UjocVUWDthGxtqHFg==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: @@ -2763,10 +2792,10 @@ packages: typescript: optional: true - "@typescript-eslint/parser@8.7.0": + "@typescript-eslint/parser@8.9.0": resolution: { - integrity: sha512-lN0btVpj2unxHlNYLI//BQ7nzbMJYBVQX5+pbNXvGYazdlgYonMn4AhhHifQ+J4fGRYA/m1DjaQjx+fDetqBOQ==, + integrity: sha512-U+BLn2rqTTHnc4FL3FJjxaXptTxmf9sNftJK62XLz4+GxG3hLHm/SUNaaXP5Y4uTiuYoL5YLy4JBCJe3+t8awQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: @@ -2776,17 +2805,17 @@ packages: typescript: optional: true - "@typescript-eslint/scope-manager@8.7.0": + "@typescript-eslint/scope-manager@8.9.0": resolution: { - integrity: sha512-87rC0k3ZlDOuz82zzXRtQ7Akv3GKhHs0ti4YcbAJtaomllXoSO8hi7Ix3ccEvCd824dy9aIX+j3d2UMAfCtVpg==, + integrity: sha512-bZu9bUud9ym1cabmOYH9S6TnbWRzpklVmwqICeOulTCZ9ue2/pczWzQvt/cGj2r2o1RdKoZbuEMalJJSYw3pHQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@typescript-eslint/type-utils@8.7.0": + "@typescript-eslint/type-utils@8.9.0": resolution: { - integrity: sha512-tl0N0Mj3hMSkEYhLkjREp54OSb/FI6qyCzfiiclvJvOqre6hsZTGSnHtmFLDU8TIM62G7ygEa1bI08lcuRwEnQ==, + integrity: sha512-JD+/pCqlKqAk5961vxCluK+clkppHY07IbV3vett97KOV+8C6l+CPEPwpUuiMwgbOz/qrN3Ke4zzjqbT+ls+1Q==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: @@ -2795,17 +2824,17 @@ packages: typescript: optional: true - "@typescript-eslint/types@8.7.0": + "@typescript-eslint/types@8.9.0": resolution: { - integrity: sha512-LLt4BLHFwSfASHSF2K29SZ+ZCsbQOM+LuarPjRUuHm+Qd09hSe3GCeaQbcCr+Mik+0QFRmep/FyZBO6fJ64U3w==, + integrity: sha512-SjgkvdYyt1FAPhU9c6FiYCXrldwYYlIQLkuc+LfAhCna6ggp96ACncdtlbn8FmnG72tUkXclrDExOpEYf1nfJQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@typescript-eslint/typescript-estree@8.7.0": + "@typescript-eslint/typescript-estree@8.9.0": resolution: { - integrity: sha512-MC8nmcGHsmfAKxwnluTQpNqceniT8SteVwd2voYlmiSWGOtjvGXdPl17dYu2797GVscK30Z04WRM28CrKS9WOg==, + integrity: sha512-9iJYTgKLDG6+iqegehc5+EqE6sqaee7kb8vWpmHZ86EqwDjmlqNNHeqDVqb9duh+BY6WCNHfIGvuVU3Tf9Db0g==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: @@ -2814,28 +2843,22 @@ packages: typescript: optional: true - "@typescript-eslint/utils@8.7.0": + "@typescript-eslint/utils@8.9.0": resolution: { - integrity: sha512-ZbdUdwsl2X/s3CiyAu3gOlfQzpbuG3nTWKPoIvAu1pu5r8viiJvv2NPN2AqArL35NCYtw/lrPPfM4gxrMLNLPw==, + integrity: sha512-PKgMmaSo/Yg/F7kIZvrgrWa1+Vwn036CdNUvYFEkYbPwOH4i8xvkaRlu148W3vtheWK9ckKRIz7PBP5oUlkrvQ==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: eslint: ^8.57.0 || ^9.0.0 - "@typescript-eslint/visitor-keys@8.7.0": + "@typescript-eslint/visitor-keys@8.9.0": resolution: { - integrity: sha512-b1tx0orFCCh/THWPQa2ZwWzvOeyzzp36vkJYOpVg0u8UVOIsfVrnuC9FqAw9gRKn+rG2VmWQ/zDJZzkxUnj/XQ==, + integrity: sha512-Ht4y38ubk4L5/U8xKUBfKNYGmvKvA1CANoxiTRMM+tOLk3lbF3DvzZCxJCRSE+2GdCMSh6zq9VZJc3asc1XuAA==, } engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - "@ungap/structured-clone@1.2.0": - resolution: - { - integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, - } - "@vime/core@5.4.1": resolution: { @@ -2857,47 +2880,18 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn-node@1.8.2: + acorn@8.12.1: resolution: { - integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==, - } - - acorn-walk@7.2.0: - resolution: - { - integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, - } - engines: { node: ">=0.4.0" } - - acorn@7.4.1: - resolution: - { - integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, + integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==, } engines: { node: ">=0.4.0" } hasBin: true - acorn@8.11.3: + agent-base@7.1.1: resolution: { - integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, - } - engines: { node: ">=0.4.0" } - hasBin: true - - acorn@8.12.0: - resolution: - { - integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==, - } - engines: { node: ">=0.4.0" } - hasBin: true - - agent-base@7.1.0: - resolution: - { - integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==, + integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==, } engines: { node: ">= 14" } @@ -2921,10 +2915,10 @@ packages: integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, } - ajv@8.12.0: + ajv@8.17.1: resolution: { - integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, } all-contributors-cli@6.26.1: @@ -2935,13 +2929,6 @@ packages: engines: { node: ">=4" } hasBin: true - amdefine@1.0.1: - resolution: - { - integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==, - } - engines: { node: ">=0.4.2" } - ansi-escapes@4.3.2: resolution: { @@ -2949,13 +2936,6 @@ packages: } engines: { node: ">=8" } - ansi-escapes@6.2.0: - resolution: - { - integrity: sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw==, - } - engines: { node: ">=14.16" } - ansi-escapes@7.0.0: resolution: { @@ -2970,10 +2950,10 @@ packages: } engines: { node: ">=8" } - ansi-regex@6.0.1: + ansi-regex@6.1.0: resolution: { - integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, + integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, } engines: { node: ">=12" } @@ -3029,17 +3009,12 @@ packages: integrity: sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==, } - array-buffer-byte-length@1.0.0: + array-buffer-byte-length@1.0.1: resolution: { - integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, - } - - array-from@2.1.1: - resolution: - { - integrity: sha512-GQTc6Uupx1FCavi5mPzBvVT7nEOeWMmUA9P95wpfpW1XwMSKs+KaymD5C2Up7KAUKg/mYwbsUYzdZWcoajlNZg==, + integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, } + engines: { node: ">= 0.4" } array-ify@1.0.0: resolution: @@ -3054,26 +3029,13 @@ packages: } engines: { node: ">=8" } - arraybuffer.prototype.slice@1.0.2: + arraybuffer.prototype.slice@1.0.3: resolution: { - integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==, + integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, } engines: { node: ">= 0.4" } - ast-transform@0.0.0: - resolution: - { - integrity: sha512-e/JfLiSoakfmL4wmTGPjv0HpTICVmxwXgYOB8x+mzozHL8v+dSfCbrJ8J8hJ0YBP0XcYu1aLZ6b/3TnxNK3P2A==, - } - - ast-types@0.7.8: - resolution: - { - integrity: sha512-RIOpVnVlltB6PcBJ5BMLx+H+6JJ/zjDGU0t7f0L6c2M1dqcK92VQopLBlPQ9R80AVXelfqYgjcPLtHtDbNFg0Q==, - } - engines: { node: ">= 0.6" } - astral-regex@2.0.0: resolution: { @@ -3081,10 +3043,10 @@ packages: } engines: { node: ">=8" } - async@3.2.5: + async@3.2.6: resolution: { - integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==, + integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==, } at-least-node@1.0.0: @@ -3094,43 +3056,43 @@ packages: } engines: { node: ">= 4.0.0" } - autoprefixer@10.4.19: + autoprefixer@10.4.20: resolution: { - integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==, + integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==, } engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 - available-typed-arrays@1.0.5: + available-typed-arrays@1.0.7: resolution: { - integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, + integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, } engines: { node: ">= 0.4" } - babel-plugin-polyfill-corejs2@0.4.7: + babel-plugin-polyfill-corejs2@0.4.11: resolution: { - integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==, + integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.8.7: + babel-plugin-polyfill-corejs3@0.10.6: resolution: { - integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==, + integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.5.4: + babel-plugin-polyfill-regenerator@0.6.2: resolution: { - integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==, + integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==, } peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -3165,10 +3127,10 @@ packages: integrity: sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==, } - binary-extensions@2.2.0: + binary-extensions@2.3.0: resolution: { - integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, + integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, } engines: { node: ">=8" } @@ -3202,13 +3164,6 @@ packages: integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, } - braces@3.0.2: - resolution: - { - integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, - } - engines: { node: ">=8" } - braces@3.0.3: resolution: { @@ -3216,62 +3171,20 @@ packages: } engines: { node: ">=8" } - brfs@2.0.2: - resolution: - { - integrity: sha512-IrFjVtwu4eTJZyu8w/V2gxU7iLTtcHih67sgEdzrhjLBMHp2uYefUBfdM4k2UvcuWMgV7PQDZHSLeNWnLFKWVQ==, - } - hasBin: true - brotli@1.3.3: resolution: { integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==, } - browser-resolve@1.11.3: + browserslist@4.24.0: resolution: { - integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==, - } - - browserify-optional@1.0.1: - resolution: - { - integrity: sha512-VrhjbZ+Ba5mDiSYEuPelekQMfTbhcA2DhLk2VQWqdcCROWeFqlTcXZ7yfRkXCIl8E+g4gINJYJiRB7WEtfomAQ==, - } - - browserslist@4.23.0: - resolution: - { - integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==, + integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==, } engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true - browserslist@4.23.1: - resolution: - { - integrity: sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } - hasBin: true - - browserslist@4.23.3: - resolution: - { - integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } - hasBin: true - - buffer-equal@0.0.1: - resolution: - { - integrity: sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==, - } - engines: { node: ">=0.4.0" } - buffer-from@1.1.2: resolution: { @@ -3284,13 +3197,6 @@ packages: integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, } - builtin-modules@3.3.0: - resolution: - { - integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, - } - engines: { node: ">=6" } - cacheable-lookup@7.0.0: resolution: { @@ -3298,12 +3204,12 @@ packages: } engines: { node: ">=14.16" } - cacheable-request@10.2.14: + cacheable-request@12.0.1: resolution: { - integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==, + integrity: sha512-Yo9wGIQUaAfIbk+qY0X4cDQgCosecfBe3V9NSyeY4qPC2SAkbCS4Xj79VP8WOzitpJUZKc/wsRCYF5ariDIwkg==, } - engines: { node: ">=14.16" } + engines: { node: ">=18" } cachedir@2.3.0: resolution: @@ -3312,11 +3218,12 @@ packages: } engines: { node: ">=6" } - call-bind@1.0.5: + call-bind@1.0.7: resolution: { - integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==, + integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, } + engines: { node: ">= 0.4" } callsites@3.1.0: resolution: @@ -3345,22 +3252,10 @@ packages: integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==, } - caniuse-lite@1.0.30001612: + caniuse-lite@1.0.30001664: resolution: { - integrity: sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==, - } - - caniuse-lite@1.0.30001639: - resolution: - { - integrity: sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg==, - } - - caniuse-lite@1.0.30001663: - resolution: - { - integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==, + integrity: sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==, } chalk@2.4.2: @@ -3397,16 +3292,16 @@ packages: integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, } - choices.js@10.2.0: + choices.js@11.0.2: resolution: { - integrity: sha512-8PKy6wq7BMjNwDTZwr3+Zry6G2+opJaAJDDA/j3yxvqSCnvkKe7ZIFfIyOhoc7htIWFhsfzF9tJpGUATcpUtPg==, + integrity: sha512-jGmvoZBQwfxGL7qOeadg/iprsK/XQwXvLnN0ZZwQIDtxtPjP5z7vgZCwr/zdrGAVAnC4+uomPD4+Pl/N/6XSqA==, } - chokidar@3.5.3: + chokidar@3.6.0: resolution: { - integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, + integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==, } engines: { node: ">= 8.10.0" } @@ -3460,10 +3355,10 @@ packages: } engines: { node: ">=6" } - cli-table3@0.6.3: + cli-table3@0.6.5: resolution: { - integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==, + integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==, } engines: { node: 10.* || >= 12.* } @@ -3577,10 +3472,10 @@ packages: } engines: { node: ">= 10" } - commitizen@4.3.0: + commitizen@4.3.1: resolution: { - integrity: sha512-H0iNtClNEhT0fotHvGV3E9tDejDeS04sN1veIebsKYGMuGscFaswRoYJKmT3eW85eIJAs0F28bG2+a/9wCOfPw==, + integrity: sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==, } engines: { node: ">= 12" } hasBin: true @@ -3604,13 +3499,6 @@ packages: integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, } - concat-stream@1.6.2: - resolution: - { - integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==, - } - engines: { "0": node >= 0.8 } - config-chain@1.1.13: resolution: { @@ -3682,28 +3570,22 @@ packages: } engines: { node: ">=12" } - convert-source-map@1.9.0: - resolution: - { - integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, - } - convert-source-map@2.0.0: resolution: { integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, } - core-js-compat@3.35.0: + core-js-compat@3.38.1: resolution: { - integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==, + integrity: sha512-JRH6gfXxGmrzF3tZ57lFx97YARxCXPaMzPo6jELZhv88pBH5VXpQ+y0znKGlFnzuaihqhLbefxSJxWJMPtfDzw==, } - core-js@3.35.0: + core-js@3.38.1: resolution: { - integrity: sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==, + integrity: sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==, } core-util-is@1.0.3: @@ -3723,18 +3605,6 @@ packages: cosmiconfig: ">=8.2" typescript: ">=4" - cosmiconfig@8.3.6: - resolution: - { - integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==, - } - engines: { node: ">=14" } - peerDependencies: - typescript: ">=4.9.5" - peerDependenciesMeta: - typescript: - optional: true - cosmiconfig@9.0.0: resolution: { @@ -3806,10 +3676,10 @@ packages: peerDependencies: postcss: ^8.0.9 - css-functions-list@3.2.2: + css-functions-list@3.2.3: resolution: { - integrity: sha512-c+N0v6wbKVxTu5gOBBFkr9BEdBWaqqjQeiJ8QvSRIJOf+UxlJh930m8e6/WNeODIK0mYLFkoONrnj16i2EcvfQ==, + integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==, } engines: { node: ">=12 || >=16" } @@ -3851,6 +3721,13 @@ packages: } engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } + css-tree@3.0.0: + resolution: + { + integrity: sha512-o88DVQ6GzsABn1+6+zo2ct801dBO5OASVyxbbvA2W20ue2puSh/VOuqUj90eUeMSX/xqGqBmOKiRQN7tJOuBXw==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } + css-what@6.1.0: resolution: { @@ -3956,10 +3833,10 @@ packages: engines: { node: ">=12" } hasBin: true - d3-geo@3.1.0: + d3-geo@3.1.1: resolution: { - integrity: sha512-JEo5HxXDdDYXCaWdwLRt79y7giK8SbhZJbFWXqbRTolCHFI5jRqteLzCsq51NKbUoX0PjBVSohxrx+NoOUujYA==, + integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==, } engines: { node: ">=12" } @@ -4000,12 +3877,6 @@ packages: peerDependencies: d3-selection: 2 - 3 - d@1.0.1: - resolution: - { - integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==, - } - dargs@8.1.0: resolution: { @@ -4013,28 +3884,31 @@ packages: } engines: { node: ">=12" } - dash-ast@2.0.1: + data-view-buffer@1.0.1: resolution: { - integrity: sha512-5TXltWJGc+RdnabUGzhRae1TRq6m4gr+3K2wQX0is5/F2yS6MJXJvLyI3ErAnsAXuJoGqvfVD5icRgim07DrxQ==, + integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==, } + engines: { node: ">= 0.4" } - debug@4.3.4: + data-view-byte-length@1.0.1: resolution: { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==, } - engines: { node: ">=6.0" } - peerDependencies: - supports-color: "*" - peerDependenciesMeta: - supports-color: - optional: true + engines: { node: ">= 0.4" } - debug@4.3.6: + data-view-byte-offset@1.0.0: resolution: { - integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==, + integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==, + } + engines: { node: ">= 0.4" } + + debug@4.3.7: + resolution: + { + integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, } engines: { node: ">=6.0" } peerDependencies: @@ -4103,10 +3977,10 @@ packages: } engines: { node: ">=10" } - define-data-property@1.1.1: + define-data-property@1.1.4: resolution: { - integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==, + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, } engines: { node: ">= 0.4" } @@ -4156,13 +4030,6 @@ packages: integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, } - doctrine@3.0.0: - resolution: - { - integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, - } - engines: { node: ">=6.0.0" } - dom-serializer@2.0.0: resolution: { @@ -4207,36 +4074,24 @@ packages: integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, } - ejs@3.1.9: + ejs@3.1.10: resolution: { - integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==, + integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==, } engines: { node: ">=0.10.0" } hasBin: true - electron-to-chromium@1.4.689: + electron-to-chromium@1.5.29: resolution: { - integrity: sha512-GatzRKnGPS1go29ep25reM94xxd1Wj8ritU0yRhCJ/tr1Bg8gKnm6R9O/yPOhGQBoLMZ9ezfrpghNaTw97C/PQ==, + integrity: sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==, } - electron-to-chromium@1.4.815: + emoji-regex@10.4.0: resolution: { - integrity: sha512-OvpTT2ItpOXJL7IGcYakRjHCt8L5GrrN/wHCQsRB4PQa1X9fe+X9oen245mIId7s14xvArCGSTIq644yPUKKLg==, - } - - electron-to-chromium@1.5.28: - resolution: - { - integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==, - } - - emoji-regex@10.3.0: - resolution: - { - integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==, + integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==, } emoji-regex@8.0.0: @@ -4264,10 +4119,10 @@ packages: } engines: { node: ">=0.12" } - env-ci@11.0.0: + env-ci@11.1.0: resolution: { - integrity: sha512-apikxMgkipkgTvMdRT9MNqWx5VLOci79F4VBd7Op/7OPjjoanjdAvn6fglMCCEf/1bAh8eOiuEVCUs4V3qP3nQ==, + integrity: sha512-Z8dnwSDbV1XYM9SBF2J0GcNVvmfmfh3a49qddGIROhBoVro6MZVTji15z/sJbQ2ko2ei8n988EU1wzoLU/tF+g==, } engines: { node: ^18.17 || >=20.6.1 } @@ -4291,17 +4146,38 @@ packages: integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, } - es-abstract@1.22.3: + es-abstract@1.23.3: resolution: { - integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==, + integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==, } engines: { node: ">= 0.4" } - es-set-tostringtag@2.0.2: + es-define-property@1.0.0: resolution: { - integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==, + integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, + } + engines: { node: ">= 0.4" } + + es-errors@1.3.0: + resolution: + { + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, + } + engines: { node: ">= 0.4" } + + es-object-atoms@1.0.0: + resolution: + { + integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==, + } + engines: { node: ">= 0.4" } + + es-set-tostringtag@2.0.3: + resolution: + { + integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==, } engines: { node: ">= 0.4" } @@ -4312,38 +4188,6 @@ packages: } engines: { node: ">= 0.4" } - es5-ext@0.10.62: - resolution: - { - integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==, - } - engines: { node: ">=0.10" } - - es6-iterator@2.0.3: - resolution: - { - integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==, - } - - es6-map@0.1.5: - resolution: - { - integrity: sha512-mz3UqCh0uPCIqsw1SSAkB/p0rOzF/M0V++vyN7JqlPtSW/VsYgQBvVvqMLmfBuyMzTpLnNqi6JmcSizs4jy19A==, - } - - es6-set@0.1.6: - resolution: - { - integrity: sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==, - } - engines: { node: ">=0.12" } - - es6-symbol@3.1.3: - resolution: - { - integrity: sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==, - } - esbuild@0.21.5: resolution: { @@ -4352,17 +4196,10 @@ packages: engines: { node: ">=12" } hasBin: true - escalade@3.1.1: + escalade@3.2.0: resolution: { - integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, - } - engines: { node: ">=6" } - - escalade@3.1.2: - resolution: - { - integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, } engines: { node: ">=6" } @@ -4387,22 +4224,6 @@ packages: } engines: { node: ">=12" } - escodegen@1.14.3: - resolution: - { - integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==, - } - engines: { node: ">=4.0" } - hasBin: true - - escodegen@1.2.0: - resolution: - { - integrity: sha512-yLy3Cc+zAC0WSmoT2fig3J87TpQ8UaZGx8ahCAs9FL8qNbyV7CVyPKS74DG4bsHiL5ew9sxdYx131OkBQMFnvA==, - } - engines: { node: ">=0.4.0" } - hasBin: true - eslint-config-prettier@9.1.0: resolution: { @@ -4429,12 +4250,12 @@ packages: eslint-config-prettier: optional: true - eslint-scope@7.2.2: + eslint-scope@8.1.0: resolution: { - integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, + integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } eslint-visitor-keys@3.4.3: resolution: @@ -4443,41 +4264,51 @@ packages: } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - eslint@8.57.1: + eslint-visitor-keys@4.0.0: resolution: { - integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==, + integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + eslint-visitor-keys@4.1.0: + resolution: + { + integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + + eslint@9.12.0: + resolution: + { + integrity: sha512-UVIOlTEWxwIopRL1wgSQYdnVDcEvs2wyaO6DGo5mXqe3r16IoCNWkR29iHhyaP4cICWjbgbmFUGAhh0GJRuGZw==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } hasBin: true + peerDependencies: + jiti: "*" + peerDependenciesMeta: + jiti: + optional: true - espree@9.6.1: + espree@10.1.0: resolution: { - integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, + integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - esprima@1.0.4: + espree@10.2.0: resolution: { - integrity: sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==, + integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==, } - engines: { node: ">=0.4.0" } - hasBin: true + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } - esprima@4.0.1: + esquery@1.6.0: resolution: { - integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, - } - engines: { node: ">=4" } - hasBin: true - - esquery@1.5.0: - resolution: - { - integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, + integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==, } engines: { node: ">=0.10" } @@ -4488,20 +4319,6 @@ packages: } engines: { node: ">=4.0" } - estraverse@1.5.1: - resolution: - { - integrity: sha512-FpCjJDfmo3vsc/1zKSeqR5k42tcIhxFIlvq+h9j0fO2q/h2uLKyweq7rYJ+0CoVvrGQOxIS5wyBrW/+vF58BUQ==, - } - engines: { node: ">=0.4.0" } - - estraverse@4.3.0: - resolution: - { - integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, - } - engines: { node: ">=4.0" } - estraverse@5.3.0: resolution: { @@ -4509,12 +4326,6 @@ packages: } engines: { node: ">=4.0" } - estree-is-function@1.0.0: - resolution: - { - integrity: sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA==, - } - estree-walker@1.0.1: resolution: { @@ -4527,13 +4338,6 @@ packages: integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, } - esutils@1.0.0: - resolution: - { - integrity: sha512-x/iYH53X3quDwfHRz4y8rn4XcEwwCJeWsul9pF1zldMbGtgOtMNBEOuYWwB1EQlK2LRa1fev3YAgym/RElp5Cg==, - } - engines: { node: ">=0.10.0" } - esutils@2.0.3: resolution: { @@ -4541,12 +4345,6 @@ packages: } engines: { node: ">=0.10.0" } - event-emitter@0.3.5: - resolution: - { - integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==, - } - eventemitter3@5.0.1: resolution: { @@ -4567,10 +4365,10 @@ packages: } engines: { node: ">=16.17" } - execa@9.3.0: + execa@9.4.0: resolution: { - integrity: sha512-l6JFbqnHEadBoVAVpN5dl2yCyfX28WoBAGaoQcNmLLSedOxTxcn2Qa83s8I/PA5i56vWru2OHOtrwF7Om2vqlg==, + integrity: sha512-yKHlle2YGxZE842MERVIplWwNH5VYmqqcPFgtnlU//K8gxuFFXu0pwd/CrfXTumFpeEiufsP7+opT/bPJa1yVw==, } engines: { node: ^18.19.0 || >=20.5.0 } @@ -4581,12 +4379,6 @@ packages: } engines: { node: ">=0.10.0" } - ext@1.7.0: - resolution: - { - integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==, - } - external-editor@3.1.0: resolution: { @@ -4625,6 +4417,12 @@ packages: integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, } + fast-uri@3.0.2: + resolution: + { + integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==, + } + fastest-levenshtein@1.0.16: resolution: { @@ -4632,16 +4430,16 @@ packages: } engines: { node: ">= 4.9.1" } - fastq@1.16.0: + fastq@1.17.1: resolution: { - integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==, + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, } - fdir@6.2.0: + fdir@6.3.0: resolution: { - integrity: sha512-9XaWcDl0riOX5j2kYfy0kKdg7skw3IY6kA4LFT8Tk2yF9UdrADUy8D6AJuBLtf7ISm/MksumwAHE3WVbMRyCLw==, + integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==, } peerDependencies: picomatch: ^3 || ^4 @@ -4670,17 +4468,17 @@ packages: } engines: { node: ">=18" } - file-entry-cache@6.0.1: + file-entry-cache@8.0.0: resolution: { - integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==, } - engines: { node: ^10.12.0 || >=12.0.0 } + engines: { node: ">=16.0.0" } - file-entry-cache@9.0.0: + file-entry-cache@9.1.0: resolution: { - integrity: sha512-6MgEugi8p2tiUhqO7GnPsmbCCzj0YRCwwaTbpGRyKZesjRSzkqkAE9fPp7V2yMs5hwfgbQLgdvSSkGNg1s5Uvw==, + integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==, } engines: { node: ">=18" } @@ -4690,13 +4488,6 @@ packages: integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, } - fill-range@7.0.1: - resolution: - { - integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, - } - engines: { node: ">=8" } - fill-range@7.1.1: resolution: { @@ -4765,12 +4556,12 @@ packages: } engines: { node: ">= 8" } - flat-cache@3.2.0: + flat-cache@4.0.1: resolution: { - integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==, + integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==, } - engines: { node: ^10.12.0 || >=12.0.0 } + engines: { node: ">=16" } flat-cache@5.0.0: resolution: @@ -4797,10 +4588,10 @@ packages: integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, } - foreground-child@3.1.1: + foreground-child@3.3.0: resolution: { - integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==, + integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, } engines: { node: ">=14" } @@ -4870,10 +4661,10 @@ packages: integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, } - function-timeout@1.0.1: + function-timeout@1.0.2: resolution: { - integrity: sha512-6yPMImFFuaMPNaTMTBuolA8EanHJWF5Vju0NHpObRURT105J6x1Mf2a7J4P7Sqk2xDxv24N5L0RatEhTBhNmdA==, + integrity: sha512-939eZS4gJ3htTHAldmyyuzlrD58P03fHG49v2JfFXbV6OhvZKRC9j2yAtdHw/zrp2zXHuv05zMIy40F0ge7spA==, } engines: { node: ">=18" } @@ -4890,10 +4681,10 @@ packages: integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, } - fuse.js@6.6.2: + fuse.js@7.0.0: resolution: { - integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==, + integrity: sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==, } engines: { node: ">=10" } @@ -4904,12 +4695,6 @@ packages: } engines: { node: ">=6.9.0" } - get-assigned-identifiers@1.2.0: - resolution: - { - integrity: sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==, - } - get-caller-file@2.0.5: resolution: { @@ -4924,11 +4709,12 @@ packages: } engines: { node: ">=18" } - get-intrinsic@1.2.2: + get-intrinsic@1.2.4: resolution: { - integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, + integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, } + engines: { node: ">= 0.4" } get-own-enumerable-property-symbols@3.0.2: resolution: @@ -4964,17 +4750,17 @@ packages: } engines: { node: ">=18" } - get-symbol-description@1.0.0: + get-symbol-description@1.0.2: resolution: { - integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, } engines: { node: ">= 0.4" } - git-log-parser@1.2.0: + git-log-parser@1.2.1: resolution: { - integrity: sha512-rnCVNfkTL8tdNryFuaY0fYiBWEBcgF748O6ZI61rslBvr2o7U65c2/6npCRqH40vuAhtgtDiqLTJjBVdrejCzA==, + integrity: sha512-PI+sPDvHXNPl5WNOErAK05s3j0lgwUzMN6o8cyQrDaKfT3qd7TmNJKeXX+SknI5I0QhG5fVPAEwSY4tRGDtYoQ==, } git-raw-commits@4.0.0: @@ -4999,12 +4785,11 @@ packages: } engines: { node: ">=10.13.0" } - glob@10.3.10: + glob@10.4.5: resolution: { - integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, + integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==, } - engines: { node: ">=16 || 14 >=14.17" } hasBin: true glob@7.2.3: @@ -5012,6 +4797,7 @@ packages: { integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, } + deprecated: Glob versions prior to v9 are no longer supported global-directory@4.0.1: resolution: @@ -5020,13 +4806,6 @@ packages: } engines: { node: ">=18" } - global-dirs@0.1.1: - resolution: - { - integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==, - } - engines: { node: ">=4" } - global-modules@1.0.0: resolution: { @@ -5062,17 +4841,24 @@ packages: } engines: { node: ">=4" } - globals@13.24.0: + globals@14.0.0: resolution: { - integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==, + integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==, } - engines: { node: ">=8" } + engines: { node: ">=18" } - globalthis@1.0.3: + globals@15.11.0: resolution: { - integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + integrity: sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==, + } + engines: { node: ">=18" } + + globalthis@1.0.4: + resolution: + { + integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==, } engines: { node: ">= 0.4" } @@ -5083,10 +4869,10 @@ packages: } engines: { node: ">=10" } - globby@14.0.0: + globby@14.0.2: resolution: { - integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==, + integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==, } engines: { node: ">=18" } @@ -5102,10 +4888,10 @@ packages: integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, } - got@14.2.0: + got@14.4.2: resolution: { - integrity: sha512-dBq2KkHcQl3AwPoIWsLsQScCPpUgRulz1qZVthjPYKYOPmYfBnekR3vxecjZbm91Vc3JUGnV9mqFX7B+Fe2quw==, + integrity: sha512-+Te/qEZ6hr7i+f0FNgXx/6WQteSM/QqueGvxeYQQFm0GDfoxLVJ/oiwUKYMTeioColWUTdewZ06hmrBjw6F7tw==, } engines: { node: ">=20" } @@ -5155,16 +4941,16 @@ packages: } engines: { node: ">=8" } - has-property-descriptors@1.0.1: + has-property-descriptors@1.0.2: resolution: { - integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==, + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, } - has-proto@1.0.1: + has-proto@1.0.3: resolution: { - integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, + integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==, } engines: { node: ">= 0.4" } @@ -5175,24 +4961,17 @@ packages: } engines: { node: ">= 0.4" } - has-tostringtag@1.0.0: + has-tostringtag@1.0.2: resolution: { - integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, } engines: { node: ">= 0.4" } - has@1.0.4: + hasown@2.0.2: resolution: { - integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==, - } - engines: { node: ">= 0.4.0" } - - hasown@2.0.0: - resolution: - { - integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, } engines: { node: ">= 0.4" } @@ -5216,10 +4995,10 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - hosted-git-info@7.0.1: + hosted-git-info@7.0.2: resolution: { - integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==, + integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==, } engines: { node: ^16.14.0 || >=18.0.0 } @@ -5250,10 +5029,10 @@ packages: integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==, } - http-proxy-agent@7.0.0: + http-proxy-agent@7.0.2: resolution: { - integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==, + integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==, } engines: { node: ">= 14" } @@ -5264,10 +5043,10 @@ packages: } engines: { node: ">=10.19.0" } - https-proxy-agent@7.0.2: + https-proxy-agent@7.0.5: resolution: { - integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==, + integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==, } engines: { node: ">= 14" } @@ -5285,10 +5064,10 @@ packages: } engines: { node: ">=16.17.0" } - human-signals@7.0.0: + human-signals@8.0.0: resolution: { - integrity: sha512-74kytxOUSvNbjrT9KisAbaTZ/eJwD/LrbM/kh5j0IhPuJzwuA19dWvniFGwBzN9rVjg+O/e+F310PjObDXS+9Q==, + integrity: sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==, } engines: { node: ">=18.18.0" } @@ -5326,13 +5105,6 @@ packages: integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, } - ignore@5.3.1: - resolution: - { - integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, - } - engines: { node: ">= 4" } - ignore@5.3.2: resolution: { @@ -5340,6 +5112,13 @@ packages: } engines: { node: ">= 4" } + ignore@6.0.2: + resolution: + { + integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==, + } + engines: { node: ">= 4" } + import-fresh@3.3.0: resolution: { @@ -5347,17 +5126,17 @@ packages: } engines: { node: ">=6" } - import-from-esm@1.3.3: + import-from-esm@1.3.4: resolution: { - integrity: sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==, + integrity: sha512-7EyUlPFC0HOlBDpUFGfYstsU7XHxZJKAAMzCT8wZ0hMW7b+hG51LIKTDcsgtz8Pu6YC0HqRVbX+rVUtsGMUKvg==, } engines: { node: ">=16.20" } - import-meta-resolve@4.0.0: + import-meta-resolve@4.1.0: resolution: { - integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==, + integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==, } imurmurhash@0.1.4: @@ -5393,6 +5172,7 @@ packages: { integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, } + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.4: resolution: @@ -5427,10 +5207,10 @@ packages: } engines: { node: ">=12.0.0" } - internal-slot@1.0.6: + internal-slot@1.0.7: resolution: { - integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, + integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, } engines: { node: ">= 0.4" } @@ -5455,11 +5235,12 @@ packages: } engines: { node: ">= 0.4" } - is-array-buffer@3.0.2: + is-array-buffer@3.0.4: resolution: { - integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, + integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, } + engines: { node: ">= 0.4" } is-arrayish@0.2.1: resolution: @@ -5487,13 +5268,6 @@ packages: } engines: { node: ">= 0.4" } - is-builtin-module@3.2.1: - resolution: - { - integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==, - } - engines: { node: ">=6" } - is-callable@1.2.7: resolution: { @@ -5508,11 +5282,19 @@ packages: } hasBin: true - is-core-module@2.13.1: + is-core-module@2.15.1: resolution: { - integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, + integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==, } + engines: { node: ">= 0.4" } + + is-data-view@1.0.1: + resolution: + { + integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==, + } + engines: { node: ">= 0.4" } is-date-object@1.0.5: resolution: @@ -5569,10 +5351,10 @@ packages: integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, } - is-negative-zero@2.0.2: + is-negative-zero@2.0.3: resolution: { - integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, + integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==, } engines: { node: ">= 0.4" } @@ -5604,13 +5386,6 @@ packages: } engines: { node: ">=8" } - is-path-inside@3.0.3: - resolution: - { - integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, - } - engines: { node: ">=8" } - is-plain-obj@4.1.0: resolution: { @@ -5639,11 +5414,12 @@ packages: } engines: { node: ">=0.10.0" } - is-shared-array-buffer@1.0.2: + is-shared-array-buffer@1.0.3: resolution: { - integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, + integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==, } + engines: { node: ">= 0.4" } is-stream@2.0.1: resolution: @@ -5687,10 +5463,10 @@ packages: } engines: { node: ">=8" } - is-typed-array@1.1.12: + is-typed-array@1.1.13: resolution: { - integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, + integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, } engines: { node: ">= 0.4" } @@ -5701,10 +5477,10 @@ packages: } engines: { node: ">=10" } - is-unicode-supported@2.0.0: + is-unicode-supported@2.1.0: resolution: { - integrity: sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==, + integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==, } engines: { node: ">=18" } @@ -5745,24 +5521,23 @@ packages: integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, } - issue-parser@7.0.0: + issue-parser@7.0.1: resolution: { - integrity: sha512-jgAw78HO3gs9UrKqJNQvfDj9Ouy8Mhu40fbEJ8yXff4MW8+/Fcn9iFjyWUQ6SKbX8ipPk3X5A3AyfYHRu6uVLw==, + integrity: sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==, } engines: { node: ^18.17 || >=20.6.1 } - jackspeak@2.3.6: + jackspeak@3.4.3: resolution: { - integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==, } - engines: { node: ">=14" } - jake@10.8.7: + jake@10.9.2: resolution: { - integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==, + integrity: sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA==, } engines: { node: ">=10" } hasBin: true @@ -5774,10 +5549,10 @@ packages: } engines: { node: ">= 0.6.0" } - jiti@1.21.0: + jiti@1.21.6: resolution: { - integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, + integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==, } hasBin: true @@ -5926,13 +5701,6 @@ packages: } engines: { node: ">=6" } - levn@0.3.0: - resolution: - { - integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, - } - engines: { node: ">= 0.8.0" } - levn@0.4.1: resolution: { @@ -5987,10 +5755,10 @@ packages: integrity: sha512-pwT/HwoxqI9FggTrYVarkBKFN9MlTUpLrDHubTmW4SrkL3kkqW5gxwbxMMUnbbRHBC0WTZnYHcjDSCM559VyfA==, } - lit@3.2.0: + lit@3.2.1: resolution: { - integrity: sha512-s6tI33Lf6VpDu7u4YqsSX78D28bYQulM+VAzsGch4fx2H0eLZnJsUBsPWmGYSGoKDNbjtRv02rio1o+UdPVwvw==, + integrity: sha512-1BBa1E/z0O9ye5fZprPtdqnc0BFzxIxTTOO/tQFmyC/hj1O3jL4TfmLBw0WEwjAokdLwpclkvGgDJwTIh0/22w==, } load-json-file@4.0.0: @@ -6182,12 +5950,11 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - lru-cache@10.1.0: + lru-cache@10.4.3: resolution: { - integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==, + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, } - engines: { node: 14 || >=16.14 } lru-cache@5.1.1: resolution: @@ -6195,33 +5962,20 @@ packages: integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, } - lru-cache@6.0.0: - resolution: - { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, - } - engines: { node: ">=10" } - - magic-string@0.25.1: - resolution: - { - integrity: sha512-sCuTz6pYom8Rlt4ISPFn6wuFodbKMIHUMv4Qko9P17dpxb7s52KJTmRuZZqHdGmLCK9AOcDare039nRIcfdkEg==, - } - magic-string@0.25.9: resolution: { integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==, } - marked-terminal@7.0.0: + marked-terminal@7.1.0: resolution: { - integrity: sha512-sNEx8nn9Ktcm6pL0TnRz8tnXq/mSS0Q1FRSwJOAqw4lAB4l49UeDf85Gm1n9RPFm5qurCPjwi1StAQT2XExhZw==, + integrity: sha512-+pvwa14KZL74MVXjYdPR3nSInhGhNvPce/3mqLVZT2oUvt654sL1XImFuLZ1pkA866IYZ3ikDTOFUIC7XzpZZg==, } engines: { node: ">=16.0.0" } peerDependencies: - marked: ">=1 <13" + marked: ">=1 <14" marked@12.0.2: resolution: @@ -6231,10 +5985,10 @@ packages: engines: { node: ">= 18" } hasBin: true - marked@13.0.3: + marked@14.1.3: resolution: { - integrity: sha512-rqRix3/TWzE9rIoFGIn8JmsVfhiuC8VIQ8IdX5TfzmeBucdY05/0UlzKaw0eVtpcN/OdVFpBk7CjKGo9iHJ/zA==, + integrity: sha512-ZibJqTULGlt9g5k4VMARAktMAjXoVnnr+Y3aCqW1oDftcV4BA3UmrBifzXoZyenHRk75csiPu9iwsTj4VNBT0g==, } engines: { node: ">= 18" } hasBin: true @@ -6257,6 +6011,12 @@ packages: integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==, } + mdn-data@2.10.0: + resolution: + { + integrity: sha512-qq7C3EtK3yJXMwz1zAab65pjl+UhohqMOctTgcqjLOWABqmwj+me02LSsCuEUxnst9X1lCBpoE0WArGKgdGDzw==, + } + meow@12.1.1: resolution: { @@ -6271,12 +6031,6 @@ packages: } engines: { node: ">=18" } - merge-source-map@1.0.4: - resolution: - { - integrity: sha512-PGSmS0kfnTnMJCzJ16BLLCEe6oeYCamKFFdQKshi4BmM6FUwipjVOcBFGxqtQtirtAG4iZvHlqST9CpZKqlRjA==, - } - merge-stream@2.0.0: resolution: { @@ -6296,20 +6050,6 @@ packages: integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==, } - micromatch@4.0.5: - resolution: - { - integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, - } - engines: { node: ">=8.6" } - - micromatch@4.0.7: - resolution: - { - integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==, - } - engines: { node: ">=8.6" } - micromatch@4.0.8: resolution: { @@ -6317,10 +6057,10 @@ packages: } engines: { node: ">=8.6" } - mime@4.0.1: + mime@4.0.4: resolution: { - integrity: sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==, + integrity: sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==, } engines: { node: ">=16" } hasBin: true @@ -6380,10 +6120,10 @@ packages: } engines: { node: ">=10" } - minimatch@9.0.4: + minimatch@9.0.5: resolution: { - integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==, + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, } engines: { node: ">=16 || 14 >=14.17" } @@ -6399,10 +6139,10 @@ packages: integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, } - minipass@7.0.4: + minipass@7.1.2: resolution: { - integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, } engines: { node: ">=16 || 14 >=14.17" } @@ -6412,10 +6152,10 @@ packages: integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==, } - ms@2.1.2: + ms@2.1.3: resolution: { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, } mute-stream@0.0.8: @@ -6456,12 +6196,6 @@ packages: integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==, } - next-tick@1.1.0: - resolution: - { - integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==, - } - node-emoji@2.1.3: resolution: { @@ -6481,22 +6215,16 @@ packages: encoding: optional: true - node-releases@2.0.14: - resolution: - { - integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, - } - node-releases@2.0.18: resolution: { integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==, } - normalize-package-data@6.0.0: + normalize-package-data@6.0.2: resolution: { - integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==, + integrity: sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==, } engines: { node: ^16.14.0 || >=18.0.0 } @@ -6514,10 +6242,10 @@ packages: } engines: { node: ">=0.10.0" } - normalize-url@8.0.0: + normalize-url@8.0.1: resolution: { - integrity: sha512-uVFpKhj5MheNBJRTiMZ9pE/7hD1QTeEvugSJW/OmLzAp78PB5O6adfMNTvmfKhXBkvCzC+rqifWcVYpGFwTjnw==, + integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==, } engines: { node: ">=14.16" } @@ -6528,17 +6256,24 @@ packages: } engines: { node: ">=8" } - npm-run-path@5.2.0: + npm-run-path@5.3.0: resolution: { - integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==, + integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - npm@10.5.2: + npm-run-path@6.0.0: resolution: { - integrity: sha512-cHVG7QEJwJdZyOrK0dKX5uf3R5Fd0E8AcmSES1jLtO52UT1enUKZ96Onw/xwq4CbrTZEnDuu2Vf9kCQh/Sd12w==, + integrity: sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==, + } + engines: { node: ">=18" } + + npm@10.8.3: + resolution: + { + integrity: sha512-0IQlyAYvVtQ7uOhDFYZCGK8kkut2nh8cpAdA9E6FvRSJaTgtZRZgNjlC5ZCct//L73ygrpY93CxXpRJDtNqPVg==, } engines: { node: ^18.17.0 || >=20.5.0 } hasBin: true @@ -6559,8 +6294,6 @@ packages: - chalk - ci-info - cli-columns - - cli-table3 - - columnify - fastest-levenshtein - fs-minipass - glob @@ -6596,7 +6329,6 @@ packages: - npm-profile - npm-registry-fetch - npm-user-validate - - npmlog - p-map - pacote - parse-conflict-json @@ -6635,16 +6367,17 @@ packages: } engines: { node: ">= 6" } - object-inspect@1.13.1: + object-inspect@1.13.2: resolution: { - integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, + integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==, } + engines: { node: ">= 0.4" } - object-is@1.1.5: + object-is@1.1.6: resolution: { - integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==, + integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, } engines: { node: ">= 0.4" } @@ -6689,17 +6422,10 @@ packages: } engines: { node: ">=18" } - optionator@0.8.3: + optionator@0.9.4: resolution: { - integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, - } - engines: { node: ">= 0.8.0" } - - optionator@0.9.3: - resolution: - { - integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, + integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==, } engines: { node: ">= 0.8.0" } @@ -6801,10 +6527,10 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } - p-map@7.0.1: + p-map@7.0.2: resolution: { - integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==, + integrity: sha512-z4cYYMMdKHzw4O5UkWJImbZynVIo0lSGTXc7bzB1e/rrDqkgGUNysK/o4bTr+0+xKvvLoTyGqYC4Fgljy9qe1Q==, } engines: { node: ">=18" } @@ -6836,6 +6562,12 @@ packages: } engines: { node: ">=6" } + package-json-from-dist@1.0.1: + resolution: + { + integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==, + } + pako@0.2.9: resolution: { @@ -6890,10 +6622,10 @@ packages: integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==, } - parse-url@9.0.1: + parse-url@9.2.0: resolution: { - integrity: sha512-9BTx9oCKV8f+OhbAhU44KqRUCQrKf8tEbxRq0Ld7m2TSWgoqmy+iVt7xnjEixlz28J9V6sAjVBv/wZNv4+2Jsg==, + integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==, } engines: { node: ">=14.13.0" } @@ -6963,12 +6695,12 @@ packages: integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, } - path-scurry@1.10.1: + path-scurry@1.11.1: resolution: { - integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==, + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, } - engines: { node: ">=16 || 14 >=14.17" } + engines: { node: ">=16 || 14 >=14.18" } path-type@4.0.0: resolution: @@ -6984,12 +6716,12 @@ packages: } engines: { node: ">=12" } - pdfmake@0.2.8: + pdfmake@0.2.13: resolution: { - integrity: sha512-lI+amfIaUL8CrPhndxFdhIgMj9JB49Sj4DARltKC1gLm/5NsPohZqfB+D+II8HymtPB6eugUFD5oBxmzO57qHA==, + integrity: sha512-qeVE9Bzjm0oPCitH4/HYM/XCGTwoeOAOVAXPnV3s0kpPvTLkTF/bAF4jzorjkaIhXGQhzYk6Xclt0hMDYLY93w==, } - engines: { node: ">=12" } + engines: { node: ">=18" } pegjs@0.10.0: resolution: @@ -7005,18 +6737,6 @@ packages: integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==, } - picocolors@1.0.0: - resolution: - { - integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, - } - - picocolors@1.0.1: - resolution: - { - integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==, - } - picocolors@1.1.0: resolution: { @@ -7092,6 +6812,13 @@ packages: integrity: sha512-bxaGcA40sL3d6M4hH72Z4NdLqxpXRsCFk8AITYg6x1rn1Ei3izf00UMLklerBZTO49aPA3CYrIwVulx2Bce2pA==, } + possible-typed-array-names@1.0.0: + resolution: + { + integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==, + } + engines: { node: ">= 0.4" } + postcss-attribute-case-insensitive@7.0.0: resolution: { @@ -7119,10 +6846,10 @@ packages: peerDependencies: postcss: ^8.4.6 - postcss-color-functional-notation@7.0.2: + postcss-color-functional-notation@7.0.3: resolution: { - integrity: sha512-c2WkR0MS73s+P5SgY1KBaSEE61Rj+miW095rkWDnMQxbTCQkp6y/jft8U0QMxEsI4k1Pd4PdV+TP9/1zIDR6XQ==, + integrity: sha512-mL3LVOwXr5sRX1N5so7AFCNciaYTNTxzXuv5bDoZ/JunV2NCAzGOuVfyICRKczDPFImoIuL4e0O33/zYap9D0w==, } engines: { node: ">=18" } peerDependencies: @@ -7164,28 +6891,28 @@ packages: peerDependencies: postcss: ^8.4.31 - postcss-custom-media@11.0.1: + postcss-custom-media@11.0.3: resolution: { - integrity: sha512-vfBliYVgEEJUFXCRPQ7jYt1wlD322u+/5GT0tZqMVYFInkpDHfjhU3nk2quTRW4uFc/umOOqLlxvrEOZRvloMw==, + integrity: sha512-h52R7j0/QZP7NgnpsUaqx6wdssplK4U+ZuErvic2StgvXt3v5sPopFH86yjLvqz3jBrj/8Hkvr7Gio1LLRFP0g==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-custom-properties@14.0.1: + postcss-custom-properties@14.0.2: resolution: { - integrity: sha512-SB4GjuZjIq5GQFNbxFrirQPbkdbJooyNy8bh+fcJ8ZG0oasJTflTTtR4geb56h+FBVDIb9Hx4v/NiG2caOj8nQ==, + integrity: sha512-ZDJLIXa6uT6FlK6mYdzHxr1fr5ec6lPbp/CZ5+7EZedFmfjJx1fvYQhAPCBebuyc1lkketmiA26ZVl2UkPQ9Ig==, } engines: { node: ">=18" } peerDependencies: postcss: ^8.4 - postcss-custom-selectors@8.0.1: + postcss-custom-selectors@8.0.2: resolution: { - integrity: sha512-2McIpyhAeKhUzVqrP4ZyMBpK5FuD+Y9tpQwhcof49652s7gez8057cSaOg/epYcKlztSYxb0GHfi7W5h3JoGUg==, + integrity: sha512-8y2fa+RgYHpVFtvR4h3/dHc7b0iWjT6GOpzWwB8VHJTEBdVNaqOB4FH9koa44hgRyaeDs3KTe3xP9EJf6NLvxQ==, } engines: { node: ">=18" } peerDependencies: @@ -7316,10 +7043,10 @@ packages: peerDependencies: postcss: ^8.4.21 - postcss-lab-function@7.0.2: + postcss-lab-function@7.0.3: resolution: { - integrity: sha512-h4ARGLIBtC1PmCHsLgTWWj8j1i1CXoaht4A5RlITDX2z9AeFBak0YlY6sdF4oJGljrep+Dg2SSccIj4QnFbRDg==, + integrity: sha512-yCBscY/dwipfvqqy7rQHbn6k18zYZy9O57JY4fGuibot6wz7pbtzRnhRlWraHBNUs+N4p2KogHv2aBsoB6G+5Q==, } engines: { node: ">=18" } peerDependencies: @@ -7412,10 +7139,10 @@ packages: peerDependencies: postcss: ^8.2.14 - postcss-nested@6.0.1: + postcss-nested@6.2.0: resolution: { - integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==, + integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==, } engines: { node: ">=12.0" } peerDependencies: @@ -7555,10 +7282,10 @@ packages: peerDependencies: postcss: ^8.4 - postcss-preset-env@10.0.5: + postcss-preset-env@10.0.7: resolution: { - integrity: sha512-ipPOgr3RY0utgJDbNoCX2dxKoQ4e4WO1pC21QhDlxCAX8+qC8O2Ezkzb54fd+8XtZ1UveA5gLjBsVo6dJDoWIg==, + integrity: sha512-aUC/bMT2CULwaZ/RK1Ivzdsyv95DQCJs0dK98RTc9cZKUYIal1+85JdNwik0DXg35BKdRZM2ZwASU17PXoglsw==, } engines: { node: ">=18" } peerDependencies: @@ -7614,10 +7341,10 @@ packages: integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==, } - postcss-safe-parser@7.0.0: + postcss-safe-parser@7.0.1: resolution: { - integrity: sha512-ovehqRNVCpuFzbXoTb4qLtyzK3xn3t/CUBxOs8LsnQjQrShaB4lKiHoVqY8ANaC0hBMHq5QVWk77rwGklFUDrg==, + integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==, } engines: { node: ">=18.0" } peerDependencies: @@ -7639,20 +7366,6 @@ packages: } engines: { node: ">=4" } - postcss-selector-parser@6.0.14: - resolution: - { - integrity: sha512-65xXYsT40i9GyWzlHQ5ShZoK7JZdySeOozi/tz2EezDo6c04q6+ckYMeoY7idaie1qp2dT5KoYQ2yky6JuoHnA==, - } - engines: { node: ">=4" } - - postcss-selector-parser@6.1.1: - resolution: - { - integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==, - } - engines: { node: ">=4" } - postcss-selector-parser@6.1.2: resolution: { @@ -7691,13 +7404,6 @@ packages: } engines: { node: ^10 || ^12 || >=14 } - prelude-ls@1.1.2: - resolution: - { - integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, - } - engines: { node: ">= 0.8.0" } - prelude-ls@1.2.1: resolution: { @@ -7755,10 +7461,10 @@ packages: } engines: { node: ^14.13.1 || >=16.0.0 } - pretty-ms@9.0.0: + pretty-ms@9.1.0: resolution: { - integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==, + integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==, } engines: { node: ">=18" } @@ -7800,13 +7506,6 @@ packages: } engines: { node: ">=10" } - quote-stream@1.0.2: - resolution: - { - integrity: sha512-kKr2uQ2AokadPjvTyKJQad9xELbZwYzWlNfI3Uz2j/ib5u6H9lDP7fUUR//rMycd0gv4Z5P1qXMfXR8YpIxrjQ==, - } - hasBin: true - raf@3.4.1: resolution: { @@ -7866,16 +7565,10 @@ packages: } engines: { node: ">=8.10.0" } - redux@4.2.1: + regenerate-unicode-properties@10.2.0: resolution: { - integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==, - } - - regenerate-unicode-properties@10.1.1: - resolution: - { - integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==, + integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==, } engines: { node: ">=4" } @@ -7897,10 +7590,10 @@ packages: integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, } - regexp.prototype.flags@1.5.1: + regexp.prototype.flags@1.5.2: resolution: { - integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, + integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==, } engines: { node: ">= 0.4" } @@ -7978,19 +7671,6 @@ packages: } engines: { node: ">=8" } - resolve-global@1.0.0: - resolution: - { - integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==, - } - engines: { node: ">=8" } - - resolve@1.1.7: - resolution: - { - integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==, - } - resolve@1.22.8: resolution: { @@ -8039,18 +7719,10 @@ packages: } engines: { node: ">= 0.8.15" } - rimraf@3.0.2: + rollup@2.79.2: resolution: { - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, - } - deprecated: Rimraf versions prior to v4 are no longer supported - hasBin: true - - rollup@2.79.1: - resolution: - { - integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, + integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==, } engines: { node: ">=10.0.0" } hasBin: true @@ -8089,10 +7761,10 @@ packages: integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, } - safe-array-concat@1.0.1: + safe-array-concat@1.1.2: resolution: { - integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==, + integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==, } engines: { node: ">=0.4" } @@ -8108,11 +7780,12 @@ packages: integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, } - safe-regex-test@1.0.0: + safe-regex-test@1.0.3: resolution: { - integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, } + engines: { node: ">= 0.4" } safer-buffer@2.1.2: resolution: @@ -8120,22 +7793,16 @@ packages: integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, } - sax@1.3.0: + sax@1.4.1: resolution: { - integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==, + integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==, } - scope-analyzer@2.1.2: + semantic-release@24.1.2: resolution: { - integrity: sha512-5cfCmsTYV/wPaRIItNxatw02ua/MThdIUNnUOCYp+3LSEJvnG804ANw2VLaavNILIfWXF1D1G2KNANkBBvInwQ==, - } - - semantic-release@24.1.1: - resolution: - { - integrity: sha512-4Ax2GxD411jUe9IdhOjMLuN+6wAj+aKjvOGngByrpD/iKL+UKN/2puQglhyI4gxNyy9XzEBMzBwbqpnEwbXGEg==, + integrity: sha512-hvEJ7yI97pzJuLsDZCYzJgmRxF8kiEJvNZhf0oiZQcexw+Ycjy4wbdsn/sVMURgNCu8rwbAXJdBRyIxM4pe32g==, } engines: { node: ">=20.8.1" } hasBin: true @@ -8161,10 +7828,10 @@ packages: } hasBin: true - semver@7.6.0: + semver@7.6.3: resolution: { - integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==, + integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, } engines: { node: ">=10" } hasBin: true @@ -8181,26 +7848,20 @@ packages: integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, } - set-function-length@1.1.1: + set-function-length@1.2.2: resolution: { - integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, } engines: { node: ">= 0.4" } - set-function-name@2.0.1: + set-function-name@2.0.2: resolution: { - integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, + integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==, } engines: { node: ">= 0.4" } - shallow-copy@0.0.1: - resolution: - { - integrity: sha512-b6i4ZpVuUxB9h5gfCxPiusKYkqTMOjEbBs4wMaFbkfia4yFv92UKZ6Df8WXcKbn08JNL/abvg3FnMAOfakDvUw==, - } - shebang-command@2.0.0: resolution: { @@ -8215,11 +7876,12 @@ packages: } engines: { node: ">=8" } - side-channel@1.0.4: + side-channel@1.0.6: resolution: { - integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==, } + engines: { node: ">= 0.4" } signal-exit@3.0.7: resolution: @@ -8289,13 +7951,6 @@ packages: integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==, } - source-map-js@1.2.0: - resolution: - { - integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==, - } - engines: { node: ">=0.10.0" } - source-map-js@1.2.1: resolution: { @@ -8309,20 +7964,6 @@ packages: integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, } - source-map@0.1.43: - resolution: - { - integrity: sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==, - } - engines: { node: ">=0.8.0" } - - source-map@0.5.7: - resolution: - { - integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, - } - engines: { node: ">=0.10.0" } - source-map@0.6.1: resolution: { @@ -8356,10 +7997,10 @@ packages: integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, } - spdx-exceptions@2.3.0: + spdx-exceptions@2.5.0: resolution: { - integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, } spdx-expression-parse@3.0.1: @@ -8368,10 +8009,10 @@ packages: integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, } - spdx-license-ids@3.0.16: + spdx-license-ids@3.0.20: resolution: { - integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==, + integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==, } split2@1.0.0: @@ -8387,25 +8028,13 @@ packages: } engines: { node: ">= 10.x" } - stackblur-canvas@2.6.0: + stackblur-canvas@2.7.0: resolution: { - integrity: sha512-8S1aIA+UoF6erJYnglGPug6MaHYGo1Ot7h5fuXx4fUPvcvQfcdw2o/ppCse63+eZf8PPidSu4v1JnmEVtEDnpg==, + integrity: sha512-yf7OENo23AGJhBriGx0QivY5JP6Y1HbrrDI6WLt6C5auYZXlQrheoY8hD4ibekFKz1HOfE48Ww8kMWMnJD/zcQ==, } engines: { node: ">=0.1.14" } - static-eval@2.1.0: - resolution: - { - integrity: sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==, - } - - static-module@3.0.4: - resolution: - { - integrity: sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw==, - } - stencil-wormhole@3.4.1: resolution: { @@ -8439,37 +8068,39 @@ packages: } engines: { node: ">=12" } - string-width@7.0.0: + string-width@7.2.0: resolution: { - integrity: sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw==, + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, } engines: { node: ">=18" } - string.prototype.matchall@4.0.10: + string.prototype.matchall@4.0.11: resolution: { - integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==, - } - - string.prototype.trim@1.2.8: - resolution: - { - integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, + integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==, } engines: { node: ">= 0.4" } - string.prototype.trimend@1.0.7: + string.prototype.trim@1.2.9: resolution: { - integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, + integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==, + } + engines: { node: ">= 0.4" } + + string.prototype.trimend@1.0.8: + resolution: + { + integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==, } - string.prototype.trimstart@1.0.7: + string.prototype.trimstart@1.0.8: resolution: { - integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, + integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==, } + engines: { node: ">= 0.4" } string_decoder@1.1.1: resolution: @@ -8560,10 +8191,10 @@ packages: } engines: { node: ">=8" } - style-mod@4.1.0: + style-mod@4.1.2: resolution: { - integrity: sha512-Ca5ib8HrFn+f+0n4N4ScTIA9iTOQ7MaGS1ylHcoVqW9J7w2w8PzN6g9gKmTYgGEBH8e120+RCmhpje6jC5uGWA==, + integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==, } stylehacks@7.0.4: @@ -8593,10 +8224,10 @@ packages: peerDependencies: stylelint: ^16.1.0 - stylelint@16.9.0: + stylelint@16.10.0: resolution: { - integrity: sha512-31Nm3WjxGOBGpQqF43o3wO9L5AC36TPIe6030Lnm13H3vDMTcS21DrLh69bMX+DBilKqMMVLian4iG6ybBoNRQ==, + integrity: sha512-z/8X2rZ52dt2c0stVwI9QL2AFJhLhbPkyfpDFcizs200V/g7v+UYY6SNcB9hKOLcDDX/yGLDsY/pX08sLkz9xQ==, } engines: { node: ">=18.12.0" } hasBin: true @@ -8630,13 +8261,6 @@ packages: } engines: { node: ">=8" } - supports-hyperlinks@3.0.0: - resolution: - { - integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA==, - } - engines: { node: ">=14.18" } - supports-hyperlinks@3.1.0: resolution: { @@ -8679,10 +8303,10 @@ packages: } engines: { node: ">=10.0.0" } - tailwindcss@3.4.13: + tailwindcss@3.4.14: resolution: { - integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==, + integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==, } engines: { node: ">=14.0.0" } hasBin: true @@ -8715,10 +8339,10 @@ packages: } engines: { node: ">=14.16" } - terser@5.26.0: + terser@5.34.0: resolution: { - integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==, + integrity: sha512-y5NUX+U9HhVsK/zihZwoq4r9dICLyV2jXGOriDAVOeKhq3LKVjgJbGO90FisozXLlJfvjHqgckGmJFBb9KYoWQ==, } engines: { node: ">=10" } hasBin: true @@ -8786,10 +8410,10 @@ packages: integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==, } - tinyglobby@0.2.0: + tinyglobby@0.2.6: resolution: { - integrity: sha512-+clyYQfAnNlt5a1x7CCQ6RLuTIztDfDAl6mAANvqRUlz6sVy5znCzJOhais8G6oyUyoeeaorLopO3HptVP8niA==, + integrity: sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g==, } engines: { node: ">=12.0.0" } @@ -8860,25 +8484,12 @@ packages: integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, } - tslib@2.6.2: - resolution: - { - integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, - } - tslib@2.7.0: resolution: { integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==, } - type-check@0.3.2: - resolution: - { - integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, - } - engines: { node: ">= 0.8.0" } - type-check@0.4.0: resolution: { @@ -8893,13 +8504,6 @@ packages: } engines: { node: ">=10" } - type-fest@0.20.2: - resolution: - { - integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, - } - engines: { node: ">=10" } - type-fest@0.21.3: resolution: { @@ -8921,64 +8525,52 @@ packages: } engines: { node: ">=12.20" } - type-fest@3.13.1: + type-fest@4.26.1: resolution: { - integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, - } - engines: { node: ">=14.16" } - - type-fest@4.9.0: - resolution: - { - integrity: sha512-KS/6lh/ynPGiHD/LnAobrEFq3Ad4pBzOlJ1wAnJx9N4EYoqFhMfLIBjUT2UEx4wg5ZE+cC1ob6DCSpppVo+rtg==, + integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==, } engines: { node: ">=16" } - type@1.2.0: + typed-array-buffer@1.0.2: resolution: { - integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==, - } - - type@2.7.2: - resolution: - { - integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==, - } - - typed-array-buffer@1.0.0: - resolution: - { - integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, + integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==, } engines: { node: ">= 0.4" } - typed-array-byte-length@1.0.0: + typed-array-byte-length@1.0.1: resolution: { - integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, + integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==, } engines: { node: ">= 0.4" } - typed-array-byte-offset@1.0.0: + typed-array-byte-offset@1.0.2: resolution: { - integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, + integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==, } engines: { node: ">= 0.4" } - typed-array-length@1.0.4: + typed-array-length@1.0.6: resolution: { - integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, + integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==, } + engines: { node: ">= 0.4" } - typedarray@0.0.6: + typescript-eslint@8.9.0: resolution: { - integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, + integrity: sha512-AuD/FXGYRQyqyOBCpNLldMlsCGvmDNxptQ3Dp58/NXeB+FqyvTfXmMyba3PYa0Vi9ybnj7G8S/yd/4Cw8y47eA==, } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } + peerDependencies: + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true typescript@5.5.4: resolution: @@ -8988,10 +8580,10 @@ packages: engines: { node: ">=14.17" } hasBin: true - uglify-js@3.17.4: + uglify-js@3.19.3: resolution: { - integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, + integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==, } engines: { node: ">=0.8.0" } hasBin: true @@ -9002,16 +8594,16 @@ packages: integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, } - undici-types@5.26.5: + undici-types@6.19.8: resolution: { - integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==, } - unicode-canonical-property-names-ecmascript@2.0.0: + unicode-canonical-property-names-ecmascript@2.0.1: resolution: { - integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, + integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==, } engines: { node: ">=4" } @@ -9029,10 +8621,10 @@ packages: } engines: { node: ">=4" } - unicode-match-property-value-ecmascript@2.1.0: + unicode-match-property-value-ecmascript@2.2.0: resolution: { - integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, + integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==, } engines: { node: ">=4" } @@ -9062,6 +8654,13 @@ packages: } engines: { node: ">=18" } + unicorn-magic@0.3.0: + resolution: + { + integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==, + } + engines: { node: ">=18" } + unique-string@2.0.0: resolution: { @@ -9096,28 +8695,10 @@ packages: } engines: { node: ">=4" } - update-browserslist-db@1.0.13: + update-browserslist-db@1.1.1: resolution: { - integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, - } - hasBin: true - peerDependencies: - browserslist: ">= 4.21.0" - - update-browserslist-db@1.0.16: - resolution: - { - integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==, - } - hasBin: true - peerDependencies: - browserslist: ">= 4.21.0" - - update-browserslist-db@1.1.0: - resolution: - { - integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==, + integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==, } hasBin: true peerDependencies: @@ -9169,10 +8750,10 @@ packages: "@vite-pwa/assets-generator": optional: true - vite@5.4.7: + vite@5.4.9: resolution: { - integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==, + integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true @@ -9257,10 +8838,10 @@ packages: integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==, } - which-typed-array@1.1.13: + which-typed-array@1.1.15: resolution: { - integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, + integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==, } engines: { node: ">= 0.4" } @@ -9476,20 +9057,6 @@ packages: integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, } - yallist@4.0.0: - resolution: - { - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, - } - - yaml@2.4.5: - resolution: - { - integrity: sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==, - } - engines: { node: ">= 14" } - hasBin: true - yaml@2.5.1: resolution: { @@ -9547,831 +9114,875 @@ packages: } engines: { node: ">=10" } - yocto-queue@1.0.0: + yocto-queue@1.1.1: resolution: { - integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, + integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==, } engines: { node: ">=12.20" } - yoctocolors@2.1.0: + yoctocolors@2.1.1: resolution: { - integrity: sha512-FsQpXXeOEe05tcJN4Z2eicuC6+6KiJdBbPOAChanSkwwjZ277XGsh8wh/HaPuGeifTiw/7dgAzabitu2bnDvRg==, + integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==, } engines: { node: ">=18" } snapshots: - "@aashutoshrathi/word-wrap@1.2.6": {} - "@alloc/quick-lru@5.2.0": {} "@amcharts/amcharts4-geodata@4.1.30": {} "@amcharts/amcharts4@4.10.39": dependencies: - "@babel/runtime": 7.23.6 - core-js: 3.35.0 + "@babel/runtime": 7.25.6 + core-js: 3.38.1 d3-force: 3.0.0 - d3-geo: 3.1.0 + d3-geo: 3.1.1 d3-geo-projection: 4.0.0 d3-selection: 3.0.0 d3-transition: 3.0.1(d3-selection@3.0.0) - pdfmake: 0.2.8 + pdfmake: 0.2.13 polylabel: 1.1.0 raf: 3.4.1 regression: 2.0.1 rgbcolor: 1.0.1 - stackblur-canvas: 2.6.0 - tslib: 2.6.2 + stackblur-canvas: 2.7.0 + tslib: 2.7.0 - "@ampproject/remapping@2.2.1": + "@ampproject/remapping@2.3.0": dependencies: "@jridgewell/gen-mapping": 0.3.5 "@jridgewell/trace-mapping": 0.3.25 - "@apideck/better-ajv-errors@0.3.6(ajv@8.12.0)": + "@apideck/better-ajv-errors@0.3.6(ajv@8.17.1)": dependencies: - ajv: 8.12.0 + ajv: 8.17.1 json-schema: 0.4.0 jsonpointer: 5.0.1 leven: 3.1.0 - "@babel/code-frame@7.23.5": + "@babel/code-frame@7.24.7": dependencies: - "@babel/highlight": 7.23.4 - chalk: 2.4.2 + "@babel/highlight": 7.24.7 + picocolors: 1.1.0 - "@babel/code-frame@7.24.2": + "@babel/compat-data@7.25.4": {} + + "@babel/core@7.25.2": dependencies: - "@babel/highlight": 7.24.2 - picocolors: 1.0.0 - - "@babel/compat-data@7.23.5": {} - - "@babel/core@7.24.4": - dependencies: - "@ampproject/remapping": 2.2.1 - "@babel/code-frame": 7.24.2 - "@babel/generator": 7.24.4 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.4) - "@babel/helpers": 7.24.4 - "@babel/parser": 7.24.4 - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + "@ampproject/remapping": 2.3.0 + "@babel/code-frame": 7.24.7 + "@babel/generator": 7.25.6 + "@babel/helper-compilation-targets": 7.25.2 + "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2) + "@babel/helpers": 7.25.6 + "@babel/parser": 7.25.6 + "@babel/template": 7.25.0 + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/generator@7.24.4": + "@babel/generator@7.25.6": dependencies: - "@babel/types": 7.24.0 + "@babel/types": 7.25.6 "@jridgewell/gen-mapping": 0.3.5 "@jridgewell/trace-mapping": 0.3.25 jsesc: 2.5.2 - "@babel/helper-annotate-as-pure@7.22.5": + "@babel/helper-annotate-as-pure@7.24.7": dependencies: - "@babel/types": 7.24.0 + "@babel/types": 7.25.6 - "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15": + "@babel/helper-builder-binary-assignment-operator-visitor@7.24.7": dependencies: - "@babel/types": 7.24.0 + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 + transitivePeerDependencies: + - supports-color - "@babel/helper-compilation-targets@7.23.6": + "@babel/helper-compilation-targets@7.25.2": dependencies: - "@babel/compat-data": 7.23.5 - "@babel/helper-validator-option": 7.23.5 - browserslist: 4.23.0 + "@babel/compat-data": 7.25.4 + "@babel/helper-validator-option": 7.24.8 + browserslist: 4.24.0 lru-cache: 5.1.1 semver: 6.3.1 - "@babel/helper-create-class-features-plugin@7.23.6(@babel/core@7.24.4)": + "@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-annotate-as-pure": 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.20(@babel/core@7.24.4) - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 + "@babel/core": 7.25.2 + "@babel/helper-annotate-as-pure": 7.24.7 + "@babel/helper-member-expression-to-functions": 7.24.8 + "@babel/helper-optimise-call-expression": 7.24.7 + "@babel/helper-replace-supers": 7.25.0(@babel/core@7.25.2) + "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 + "@babel/traverse": 7.25.6 semver: 6.3.1 + transitivePeerDependencies: + - supports-color - "@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)": + "@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-annotate-as-pure": 7.24.7 regexpu-core: 5.3.2 semver: 6.3.1 - "@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.24.4)": + "@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-plugin-utils": 7.22.5 - debug: 4.3.4 + "@babel/core": 7.25.2 + "@babel/helper-compilation-targets": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + debug: 4.3.7 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - "@babel/helper-environment-visitor@7.22.20": {} - - "@babel/helper-function-name@7.23.0": + "@babel/helper-member-expression-to-functions@7.24.8": dependencies: - "@babel/template": 7.24.0 - "@babel/types": 7.24.0 - - "@babel/helper-hoist-variables@7.22.5": - dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-member-expression-to-functions@7.23.0": - dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-module-imports@7.22.15": - dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)": - dependencies: - "@babel/core": 7.24.4 - "@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 - - "@babel/helper-optimise-call-expression@7.22.5": - dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-plugin-utils@7.22.5": {} - - "@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4)": - dependencies: - "@babel/core": 7.24.4 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-wrap-function": 7.22.20 - - "@babel/helper-replace-supers@7.22.20(@babel/core@7.24.4)": - dependencies: - "@babel/core": 7.24.4 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-member-expression-to-functions": 7.23.0 - "@babel/helper-optimise-call-expression": 7.22.5 - - "@babel/helper-simple-access@7.22.5": - dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-skip-transparent-expression-wrappers@7.22.5": - dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-split-export-declaration@7.22.6": - dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-string-parser@7.23.4": {} - - "@babel/helper-validator-identifier@7.22.20": {} - - "@babel/helper-validator-option@7.23.5": {} - - "@babel/helper-wrap-function@7.22.20": - dependencies: - "@babel/helper-function-name": 7.23.0 - "@babel/template": 7.24.0 - "@babel/types": 7.24.0 - - "@babel/helpers@7.24.4": - dependencies: - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 transitivePeerDependencies: - supports-color - "@babel/highlight@7.23.4": + "@babel/helper-module-imports@7.24.7": dependencies: - "@babel/helper-validator-identifier": 7.22.20 + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)": + dependencies: + "@babel/core": 7.25.2 + "@babel/helper-module-imports": 7.24.7 + "@babel/helper-simple-access": 7.24.7 + "@babel/helper-validator-identifier": 7.24.7 + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-optimise-call-expression@7.24.7": + dependencies: + "@babel/types": 7.25.6 + + "@babel/helper-plugin-utils@7.24.8": {} + + "@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.25.2)": + dependencies: + "@babel/core": 7.25.2 + "@babel/helper-annotate-as-pure": 7.24.7 + "@babel/helper-wrap-function": 7.25.0 + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)": + dependencies: + "@babel/core": 7.25.2 + "@babel/helper-member-expression-to-functions": 7.24.8 + "@babel/helper-optimise-call-expression": 7.24.7 + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-simple-access@7.24.7": + dependencies: + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-skip-transparent-expression-wrappers@7.24.7": + dependencies: + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 + transitivePeerDependencies: + - supports-color + + "@babel/helper-string-parser@7.24.8": {} + + "@babel/helper-validator-identifier@7.24.7": {} + + "@babel/helper-validator-option@7.24.8": {} + + "@babel/helper-wrap-function@7.25.0": + dependencies: + "@babel/template": 7.25.0 + "@babel/traverse": 7.25.6 + "@babel/types": 7.25.6 + transitivePeerDependencies: + - supports-color + + "@babel/helpers@7.25.6": + dependencies: + "@babel/template": 7.25.0 + "@babel/types": 7.25.6 + + "@babel/highlight@7.24.7": + dependencies: + "@babel/helper-validator-identifier": 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 + picocolors: 1.1.0 - "@babel/highlight@7.24.2": + "@babel/parser@7.25.6": dependencies: - "@babel/helper-validator-identifier": 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.0 + "@babel/types": 7.25.6 - "@babel/parser@7.24.4": + "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)": dependencies: - "@babel/types": 7.24.0 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-transform-optional-chaining": 7.23.4(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 + "@babel/plugin-transform-optional-chaining": 7.24.8(@babel/core@7.25.2) + transitivePeerDependencies: + - supports-color - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)": + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color - "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)": + "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 - "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)": + "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)": + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-import-assertions@7.25.6(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)": + "@babel/plugin-syntax-import-attributes@7.25.6(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)": + "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)": + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)": + "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)": + "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)": + "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-create-regexp-features-plugin": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.4) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-async-generator-functions@7.25.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-module-imports": 7.22.15 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-remap-async-to-generator": 7.25.0(@babel/core@7.25.2) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.25.2) + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-module-imports": 7.24.7 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-remap-async-to-generator": 7.25.0(@babel/core@7.25.2) + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-class-properties@7.25.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-create-class-features-plugin": 7.25.4(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-classes@7.23.5(@babel/core@7.24.4)": + "@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-annotate-as-pure": 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.20(@babel/core@7.24.4) - "@babel/helper-split-export-declaration": 7.22.6 + "@babel/core": 7.25.2 + "@babel/helper-create-class-features-plugin": 7.25.4(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.25.2) + transitivePeerDependencies: + - supports-color + + "@babel/plugin-transform-classes@7.25.4(@babel/core@7.25.2)": + dependencies: + "@babel/core": 7.25.2 + "@babel/helper-annotate-as-pure": 7.24.7 + "@babel/helper-compilation-targets": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-replace-supers": 7.25.0(@babel/core@7.25.2) + "@babel/traverse": 7.25.6 globals: 11.12.0 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/template": 7.24.0 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/template": 7.25.0 - "@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-create-regexp-features-plugin": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-create-regexp-features-plugin": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.25.2) - "@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.24.7 + "@babel/helper-plugin-utils": 7.24.8 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.4)": + "@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.25.2) - "@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-compilation-targets": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.25.2) - "@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.25.2) - "@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-simple-access": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-identifier": 7.22.20 + "@babel/core": 7.25.2 + "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-simple-access": 7.24.7 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-validator-identifier": 7.24.7 + "@babel/traverse": 7.25.6 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)": + "@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-module-transforms": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-create-regexp-features-plugin": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.25.2) - "@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/compat-data": 7.23.5 - "@babel/core": 7.24.4 - "@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.24.4) - "@babel/plugin-transform-parameters": 7.23.3(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.25.2) - "@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.20(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-compilation-targets": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-transform-parameters": 7.24.7(@babel/core@7.25.2) - "@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-replace-supers": 7.25.0(@babel/core@7.25.2) + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@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.24.4) + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.25.2) - "@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.25.2) + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.4)": + "@babel/plugin-transform-private-methods@7.25.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.23.6(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-create-class-features-plugin": 7.25.4(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-annotate-as-pure": 7.24.7 + "@babel/helper-create-class-features-plugin": 7.25.4(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.25.2) + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + + "@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)": + dependencies: + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 regenerator-transform: 0.15.2 - "@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-skip-transparent-expression-wrappers": 7.24.7 + transitivePeerDependencies: + - supports-color - "@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-create-regexp-features-plugin": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-create-regexp-features-plugin": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 - "@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.4)": + "@babel/plugin-transform-unicode-sets-regex@7.25.4(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.4) - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.25.2 + "@babel/helper-create-regexp-features-plugin": 7.25.2(@babel/core@7.25.2) + "@babel/helper-plugin-utils": 7.24.8 - "@babel/preset-env@7.23.6(@babel/core@7.24.4)": + "@babel/preset-env@7.25.4(@babel/core@7.25.2)": dependencies: - "@babel/compat-data": 7.23.5 - "@babel/core": 7.24.4 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-option": 7.23.5 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.4) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.4) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.4) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.4) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.4) - "@babel/plugin-syntax-import-assertions": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-syntax-import-attributes": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.4) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.4) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.4) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.4) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.4) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.4) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.4) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.4) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.4) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.4) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.24.4) - "@babel/plugin-transform-arrow-functions": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-async-generator-functions": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-async-to-generator": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-block-scoped-functions": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-block-scoping": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-class-properties": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-class-static-block": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-classes": 7.23.5(@babel/core@7.24.4) - "@babel/plugin-transform-computed-properties": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-destructuring": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-dotall-regex": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-duplicate-keys": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-dynamic-import": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-exponentiation-operator": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-export-namespace-from": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-for-of": 7.23.6(@babel/core@7.24.4) - "@babel/plugin-transform-function-name": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-json-strings": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-literals": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-logical-assignment-operators": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-member-expression-literals": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-modules-amd": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-modules-commonjs": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-modules-systemjs": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-modules-umd": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.4) - "@babel/plugin-transform-new-target": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-nullish-coalescing-operator": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-numeric-separator": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-object-rest-spread": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-object-super": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-optional-catch-binding": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-optional-chaining": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-parameters": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-private-methods": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-private-property-in-object": 7.23.4(@babel/core@7.24.4) - "@babel/plugin-transform-property-literals": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-regenerator": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-reserved-words": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-shorthand-properties": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-spread": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-sticky-regex": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-template-literals": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-typeof-symbol": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-unicode-escapes": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-unicode-property-regex": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-unicode-regex": 7.23.3(@babel/core@7.24.4) - "@babel/plugin-transform-unicode-sets-regex": 7.23.3(@babel/core@7.24.4) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.24.4) - babel-plugin-polyfill-corejs2: 0.4.7(@babel/core@7.24.4) - babel-plugin-polyfill-corejs3: 0.8.7(@babel/core@7.24.4) - babel-plugin-polyfill-regenerator: 0.5.4(@babel/core@7.24.4) - core-js-compat: 3.35.0 + "@babel/compat-data": 7.25.4 + "@babel/core": 7.25.2 + "@babel/helper-compilation-targets": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/helper-validator-option": 7.24.8 + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.25.3(@babel/core@7.25.2) + "@babel/plugin-bugfix-safari-class-field-initializer-scope": 7.25.0(@babel/core@7.25.2) + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.25.0(@babel/core@7.25.2) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.25.0(@babel/core@7.25.2) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.25.2) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.25.2) + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.25.2) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-syntax-import-assertions": 7.25.6(@babel/core@7.25.2) + "@babel/plugin-syntax-import-attributes": 7.25.6(@babel/core@7.25.2) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.25.2) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.25.2) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.25.2) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.25.2) + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.25.2) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.25.2) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.25.2) + "@babel/plugin-transform-arrow-functions": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-async-generator-functions": 7.25.4(@babel/core@7.25.2) + "@babel/plugin-transform-async-to-generator": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-block-scoped-functions": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-block-scoping": 7.25.0(@babel/core@7.25.2) + "@babel/plugin-transform-class-properties": 7.25.4(@babel/core@7.25.2) + "@babel/plugin-transform-class-static-block": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-classes": 7.25.4(@babel/core@7.25.2) + "@babel/plugin-transform-computed-properties": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-destructuring": 7.24.8(@babel/core@7.25.2) + "@babel/plugin-transform-dotall-regex": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-duplicate-keys": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": 7.25.0(@babel/core@7.25.2) + "@babel/plugin-transform-dynamic-import": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-exponentiation-operator": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-export-namespace-from": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-for-of": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-function-name": 7.25.1(@babel/core@7.25.2) + "@babel/plugin-transform-json-strings": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-literals": 7.25.2(@babel/core@7.25.2) + "@babel/plugin-transform-logical-assignment-operators": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-member-expression-literals": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-modules-amd": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-modules-commonjs": 7.24.8(@babel/core@7.25.2) + "@babel/plugin-transform-modules-systemjs": 7.25.0(@babel/core@7.25.2) + "@babel/plugin-transform-modules-umd": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-named-capturing-groups-regex": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-new-target": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-nullish-coalescing-operator": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-numeric-separator": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-object-rest-spread": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-object-super": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-optional-catch-binding": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-optional-chaining": 7.24.8(@babel/core@7.25.2) + "@babel/plugin-transform-parameters": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-private-methods": 7.25.4(@babel/core@7.25.2) + "@babel/plugin-transform-private-property-in-object": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-property-literals": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-regenerator": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-reserved-words": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-shorthand-properties": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-spread": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-sticky-regex": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-template-literals": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-typeof-symbol": 7.24.8(@babel/core@7.25.2) + "@babel/plugin-transform-unicode-escapes": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-unicode-property-regex": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-unicode-regex": 7.24.7(@babel/core@7.25.2) + "@babel/plugin-transform-unicode-sets-regex": 7.25.4(@babel/core@7.25.2) + "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.25.2) + babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2) + babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2) + core-js-compat: 3.38.1 semver: 6.3.1 transitivePeerDependencies: - supports-color - "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)": + "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/types": 7.24.0 + "@babel/core": 7.25.2 + "@babel/helper-plugin-utils": 7.24.8 + "@babel/types": 7.25.6 esutils: 2.0.3 "@babel/regjsgen@0.8.0": {} - "@babel/runtime@7.23.6": + "@babel/runtime@7.25.6": dependencies: regenerator-runtime: 0.14.1 - "@babel/template@7.24.0": + "@babel/template@7.25.0": dependencies: - "@babel/code-frame": 7.24.2 - "@babel/parser": 7.24.4 - "@babel/types": 7.24.0 + "@babel/code-frame": 7.24.7 + "@babel/parser": 7.25.6 + "@babel/types": 7.25.6 - "@babel/traverse@7.24.1": + "@babel/traverse@7.25.6": dependencies: - "@babel/code-frame": 7.24.2 - "@babel/generator": 7.24.4 - "@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.24.4 - "@babel/types": 7.24.0 - debug: 4.3.4 + "@babel/code-frame": 7.24.7 + "@babel/generator": 7.25.6 + "@babel/parser": 7.25.6 + "@babel/template": 7.25.0 + "@babel/types": 7.25.6 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/types@7.24.0": + "@babel/types@7.25.6": dependencies: - "@babel/helper-string-parser": 7.23.4 - "@babel/helper-validator-identifier": 7.22.20 + "@babel/helper-string-parser": 7.24.8 + "@babel/helper-validator-identifier": 7.24.7 to-fast-properties: 2.0.0 - "@codemirror/autocomplete@6.11.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.0)": + "@codemirror/autocomplete@6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.1)": dependencies: "@codemirror/language": 6.10.3 "@codemirror/state": 6.4.1 - "@codemirror/view": 6.33.0 - "@lezer/common": 1.2.0 + "@codemirror/view": 6.34.1 + "@lezer/common": 1.2.1 - "@codemirror/commands@6.6.2": + "@codemirror/commands@6.7.0": dependencies: "@codemirror/language": 6.10.3 "@codemirror/state": 6.4.1 - "@codemirror/view": 6.33.0 - "@lezer/common": 1.2.0 + "@codemirror/view": 6.34.1 + "@lezer/common": 1.2.1 "@codemirror/lang-xml@6.1.0": dependencies: - "@codemirror/autocomplete": 6.11.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.0) + "@codemirror/autocomplete": 6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.1) "@codemirror/language": 6.10.3 "@codemirror/state": 6.4.1 - "@codemirror/view": 6.33.0 - "@lezer/common": 1.2.0 - "@lezer/xml": 1.0.4 + "@codemirror/view": 6.34.1 + "@lezer/common": 1.2.1 + "@lezer/xml": 1.0.5 "@codemirror/language@6.10.3": dependencies: "@codemirror/state": 6.4.1 - "@codemirror/view": 6.33.0 - "@lezer/common": 1.2.0 - "@lezer/highlight": 1.2.0 - "@lezer/lr": 1.3.14 - style-mod: 4.1.0 + "@codemirror/view": 6.34.1 + "@lezer/common": 1.2.1 + "@lezer/highlight": 1.2.1 + "@lezer/lr": 1.4.2 + style-mod: 4.1.2 - "@codemirror/lint@6.4.2": + "@codemirror/lint@6.8.2": dependencies: "@codemirror/state": 6.4.1 - "@codemirror/view": 6.33.0 + "@codemirror/view": 6.34.1 crelt: 1.0.6 - "@codemirror/search@6.5.5": + "@codemirror/search@6.5.6": dependencies: "@codemirror/state": 6.4.1 - "@codemirror/view": 6.33.0 + "@codemirror/view": 6.34.1 crelt: 1.0.6 "@codemirror/state@6.4.1": {} - "@codemirror/view@6.33.0": + "@codemirror/view@6.34.1": dependencies: "@codemirror/state": 6.4.1 - style-mod: 4.1.0 + style-mod: 4.1.2 w3c-keyname: 2.2.8 "@colors/colors@1.5.0": optional: true - "@commitlint/cli@19.5.0(@types/node@20.10.5)(typescript@5.5.4)": + "@commitlint/cli@19.5.0(@types/node@22.7.3)(typescript@5.5.4)": dependencies: "@commitlint/format": 19.5.0 "@commitlint/lint": 19.5.0 - "@commitlint/load": 19.5.0(@types/node@20.10.5)(typescript@5.5.4) + "@commitlint/load": 19.5.0(@types/node@22.7.3)(typescript@5.5.4) "@commitlint/read": 19.5.0 "@commitlint/types": 19.5.0 tinyexec: 0.3.0 @@ -10385,16 +9996,10 @@ snapshots: "@commitlint/types": 19.5.0 conventional-changelog-conventionalcommits: 7.0.2 - "@commitlint/config-validator@18.6.1": - dependencies: - "@commitlint/types": 18.6.1 - ajv: 8.12.0 - optional: true - "@commitlint/config-validator@19.5.0": dependencies: "@commitlint/types": 19.5.0 - ajv: 8.12.0 + ajv: 8.17.1 "@commitlint/ensure@19.5.0": dependencies: @@ -10405,9 +10010,6 @@ snapshots: lodash.startcase: 4.4.0 lodash.upperfirst: 4.3.1 - "@commitlint/execute-rule@18.6.1": - optional: true - "@commitlint/execute-rule@19.5.0": {} "@commitlint/format@19.5.0": @@ -10418,7 +10020,7 @@ snapshots: "@commitlint/is-ignored@19.5.0": dependencies: "@commitlint/types": 19.5.0 - semver: 7.6.0 + semver: 7.6.3 "@commitlint/lint@19.5.0": dependencies: @@ -10427,25 +10029,7 @@ snapshots: "@commitlint/rules": 19.5.0 "@commitlint/types": 19.5.0 - "@commitlint/load@18.6.1(@types/node@20.10.5)(typescript@5.5.4)": - dependencies: - "@commitlint/config-validator": 18.6.1 - "@commitlint/execute-rule": 18.6.1 - "@commitlint/resolve-extends": 18.6.1 - "@commitlint/types": 18.6.1 - chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.5.4) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.10.5)(cosmiconfig@8.3.6(typescript@5.5.4))(typescript@5.5.4) - lodash.isplainobject: 4.0.6 - lodash.merge: 4.6.2 - lodash.uniq: 4.5.0 - resolve-from: 5.0.0 - transitivePeerDependencies: - - "@types/node" - - typescript - optional: true - - "@commitlint/load@19.5.0(@types/node@20.10.5)(typescript@5.5.4)": + "@commitlint/load@19.5.0(@types/node@22.7.3)(typescript@5.5.4)": dependencies: "@commitlint/config-validator": 19.5.0 "@commitlint/execute-rule": 19.5.0 @@ -10453,7 +10037,7 @@ snapshots: "@commitlint/types": 19.5.0 chalk: 5.3.0 cosmiconfig: 9.0.0(typescript@5.5.4) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.10.5)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.7.3)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -10477,22 +10061,12 @@ snapshots: minimist: 1.2.8 tinyexec: 0.3.0 - "@commitlint/resolve-extends@18.6.1": - dependencies: - "@commitlint/config-validator": 18.6.1 - "@commitlint/types": 18.6.1 - import-fresh: 3.3.0 - lodash.mergewith: 4.6.2 - resolve-from: 5.0.0 - resolve-global: 1.0.0 - optional: true - "@commitlint/resolve-extends@19.5.0": dependencies: "@commitlint/config-validator": 19.5.0 "@commitlint/types": 19.5.0 global-directory: 4.0.1 - import-meta-resolve: 4.0.0 + import-meta-resolve: 4.1.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 @@ -10509,83 +10083,87 @@ snapshots: dependencies: find-up: 7.0.0 - "@commitlint/types@18.6.1": - dependencies: - chalk: 4.1.2 - optional: true - "@commitlint/types@19.5.0": dependencies: "@types/conventional-commits-parser": 5.0.0 chalk: 5.3.0 - "@csstools/cascade-layer-name-parser@2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": + "@csstools/cascade-layer-name-parser@2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2)": dependencies: - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/color-helpers@5.0.1": {} - "@csstools/css-calc@2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": + "@csstools/css-calc@2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2)": dependencies: - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 - "@csstools/css-color-parser@3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": + "@csstools/css-color-parser@3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2)": dependencies: "@csstools/color-helpers": 5.0.1 - "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-calc": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 - "@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1)": + "@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.2)": dependencies: - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-tokenizer": 3.0.2 - "@csstools/css-tokenizer@3.0.1": {} - - "@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1)": + "@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2)": dependencies: - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-tokenizer": 3.0.2 + + "@csstools/css-tokenizer@3.0.2": {} + + "@csstools/media-query-list-parser@3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2)": + dependencies: + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 + + "@csstools/media-query-list-parser@4.0.0(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2)": + dependencies: + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-cascade-layers@5.0.0(postcss@8.4.47)": dependencies: - "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.1) + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.2) postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 - "@csstools/postcss-color-function@4.0.2(postcss@8.4.47)": + "@csstools/postcss-color-function@4.0.3(postcss@8.4.47)": dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 - "@csstools/postcss-color-mix-function@3.0.2(postcss@8.4.47)": + "@csstools/postcss-color-mix-function@3.0.3(postcss@8.4.47)": dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 - "@csstools/postcss-content-alt-text@2.0.1(postcss@8.4.47)": + "@csstools/postcss-content-alt-text@2.0.2(postcss@8.4.47)": dependencies: - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 - "@csstools/postcss-exponential-functions@2.0.1(postcss@8.4.47)": + "@csstools/postcss-exponential-functions@2.0.2(postcss@8.4.47)": dependencies: - "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-calc": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 postcss: 8.4.47 "@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.47)": @@ -10594,27 +10172,27 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - "@csstools/postcss-gamut-mapping@2.0.2(postcss@8.4.47)": + "@csstools/postcss-gamut-mapping@2.0.3(postcss@8.4.47)": dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 postcss: 8.4.47 - "@csstools/postcss-gradients-interpolation-method@5.0.2(postcss@8.4.47)": + "@csstools/postcss-gradients-interpolation-method@5.0.3(postcss@8.4.47)": dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 - "@csstools/postcss-hwb-function@4.0.2(postcss@8.4.47)": + "@csstools/postcss-hwb-function@4.0.3(postcss@8.4.47)": dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -10632,14 +10210,14 @@ snapshots: "@csstools/postcss-is-pseudo-class@5.0.0(postcss@8.4.47)": dependencies: - "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.1) + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.2) postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 - "@csstools/postcss-light-dark-function@2.0.4(postcss@8.4.47)": + "@csstools/postcss-light-dark-function@2.0.5(postcss@8.4.47)": dependencies: - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -10661,25 +10239,25 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - "@csstools/postcss-logical-viewport-units@3.0.1(postcss@8.4.47)": + "@csstools/postcss-logical-viewport-units@3.0.2(postcss@8.4.47)": dependencies: - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-tokenizer": 3.0.2 "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 - "@csstools/postcss-media-minmax@2.0.1(postcss@8.4.47)": + "@csstools/postcss-media-minmax@2.0.2(postcss@8.4.47)": dependencies: - "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 - "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-calc": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 + "@csstools/media-query-list-parser": 4.0.0(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) postcss: 8.4.47 - "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.1(postcss@8.4.47)": + "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.2(postcss@8.4.47)": dependencies: - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 - "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 + "@csstools/media-query-list-parser": 4.0.0(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) postcss: 8.4.47 "@csstools/postcss-nested-calc@4.0.0(postcss@8.4.47)": @@ -10693,11 +10271,11 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - "@csstools/postcss-oklab-function@4.0.2(postcss@8.4.47)": + "@csstools/postcss-oklab-function@4.0.3(postcss@8.4.47)": dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -10707,11 +10285,11 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - "@csstools/postcss-relative-color-syntax@3.0.2(postcss@8.4.47)": + "@csstools/postcss-relative-color-syntax@3.0.3(postcss@8.4.47)": dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -10719,13 +10297,13 @@ snapshots: "@csstools/postcss-scope-pseudo-class@4.0.0(postcss@8.4.47)": dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 - "@csstools/postcss-stepped-value-functions@4.0.1(postcss@8.4.47)": + "@csstools/postcss-stepped-value-functions@4.0.2(postcss@8.4.47)": dependencies: - "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-calc": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 postcss: 8.4.47 "@csstools/postcss-text-decoration-shorthand@4.0.1(postcss@8.4.47)": @@ -10734,24 +10312,20 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - "@csstools/postcss-trigonometric-functions@4.0.1(postcss@8.4.47)": + "@csstools/postcss-trigonometric-functions@4.0.2(postcss@8.4.47)": dependencies: - "@csstools/css-calc": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-calc": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 postcss: 8.4.47 "@csstools/postcss-unset-value@4.0.0(postcss@8.4.47)": dependencies: postcss: 8.4.47 - "@csstools/selector-resolve-nested@2.0.0(postcss-selector-parser@6.1.1)": + "@csstools/selector-resolve-nested@2.0.0(postcss-selector-parser@6.1.2)": dependencies: - postcss-selector-parser: 6.1.1 - - "@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.1)": - dependencies: - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 "@csstools/selector-specificity@4.0.0(postcss-selector-parser@6.1.2)": dependencies: @@ -10832,20 +10406,30 @@ snapshots: "@esbuild/win32-x64@0.21.5": optional: true - "@eslint-community/eslint-utils@4.4.0(eslint@8.57.1)": + "@eslint-community/eslint-utils@4.4.0(eslint@9.12.0(jiti@1.21.6))": dependencies: - eslint: 8.57.1 + eslint: 9.12.0(jiti@1.21.6) eslint-visitor-keys: 3.4.3 - "@eslint-community/regexpp@4.10.0": {} + "@eslint-community/regexpp@4.11.1": {} - "@eslint/eslintrc@2.1.4": + "@eslint/config-array@0.18.0": + dependencies: + "@eslint/object-schema": 2.1.4 + debug: 4.3.7 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + "@eslint/core@0.6.0": {} + + "@eslint/eslintrc@3.1.0": dependencies: ajv: 6.12.6 - debug: 4.3.6 - espree: 9.6.1 - globals: 13.24.0 - ignore: 5.3.1 + debug: 4.3.7 + espree: 10.1.0 + globals: 14.0.0 + ignore: 5.3.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -10853,25 +10437,29 @@ snapshots: transitivePeerDependencies: - supports-color - "@eslint/js@8.57.1": {} + "@eslint/js@9.12.0": {} - "@floating-ui/core@1.6.4": + "@eslint/object-schema@2.1.4": {} + + "@eslint/plugin-kit@0.2.0": + dependencies: + levn: 0.4.1 + + "@floating-ui/core@1.6.8": dependencies: "@floating-ui/utils": 0.2.8 "@floating-ui/dom@1.6.11": dependencies: - "@floating-ui/core": 1.6.4 + "@floating-ui/core": 1.6.8 "@floating-ui/utils": 0.2.8 "@floating-ui/utils@0.2.8": {} - "@foliojs-fork/fontkit@1.9.1": + "@foliojs-fork/fontkit@1.9.2": dependencies: "@foliojs-fork/restructure": 2.0.2 - brfs: 2.0.2 brotli: 1.3.3 - browserify-optional: 1.0.1 clone: 1.0.4 deep-equal: 1.1.2 dfa: 1.2.0 @@ -10879,16 +10467,15 @@ snapshots: unicode-properties: 1.4.1 unicode-trie: 2.0.0 - "@foliojs-fork/linebreak@1.1.1": + "@foliojs-fork/linebreak@1.1.2": dependencies: base64-js: 1.3.1 - brfs: 2.0.2 unicode-trie: 2.0.0 "@foliojs-fork/pdfkit@0.14.0": dependencies: - "@foliojs-fork/fontkit": 1.9.1 - "@foliojs-fork/linebreak": 1.1.1 + "@foliojs-fork/fontkit": 1.9.2 + "@foliojs-fork/linebreak": 1.1.2 crypto-js: 4.2.0 png-js: 1.0.0 @@ -10902,17 +10489,16 @@ snapshots: "@github/relative-time-element@4.4.3": {} - "@humanwhocodes/config-array@0.13.0": + "@humanfs/core@0.19.0": {} + + "@humanfs/node@0.16.5": dependencies: - "@humanwhocodes/object-schema": 2.0.3 - debug: 4.3.6 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + "@humanfs/core": 0.19.0 + "@humanwhocodes/retry": 0.3.1 "@humanwhocodes/module-importer@1.0.1": {} - "@humanwhocodes/object-schema@2.0.3": {} + "@humanwhocodes/retry@0.3.1": {} "@isaacs/cliui@8.0.2": dependencies: @@ -10926,42 +10512,42 @@ snapshots: "@jridgewell/gen-mapping@0.3.5": dependencies: "@jridgewell/set-array": 1.2.1 - "@jridgewell/sourcemap-codec": 1.4.15 + "@jridgewell/sourcemap-codec": 1.5.0 "@jridgewell/trace-mapping": 0.3.25 - "@jridgewell/resolve-uri@3.1.1": {} + "@jridgewell/resolve-uri@3.1.2": {} "@jridgewell/set-array@1.2.1": {} - "@jridgewell/source-map@0.3.5": + "@jridgewell/source-map@0.3.6": dependencies: "@jridgewell/gen-mapping": 0.3.5 "@jridgewell/trace-mapping": 0.3.25 - "@jridgewell/sourcemap-codec@1.4.15": {} + "@jridgewell/sourcemap-codec@1.5.0": {} "@jridgewell/trace-mapping@0.3.25": dependencies: - "@jridgewell/resolve-uri": 3.1.1 - "@jridgewell/sourcemap-codec": 1.4.15 + "@jridgewell/resolve-uri": 3.1.2 + "@jridgewell/sourcemap-codec": 1.5.0 - "@lezer/common@1.2.0": {} + "@lezer/common@1.2.1": {} - "@lezer/highlight@1.2.0": + "@lezer/highlight@1.2.1": dependencies: - "@lezer/common": 1.2.0 + "@lezer/common": 1.2.1 - "@lezer/lr@1.3.14": + "@lezer/lr@1.4.2": dependencies: - "@lezer/common": 1.2.0 + "@lezer/common": 1.2.1 - "@lezer/xml@1.0.4": + "@lezer/xml@1.0.5": dependencies: - "@lezer/common": 1.2.0 - "@lezer/highlight": 1.2.0 - "@lezer/lr": 1.3.14 + "@lezer/common": 1.2.1 + "@lezer/highlight": 1.2.1 + "@lezer/lr": 1.4.2 - "@lit-labs/ssr-dom-shim@1.2.0": {} + "@lit-labs/ssr-dom-shim@1.2.1": {} "@lit/context@1.1.2": dependencies: @@ -10969,7 +10555,7 @@ snapshots: "@lit/reactive-element@2.0.4": dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 + "@lit-labs/ssr-dom-shim": 1.2.1 "@nodelib/fs.scandir@2.1.5": dependencies: @@ -10981,7 +10567,7 @@ snapshots: "@nodelib/fs.walk@1.2.8": dependencies: "@nodelib/fs.scandir": 2.1.5 - fastq: 1.16.0 + fastq: 1.17.1 "@octokit/auth-token@5.1.1": {} @@ -10989,73 +10575,73 @@ snapshots: dependencies: "@octokit/auth-token": 5.1.1 "@octokit/graphql": 8.1.1 - "@octokit/request": 9.1.1 - "@octokit/request-error": 6.1.1 - "@octokit/types": 13.4.1 + "@octokit/request": 9.1.3 + "@octokit/request-error": 6.1.5 + "@octokit/types": 13.5.1 before-after-hook: 3.0.2 universal-user-agent: 7.0.2 "@octokit/endpoint@10.1.1": dependencies: - "@octokit/types": 13.4.1 + "@octokit/types": 13.5.1 universal-user-agent: 7.0.2 "@octokit/graphql@8.1.1": dependencies: - "@octokit/request": 9.1.1 - "@octokit/types": 13.4.1 + "@octokit/request": 9.1.3 + "@octokit/types": 13.5.1 universal-user-agent: 7.0.2 - "@octokit/openapi-types@22.1.0": {} + "@octokit/openapi-types@22.2.0": {} - "@octokit/plugin-paginate-rest@11.2.0(@octokit/core@6.1.2)": + "@octokit/plugin-paginate-rest@11.3.3(@octokit/core@6.1.2)": dependencies: "@octokit/core": 6.1.2 - "@octokit/types": 13.4.1 + "@octokit/types": 13.5.1 - "@octokit/plugin-retry@7.1.1(@octokit/core@6.1.2)": + "@octokit/plugin-retry@7.1.2(@octokit/core@6.1.2)": dependencies: "@octokit/core": 6.1.2 - "@octokit/request-error": 6.1.1 - "@octokit/types": 13.4.1 + "@octokit/request-error": 6.1.5 + "@octokit/types": 13.5.1 bottleneck: 2.19.5 - "@octokit/plugin-throttling@9.2.1(@octokit/core@6.1.2)": + "@octokit/plugin-throttling@9.3.1(@octokit/core@6.1.2)": dependencies: "@octokit/core": 6.1.2 - "@octokit/types": 13.4.1 + "@octokit/types": 13.5.1 bottleneck: 2.19.5 - "@octokit/request-error@6.1.1": + "@octokit/request-error@6.1.5": dependencies: - "@octokit/types": 13.4.1 + "@octokit/types": 13.5.1 - "@octokit/request@9.1.1": + "@octokit/request@9.1.3": dependencies: "@octokit/endpoint": 10.1.1 - "@octokit/request-error": 6.1.1 - "@octokit/types": 13.4.1 + "@octokit/request-error": 6.1.5 + "@octokit/types": 13.5.1 universal-user-agent: 7.0.2 - "@octokit/types@13.4.1": + "@octokit/types@13.5.1": dependencies: - "@octokit/openapi-types": 22.1.0 + "@octokit/openapi-types": 22.2.0 - "@patternfly/elements@4.0.1": + "@patternfly/elements@4.0.2": dependencies: "@lit/context": 1.1.2 "@patternfly/icons": 1.0.3 - "@patternfly/pfe-core": 4.0.1 - lit: 3.2.0 + "@patternfly/pfe-core": 4.0.2 + lit: 3.2.1 tslib: 2.7.0 "@patternfly/icons@1.0.3": {} - "@patternfly/pfe-core@4.0.1": + "@patternfly/pfe-core@4.0.2": dependencies: "@floating-ui/dom": 1.6.11 "@lit/context": 1.1.2 - lit: 3.2.0 + lit: 3.2.1 "@pkgjs/parseargs@0.11.0": optional: true @@ -11068,58 +10654,59 @@ snapshots: dependencies: graceful-fs: 4.2.10 - "@pnpm/npm-conf@2.2.2": + "@pnpm/npm-conf@2.3.1": dependencies: "@pnpm/config.env-replace": 1.1.0 "@pnpm/network.ca-file": 1.0.2 config-chain: 1.1.13 - "@rollup/plugin-babel@5.3.1(@babel/core@7.24.4)(rollup@2.79.1)": + "@rollup/plugin-babel@5.3.1(@babel/core@7.25.2)(rollup@2.79.2)": dependencies: - "@babel/core": 7.24.4 - "@babel/helper-module-imports": 7.22.15 - "@rollup/pluginutils": 3.1.0(rollup@2.79.1) - rollup: 2.79.1 + "@babel/core": 7.25.2 + "@babel/helper-module-imports": 7.24.7 + "@rollup/pluginutils": 3.1.0(rollup@2.79.2) + rollup: 2.79.2 + transitivePeerDependencies: + - supports-color - "@rollup/plugin-node-resolve@15.2.3(rollup@2.79.1)": + "@rollup/plugin-node-resolve@15.3.0(rollup@2.79.2)": dependencies: - "@rollup/pluginutils": 5.1.0(rollup@2.79.1) + "@rollup/pluginutils": 5.1.2(rollup@2.79.2) "@types/resolve": 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 optionalDependencies: - rollup: 2.79.1 + rollup: 2.79.2 - "@rollup/plugin-replace@2.4.2(rollup@2.79.1)": + "@rollup/plugin-replace@2.4.2(rollup@2.79.2)": dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.79.1) + "@rollup/pluginutils": 3.1.0(rollup@2.79.2) magic-string: 0.25.9 - rollup: 2.79.1 + rollup: 2.79.2 - "@rollup/plugin-terser@0.4.4(rollup@2.79.1)": + "@rollup/plugin-terser@0.4.4(rollup@2.79.2)": dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 - terser: 5.26.0 + terser: 5.34.0 optionalDependencies: - rollup: 2.79.1 + rollup: 2.79.2 - "@rollup/pluginutils@3.1.0(rollup@2.79.1)": + "@rollup/pluginutils@3.1.0(rollup@2.79.2)": dependencies: "@types/estree": 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 2.79.1 + rollup: 2.79.2 - "@rollup/pluginutils@5.1.0(rollup@2.79.1)": + "@rollup/pluginutils@5.1.2(rollup@2.79.2)": dependencies: - "@types/estree": 1.0.5 + "@types/estree": 1.0.6 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 2.79.1 + rollup: 2.79.2 "@rollup/rollup-android-arm-eabi@4.22.4": optional: true @@ -11171,25 +10758,25 @@ snapshots: "@sec-ant/readable-stream@0.4.1": {} - "@semantic-release/changelog@6.0.3(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/changelog@6.0.3(semantic-release@24.1.2(typescript@5.5.4))": dependencies: "@semantic-release/error": 3.0.0 aggregate-error: 3.1.0 fs-extra: 11.2.0 lodash: 4.17.21 - semantic-release: 24.1.1(typescript@5.5.4) + semantic-release: 24.1.2(typescript@5.5.4) - "@semantic-release/commit-analyzer@13.0.0(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/commit-analyzer@13.0.0(semantic-release@24.1.2(typescript@5.5.4))": dependencies: conventional-changelog-angular: 8.0.0 conventional-changelog-writer: 8.0.0 conventional-commits-filter: 5.0.0 conventional-commits-parser: 6.0.0 - debug: 4.3.6 - import-from-esm: 1.3.3 + debug: 4.3.7 + import-from-esm: 1.3.4 lodash-es: 4.17.21 - micromatch: 4.0.7 - semantic-release: 24.1.1(typescript@5.5.4) + micromatch: 4.0.8 + semantic-release: 24.1.2(typescript@5.5.4) transitivePeerDependencies: - supports-color @@ -11197,111 +10784,111 @@ snapshots: "@semantic-release/error@4.0.0": {} - "@semantic-release/exec@6.0.3(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/exec@6.0.3(semantic-release@24.1.2(typescript@5.5.4))": dependencies: "@semantic-release/error": 3.0.0 aggregate-error: 3.1.0 - debug: 4.3.4 + debug: 4.3.7 execa: 5.1.1 lodash: 4.17.21 parse-json: 5.2.0 - semantic-release: 24.1.1(typescript@5.5.4) + semantic-release: 24.1.2(typescript@5.5.4) transitivePeerDependencies: - supports-color - "@semantic-release/git@10.0.1(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/git@10.0.1(semantic-release@24.1.2(typescript@5.5.4))": dependencies: "@semantic-release/error": 3.0.0 aggregate-error: 3.1.0 - debug: 4.3.4 + debug: 4.3.7 dir-glob: 3.0.1 execa: 5.1.1 lodash: 4.17.21 - micromatch: 4.0.5 + micromatch: 4.0.8 p-reduce: 2.1.0 - semantic-release: 24.1.1(typescript@5.5.4) + semantic-release: 24.1.2(typescript@5.5.4) transitivePeerDependencies: - supports-color - "@semantic-release/github@10.0.3(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/github@11.0.0(semantic-release@24.1.2(typescript@5.5.4))": dependencies: "@octokit/core": 6.1.2 - "@octokit/plugin-paginate-rest": 11.2.0(@octokit/core@6.1.2) - "@octokit/plugin-retry": 7.1.1(@octokit/core@6.1.2) - "@octokit/plugin-throttling": 9.2.1(@octokit/core@6.1.2) + "@octokit/plugin-paginate-rest": 11.3.3(@octokit/core@6.1.2) + "@octokit/plugin-retry": 7.1.2(@octokit/core@6.1.2) + "@octokit/plugin-throttling": 9.3.1(@octokit/core@6.1.2) "@semantic-release/error": 4.0.0 aggregate-error: 5.0.0 - debug: 4.3.6 + debug: 4.3.7 dir-glob: 3.0.1 - globby: 14.0.0 - http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.2 - issue-parser: 7.0.0 + globby: 14.0.2 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.5 + issue-parser: 7.0.1 lodash-es: 4.17.21 - mime: 4.0.1 + mime: 4.0.4 p-filter: 4.1.0 - semantic-release: 24.1.1(typescript@5.5.4) + semantic-release: 24.1.2(typescript@5.5.4) url-join: 5.0.0 transitivePeerDependencies: - supports-color - "@semantic-release/gitlab@13.2.1(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/gitlab@13.2.1(semantic-release@24.1.2(typescript@5.5.4))": dependencies: "@semantic-release/error": 4.0.0 aggregate-error: 5.0.0 - debug: 4.3.6 + debug: 4.3.7 dir-glob: 3.0.1 escape-string-regexp: 5.0.0 formdata-node: 6.0.3 fs-extra: 11.2.0 - globby: 14.0.0 - got: 14.2.0 + globby: 14.0.2 + got: 14.4.2 hpagent: 1.2.0 lodash-es: 4.17.21 - parse-url: 9.0.1 - semantic-release: 24.1.1(typescript@5.5.4) + parse-url: 9.2.0 + semantic-release: 24.1.2(typescript@5.5.4) url-join: 4.0.1 transitivePeerDependencies: - supports-color - "@semantic-release/npm@12.0.0(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/npm@12.0.1(semantic-release@24.1.2(typescript@5.5.4))": dependencies: "@semantic-release/error": 4.0.0 aggregate-error: 5.0.0 - execa: 8.0.1 + execa: 9.4.0 fs-extra: 11.2.0 lodash-es: 4.17.21 nerf-dart: 1.0.0 - normalize-url: 8.0.0 - npm: 10.5.2 + normalize-url: 8.0.1 + npm: 10.8.3 rc: 1.2.8 read-pkg: 9.0.1 registry-auth-token: 5.0.2 - semantic-release: 24.1.1(typescript@5.5.4) - semver: 7.6.0 + semantic-release: 24.1.2(typescript@5.5.4) + semver: 7.6.3 tempy: 3.1.0 - "@semantic-release/release-notes-generator@14.0.1(semantic-release@24.1.1(typescript@5.5.4))": + "@semantic-release/release-notes-generator@14.0.1(semantic-release@24.1.2(typescript@5.5.4))": dependencies: conventional-changelog-angular: 8.0.0 conventional-changelog-writer: 8.0.0 conventional-commits-filter: 5.0.0 conventional-commits-parser: 6.0.0 - debug: 4.3.6 + debug: 4.3.7 get-stream: 7.0.1 - import-from-esm: 1.3.3 + import-from-esm: 1.3.4 into-stream: 7.0.0 lodash-es: 4.17.21 read-package-up: 11.0.0 - semantic-release: 24.1.1(typescript@5.5.4) + semantic-release: 24.1.2(typescript@5.5.4) transitivePeerDependencies: - supports-color "@sindresorhus/is@4.6.0": {} - "@sindresorhus/is@6.1.0": {} + "@sindresorhus/is@7.0.1": {} - "@sindresorhus/merge-streams@1.0.0": {} + "@sindresorhus/merge-streams@2.3.0": {} "@sindresorhus/merge-streams@4.0.0": {} @@ -11309,56 +10896,69 @@ snapshots: "@surma/rollup-plugin-off-main-thread@2.2.3": dependencies: - ejs: 3.1.9 + ejs: 3.1.10 json5: 2.2.3 magic-string: 0.25.9 - string.prototype.matchall: 4.0.10 + string.prototype.matchall: 4.0.11 "@szmarczak/http-timer@5.0.1": dependencies: defer-to-connect: 2.0.1 - "@tailwindcss/forms@0.5.9(tailwindcss@3.4.13)": + "@tailwindcss/forms@0.5.9(tailwindcss@3.4.14)": dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.4.13 + tailwindcss: 3.4.14 "@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.47)": dependencies: postcss: 8.4.47 postcss-nested: 5.0.6(postcss@8.4.47) - "@tailwindcss/typography@0.5.15(tailwindcss@3.4.13)": + "@tailwindcss/typography@0.5.15(tailwindcss@3.4.14)": dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.4.13 + tailwindcss: 3.4.14 "@trysound/sax@0.2.0": {} "@types/conventional-commits-parser@5.0.0": dependencies: - "@types/node": 20.10.5 + "@types/node": 22.7.3 + + "@types/eslint@9.6.1": + dependencies: + "@types/estree": 1.0.6 + "@types/json-schema": 7.0.15 + + "@types/eslint__js@8.42.3": + dependencies: + "@types/eslint": 9.6.1 "@types/estree@0.0.39": {} "@types/estree@1.0.5": {} + "@types/estree@1.0.6": {} + "@types/fscreen@1.0.4": {} - "@types/geojson@7946.0.13": {} + "@types/geojson@7946.0.14": {} "@types/http-cache-semantics@4.0.4": {} + "@types/json-schema@7.0.15": {} + "@types/leaflet@1.9.12": dependencies: - "@types/geojson": 7946.0.13 + "@types/geojson": 7946.0.14 - "@types/node@20.10.5": + "@types/node@22.7.3": dependencies: - undici-types: 5.26.5 + undici-types: 6.19.8 "@types/normalize-package-data@2.4.4": {} @@ -11370,17 +10970,17 @@ snapshots: "@types/trusted-types@2.0.7": {} - "@typescript-eslint/eslint-plugin@8.7.0(@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.5.4))(eslint@8.57.1)(typescript@5.5.4)": + "@typescript-eslint/eslint-plugin@8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4)": dependencies: - "@eslint-community/regexpp": 4.10.0 - "@typescript-eslint/parser": 8.7.0(eslint@8.57.1)(typescript@5.5.4) - "@typescript-eslint/scope-manager": 8.7.0 - "@typescript-eslint/type-utils": 8.7.0(eslint@8.57.1)(typescript@5.5.4) - "@typescript-eslint/utils": 8.7.0(eslint@8.57.1)(typescript@5.5.4) - "@typescript-eslint/visitor-keys": 8.7.0 - eslint: 8.57.1 + "@eslint-community/regexpp": 4.11.1 + "@typescript-eslint/parser": 8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) + "@typescript-eslint/scope-manager": 8.9.0 + "@typescript-eslint/type-utils": 8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) + "@typescript-eslint/utils": 8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) + "@typescript-eslint/visitor-keys": 8.9.0 + eslint: 9.12.0(jiti@1.21.6) graphemer: 1.4.0 - ignore: 5.3.1 + ignore: 5.3.2 natural-compare: 1.4.0 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: @@ -11388,29 +10988,29 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@8.7.0(eslint@8.57.1)(typescript@5.5.4)": + "@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4)": dependencies: - "@typescript-eslint/scope-manager": 8.7.0 - "@typescript-eslint/types": 8.7.0 - "@typescript-eslint/typescript-estree": 8.7.0(typescript@5.5.4) - "@typescript-eslint/visitor-keys": 8.7.0 - debug: 4.3.6 - eslint: 8.57.1 + "@typescript-eslint/scope-manager": 8.9.0 + "@typescript-eslint/types": 8.9.0 + "@typescript-eslint/typescript-estree": 8.9.0(typescript@5.5.4) + "@typescript-eslint/visitor-keys": 8.9.0 + debug: 4.3.7 + eslint: 9.12.0(jiti@1.21.6) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color - "@typescript-eslint/scope-manager@8.7.0": + "@typescript-eslint/scope-manager@8.9.0": dependencies: - "@typescript-eslint/types": 8.7.0 - "@typescript-eslint/visitor-keys": 8.7.0 + "@typescript-eslint/types": 8.9.0 + "@typescript-eslint/visitor-keys": 8.9.0 - "@typescript-eslint/type-utils@8.7.0(eslint@8.57.1)(typescript@5.5.4)": + "@typescript-eslint/type-utils@8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4)": dependencies: - "@typescript-eslint/typescript-estree": 8.7.0(typescript@5.5.4) - "@typescript-eslint/utils": 8.7.0(eslint@8.57.1)(typescript@5.5.4) - debug: 4.3.6 + "@typescript-eslint/typescript-estree": 8.9.0(typescript@5.5.4) + "@typescript-eslint/utils": 8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) + debug: 4.3.7 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 @@ -11418,41 +11018,39 @@ snapshots: - eslint - supports-color - "@typescript-eslint/types@8.7.0": {} + "@typescript-eslint/types@8.9.0": {} - "@typescript-eslint/typescript-estree@8.7.0(typescript@5.5.4)": + "@typescript-eslint/typescript-estree@8.9.0(typescript@5.5.4)": dependencies: - "@typescript-eslint/types": 8.7.0 - "@typescript-eslint/visitor-keys": 8.7.0 - debug: 4.3.6 + "@typescript-eslint/types": 8.9.0 + "@typescript-eslint/visitor-keys": 8.9.0 + debug: 4.3.7 fast-glob: 3.3.2 is-glob: 4.0.3 - minimatch: 9.0.4 - semver: 7.6.0 + minimatch: 9.0.5 + semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@8.7.0(eslint@8.57.1)(typescript@5.5.4)": + "@typescript-eslint/utils@8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4)": dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.1) - "@typescript-eslint/scope-manager": 8.7.0 - "@typescript-eslint/types": 8.7.0 - "@typescript-eslint/typescript-estree": 8.7.0(typescript@5.5.4) - eslint: 8.57.1 + "@eslint-community/eslint-utils": 4.4.0(eslint@9.12.0(jiti@1.21.6)) + "@typescript-eslint/scope-manager": 8.9.0 + "@typescript-eslint/types": 8.9.0 + "@typescript-eslint/typescript-estree": 8.9.0(typescript@5.5.4) + eslint: 9.12.0(jiti@1.21.6) transitivePeerDependencies: - supports-color - typescript - "@typescript-eslint/visitor-keys@8.7.0": + "@typescript-eslint/visitor-keys@8.9.0": dependencies: - "@typescript-eslint/types": 8.7.0 + "@typescript-eslint/types": 8.9.0 eslint-visitor-keys: 3.4.3 - "@ungap/structured-clone@1.2.0": {} - "@vime/core@5.4.1": dependencies: "@stencil/core": 2.5.2 @@ -11466,27 +11064,15 @@ snapshots: jsonparse: 1.3.1 through: 2.3.8 - acorn-jsx@5.3.2(acorn@8.12.0): + acorn-jsx@5.3.2(acorn@8.12.1): dependencies: - acorn: 8.12.0 + acorn: 8.12.1 - acorn-node@1.8.2: + acorn@8.12.1: {} + + agent-base@7.1.1: dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - xtend: 4.0.2 - - acorn-walk@7.2.0: {} - - acorn@7.4.1: {} - - acorn@8.11.3: {} - - acorn@8.12.0: {} - - agent-base@7.1.0: - dependencies: - debug: 4.3.6 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -11507,17 +11093,17 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.12.0: + ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 + fast-uri: 3.0.2 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - uri-js: 4.4.1 all-contributors-cli@6.26.1: dependencies: - "@babel/runtime": 7.23.6 - async: 3.2.5 + "@babel/runtime": 7.25.6 + async: 3.2.6 chalk: 4.1.2 didyoumean: 1.2.2 inquirer: 7.3.3 @@ -11531,24 +11117,17 @@ snapshots: transitivePeerDependencies: - encoding - amdefine@1.0.1: - optional: true - ansi-escapes@4.3.2: dependencies: type-fest: 0.21.3 - ansi-escapes@6.2.0: - dependencies: - type-fest: 3.13.1 - ansi-escapes@7.0.0: dependencies: environment: 1.1.0 ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} + ansi-regex@6.1.0: {} ansi-styles@3.2.1: dependencies: @@ -11573,74 +11152,67 @@ snapshots: argv-formatter@1.0.0: {} - array-buffer-byte-length@1.0.0: + array-buffer-byte-length@1.0.1: dependencies: - call-bind: 1.0.5 - is-array-buffer: 3.0.2 - - array-from@2.1.1: {} + call-bind: 1.0.7 + is-array-buffer: 3.0.4 array-ify@1.0.0: {} array-union@2.1.0: {} - arraybuffer.prototype.slice@1.0.2: + arraybuffer.prototype.slice@1.0.3: dependencies: - array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 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 - - ast-transform@0.0.0: - dependencies: - escodegen: 1.2.0 - esprima: 1.0.4 - through: 2.3.8 - - ast-types@0.7.8: {} + es-abstract: 1.23.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.3 astral-regex@2.0.0: {} - async@3.2.5: {} + async@3.2.6: {} at-least-node@1.0.0: {} - autoprefixer@10.4.19(postcss@8.4.47): + autoprefixer@10.4.20(postcss@8.4.47): dependencies: - browserslist: 4.23.1 - caniuse-lite: 1.0.30001639 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001664 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.1 + picocolors: 1.1.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 - available-typed-arrays@1.0.5: {} - - babel-plugin-polyfill-corejs2@0.4.7(@babel/core@7.24.4): + available-typed-arrays@1.0.7: dependencies: - "@babel/compat-data": 7.23.5 - "@babel/core": 7.24.4 - "@babel/helper-define-polyfill-provider": 0.4.4(@babel/core@7.24.4) + possible-typed-array-names: 1.0.0 + + babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2): + dependencies: + "@babel/compat-data": 7.25.4 + "@babel/core": 7.25.2 + "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.25.2) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.24.4): + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2): dependencies: - "@babel/core": 7.24.4 - "@babel/helper-define-polyfill-provider": 0.4.4(@babel/core@7.24.4) - core-js-compat: 3.35.0 + "@babel/core": 7.25.2 + "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.25.2) + core-js-compat: 3.38.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.24.4): + babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2): dependencies: - "@babel/core": 7.24.4 - "@babel/helper-define-polyfill-provider": 0.4.4(@babel/core@7.24.4) + "@babel/core": 7.25.2 + "@babel/helper-define-polyfill-provider": 0.6.2(@babel/core@7.25.2) transitivePeerDependencies: - supports-color @@ -11654,7 +11226,7 @@ snapshots: before-after-hook@3.0.2: {} - binary-extensions@2.2.0: {} + binary-extensions@2.3.0: {} bl@4.1.0: dependencies: @@ -11675,57 +11247,20 @@ snapshots: dependencies: balanced-match: 1.0.2 - braces@3.0.2: - dependencies: - fill-range: 7.0.1 - braces@3.0.3: dependencies: fill-range: 7.1.1 - brfs@2.0.2: - dependencies: - quote-stream: 1.0.2 - resolve: 1.22.8 - static-module: 3.0.4 - through2: 2.0.5 - brotli@1.3.3: dependencies: base64-js: 1.5.1 - browser-resolve@1.11.3: + browserslist@4.24.0: dependencies: - resolve: 1.1.7 - - browserify-optional@1.0.1: - dependencies: - ast-transform: 0.0.0 - ast-types: 0.7.8 - browser-resolve: 1.11.3 - - browserslist@4.23.0: - dependencies: - caniuse-lite: 1.0.30001612 - electron-to-chromium: 1.4.689 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.23.0) - - browserslist@4.23.1: - dependencies: - caniuse-lite: 1.0.30001639 - electron-to-chromium: 1.4.815 - node-releases: 2.0.14 - update-browserslist-db: 1.0.16(browserslist@4.23.1) - - browserslist@4.23.3: - dependencies: - caniuse-lite: 1.0.30001663 - electron-to-chromium: 1.5.28 + caniuse-lite: 1.0.30001664 + electron-to-chromium: 1.5.29 node-releases: 2.0.18 - update-browserslist-db: 1.1.0(browserslist@4.23.3) - - buffer-equal@0.0.1: {} + update-browserslist-db: 1.1.1(browserslist@4.24.0) buffer-from@1.1.2: {} @@ -11734,27 +11269,27 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - builtin-modules@3.3.0: {} - cacheable-lookup@7.0.0: {} - cacheable-request@10.2.14: + cacheable-request@12.0.1: dependencies: "@types/http-cache-semantics": 4.0.4 - get-stream: 6.0.1 + get-stream: 9.0.1 http-cache-semantics: 4.1.1 keyv: 4.5.4 mimic-response: 4.0.0 - normalize-url: 8.0.0 + normalize-url: 8.0.1 responselike: 3.0.0 cachedir@2.3.0: {} - call-bind@1.0.5: + call-bind@1.0.7: dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 function-bind: 1.1.2 - get-intrinsic: 1.2.2 - set-function-length: 1.1.1 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 callsites@3.1.0: {} @@ -11764,16 +11299,12 @@ snapshots: caniuse-api@3.0.0: dependencies: - browserslist: 4.23.3 - caniuse-lite: 1.0.30001639 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001664 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001612: {} - - caniuse-lite@1.0.30001639: {} - - caniuse-lite@1.0.30001663: {} + caniuse-lite@1.0.30001664: {} chalk@2.4.2: dependencies: @@ -11792,13 +11323,11 @@ snapshots: chardet@0.7.0: {} - choices.js@10.2.0: + choices.js@11.0.2: dependencies: - deepmerge: 4.3.1 - fuse.js: 6.6.2 - redux: 4.2.1 + fuse.js: 7.0.0 - chokidar@3.5.3: + chokidar@3.6.0: dependencies: anymatch: 3.1.3 braces: 3.0.3 @@ -11837,7 +11366,7 @@ snapshots: cli-spinners@2.9.2: {} - cli-table3@0.6.3: + cli-table3@0.6.5: dependencies: string-width: 4.2.3 optionalDependencies: @@ -11846,7 +11375,7 @@ snapshots: cli-truncate@4.0.0: dependencies: slice-ansi: 5.0.0 - string-width: 7.0.0 + string-width: 7.2.0 cli-width@3.0.0: {} @@ -11870,15 +11399,15 @@ snapshots: clone@1.0.4: {} - codemirror@6.0.1(@lezer/common@1.2.0): + codemirror@6.0.1(@lezer/common@1.2.1): dependencies: - "@codemirror/autocomplete": 6.11.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.33.0)(@lezer/common@1.2.0) - "@codemirror/commands": 6.6.2 + "@codemirror/autocomplete": 6.18.1(@codemirror/language@6.10.3)(@codemirror/state@6.4.1)(@codemirror/view@6.34.1)(@lezer/common@1.2.1) + "@codemirror/commands": 6.7.0 "@codemirror/language": 6.10.3 - "@codemirror/lint": 6.4.2 - "@codemirror/search": 6.5.5 + "@codemirror/lint": 6.8.2 + "@codemirror/search": 6.5.6 "@codemirror/state": 6.4.1 - "@codemirror/view": 6.33.0 + "@codemirror/view": 6.34.1 transitivePeerDependencies: - "@lezer/common" @@ -11906,10 +11435,10 @@ snapshots: commander@7.2.0: {} - commitizen@4.3.0(@types/node@20.10.5)(typescript@5.5.4): + commitizen@4.3.1(@types/node@22.7.3)(typescript@5.5.4): dependencies: cachedir: 2.3.0 - cz-conventional-changelog: 3.3.0(@types/node@20.10.5)(typescript@5.5.4) + cz-conventional-changelog: 3.3.0(@types/node@22.7.3)(typescript@5.5.4) dedent: 0.7.0 detect-indent: 6.1.0 find-node-modules: 2.1.3 @@ -11935,13 +11464,6 @@ snapshots: concat-map@0.0.1: {} - concat-stream@1.6.2: - dependencies: - buffer-from: 1.1.2 - inherits: 2.0.4 - readable-stream: 2.3.8 - typedarray: 0.0.6 - config-chain@1.1.13: dependencies: ini: 1.3.8 @@ -11965,7 +11487,7 @@ snapshots: conventional-commits-filter: 5.0.0 handlebars: 4.7.8 meow: 13.2.0 - semver: 7.6.0 + semver: 7.6.3 conventional-commit-types@3.0.0: {} @@ -11984,43 +11506,23 @@ snapshots: convert-hrtime@5.0.0: {} - convert-source-map@1.9.0: {} - convert-source-map@2.0.0: {} - core-js-compat@3.35.0: + core-js-compat@3.38.1: dependencies: - browserslist: 4.23.0 + browserslist: 4.24.0 - core-js@3.35.0: {} + core-js@3.38.1: {} core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@20.10.5)(cosmiconfig@8.3.6(typescript@5.5.4))(typescript@5.5.4): + cosmiconfig-typescript-loader@5.0.0(@types/node@22.7.3)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4): dependencies: - "@types/node": 20.10.5 - cosmiconfig: 8.3.6(typescript@5.5.4) - jiti: 1.21.0 - typescript: 5.5.4 - optional: true - - cosmiconfig-typescript-loader@5.0.0(@types/node@20.10.5)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4): - dependencies: - "@types/node": 20.10.5 + "@types/node": 22.7.3 cosmiconfig: 9.0.0(typescript@5.5.4) - jiti: 1.21.0 + jiti: 1.21.6 typescript: 5.5.4 - cosmiconfig@8.3.6(typescript@5.5.4): - dependencies: - import-fresh: 3.3.0 - js-yaml: 4.1.0 - parse-json: 5.2.0 - path-type: 4.0.0 - optionalDependencies: - typescript: 5.5.4 - optional: true - cosmiconfig@9.0.0(typescript@5.5.4): dependencies: env-paths: 2.2.1 @@ -12053,19 +11555,19 @@ snapshots: css-blank-pseudo@7.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 css-declaration-sorter@7.2.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - css-functions-list@3.2.2: {} + css-functions-list@3.2.3: {} css-has-pseudo@7.0.0(postcss@8.4.47): dependencies: - "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.1) + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.2) postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 css-prefers-color-scheme@10.0.0(postcss@8.4.47): @@ -12083,12 +11585,17 @@ snapshots: css-tree@2.2.1: dependencies: mdn-data: 2.0.28 - source-map-js: 1.2.0 + source-map-js: 1.2.1 css-tree@2.3.1: dependencies: mdn-data: 2.0.30 - source-map-js: 1.2.0 + source-map-js: 1.2.1 + + css-tree@3.0.0: + dependencies: + mdn-data: 2.10.0 + source-map-js: 1.2.1 css-what@6.1.0: {} @@ -12098,7 +11605,7 @@ snapshots: cssnano-preset-default@7.0.6(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 css-declaration-sorter: 7.2.0(postcss@8.4.47) cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -12144,16 +11651,16 @@ snapshots: dependencies: css-tree: 2.2.1 - cz-conventional-changelog@3.3.0(@types/node@20.10.5)(typescript@5.5.4): + cz-conventional-changelog@3.3.0(@types/node@22.7.3)(typescript@5.5.4): dependencies: chalk: 2.4.2 - commitizen: 4.3.0(@types/node@20.10.5)(typescript@5.5.4) + commitizen: 4.3.1(@types/node@22.7.3)(typescript@5.5.4) conventional-commit-types: 3.0.0 lodash.map: 4.6.0 longest: 2.0.1 word-wrap: 1.2.5 optionalDependencies: - "@commitlint/load": 18.6.1(@types/node@20.10.5)(typescript@5.5.4) + "@commitlint/load": 19.5.0(@types/node@22.7.3)(typescript@5.5.4) transitivePeerDependencies: - "@types/node" - typescript @@ -12178,9 +11685,9 @@ snapshots: dependencies: commander: 7.2.0 d3-array: 3.2.4 - d3-geo: 3.1.0 + d3-geo: 3.1.1 - d3-geo@3.1.0: + d3-geo@3.1.1: dependencies: d3-array: 3.2.4 @@ -12203,22 +11710,29 @@ snapshots: d3-selection: 3.0.0 d3-timer: 3.0.1 - d@1.0.1: - dependencies: - es5-ext: 0.10.62 - type: 1.2.0 - dargs@8.1.0: {} - dash-ast@2.0.1: {} - - debug@4.3.4: + data-view-buffer@1.0.1: dependencies: - ms: 2.1.2 + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 - debug@4.3.6: + data-view-byte-length@1.0.1: dependencies: - ms: 2.1.2 + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + + data-view-byte-offset@1.0.0: + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + + debug@4.3.7: + dependencies: + ms: 2.1.3 decamelize@1.2.0: {} @@ -12233,9 +11747,9 @@ snapshots: is-arguments: 1.1.1 is-date-object: 1.0.5 is-regex: 1.1.4 - object-is: 1.1.5 + object-is: 1.1.6 object-keys: 1.1.1 - regexp.prototype.flags: 1.5.1 + regexp.prototype.flags: 1.5.2 deep-extend@0.6.0: {} @@ -12249,16 +11763,16 @@ snapshots: defer-to-connect@2.0.1: {} - define-data-property@1.1.1: + define-data-property@1.1.4: dependencies: - get-intrinsic: 1.2.2 + es-define-property: 1.0.0 + es-errors: 1.3.0 gopd: 1.0.1 - has-property-descriptors: 1.0.1 define-properties@1.2.1: dependencies: - define-data-property: 1.1.1 - has-property-descriptors: 1.0.1 + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 object-keys: 1.1.1 detect-file@1.0.0: {} @@ -12275,10 +11789,6 @@ snapshots: dlv@1.1.3: {} - doctrine@3.0.0: - dependencies: - esutils: 2.0.3 - dom-serializer@2.0.0: dependencies: domelementtype: 2.3.0 @@ -12307,17 +11817,13 @@ snapshots: eastasianwidth@0.2.0: {} - ejs@3.1.9: + ejs@3.1.10: dependencies: - jake: 10.8.7 + jake: 10.9.2 - electron-to-chromium@1.4.689: {} + electron-to-chromium@1.5.29: {} - electron-to-chromium@1.4.815: {} - - electron-to-chromium@1.5.28: {} - - emoji-regex@10.3.0: {} + emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} @@ -12327,7 +11833,7 @@ snapshots: entities@4.5.0: {} - env-ci@11.0.0: + env-ci@11.1.0: dependencies: execa: 8.0.1 java-properties: 1.0.2 @@ -12340,53 +11846,70 @@ snapshots: dependencies: is-arrayish: 0.2.1 - es-abstract@1.22.3: + es-abstract@1.23.3: dependencies: - array-buffer-byte-length: 1.0.0 - arraybuffer.prototype.slice: 1.0.2 - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 - es-set-tostringtag: 2.0.2 + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + data-view-buffer: 1.0.1 + data-view-byte-length: 1.0.1 + data-view-byte-offset: 1.0.0 + es-define-property: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 es-to-primitive: 1.2.1 function.prototype.name: 1.1.6 - get-intrinsic: 1.2.2 - get-symbol-description: 1.0.0 - globalthis: 1.0.3 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 + globalthis: 1.0.4 gopd: 1.0.1 - has-property-descriptors: 1.0.1 - has-proto: 1.0.1 + has-property-descriptors: 1.0.2 + has-proto: 1.0.3 has-symbols: 1.0.3 - hasown: 2.0.0 - internal-slot: 1.0.6 - is-array-buffer: 3.0.2 + hasown: 2.0.2 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 is-callable: 1.2.7 - is-negative-zero: 2.0.2 + is-data-view: 1.0.1 + is-negative-zero: 2.0.3 is-regex: 1.1.4 - is-shared-array-buffer: 1.0.2 + is-shared-array-buffer: 1.0.3 is-string: 1.0.7 - is-typed-array: 1.1.12 + is-typed-array: 1.1.13 is-weakref: 1.0.2 - object-inspect: 1.13.1 + object-inspect: 1.13.2 object-keys: 1.1.1 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.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 + regexp.prototype.flags: 1.5.2 + safe-array-concat: 1.1.2 + safe-regex-test: 1.0.3 + string.prototype.trim: 1.2.9 + string.prototype.trimend: 1.0.8 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.2 + typed-array-byte-length: 1.0.1 + typed-array-byte-offset: 1.0.2 + typed-array-length: 1.0.6 unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 + which-typed-array: 1.1.15 - es-set-tostringtag@2.0.2: + es-define-property@1.0.0: dependencies: - get-intrinsic: 1.2.2 - has-tostringtag: 1.0.0 - hasown: 2.0.0 + get-intrinsic: 1.2.4 + + es-errors@1.3.0: {} + + es-object-atoms@1.0.0: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.0.3: + dependencies: + get-intrinsic: 1.2.4 + has-tostringtag: 1.0.2 + hasown: 2.0.2 es-to-primitive@1.2.1: dependencies: @@ -12394,41 +11917,6 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.0.4 - es5-ext@0.10.62: - dependencies: - es6-iterator: 2.0.3 - es6-symbol: 3.1.3 - next-tick: 1.1.0 - - es6-iterator@2.0.3: - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-symbol: 3.1.3 - - es6-map@0.1.5: - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-iterator: 2.0.3 - es6-set: 0.1.6 - es6-symbol: 3.1.3 - event-emitter: 0.3.5 - - es6-set@0.1.6: - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - es6-iterator: 2.0.3 - es6-symbol: 3.1.3 - event-emitter: 0.3.5 - type: 2.7.2 - - es6-symbol@3.1.3: - dependencies: - d: 1.0.1 - ext: 1.7.0 - esbuild@0.21.5: optionalDependencies: "@esbuild/aix-ppc64": 0.21.5 @@ -12455,9 +11943,7 @@ snapshots: "@esbuild/win32-ia32": 0.21.5 "@esbuild/win32-x64": 0.21.5 - escalade@3.1.1: {} - - escalade@3.1.2: {} + escalade@3.2.0: {} escape-string-regexp@1.0.5: {} @@ -12465,97 +11951,86 @@ snapshots: escape-string-regexp@5.0.0: {} - escodegen@1.14.3: + eslint-config-prettier@9.1.0(eslint@9.12.0(jiti@1.21.6)): dependencies: - esprima: 4.0.1 - estraverse: 4.3.0 - esutils: 2.0.3 - optionator: 0.8.3 - optionalDependencies: - source-map: 0.6.1 + eslint: 9.12.0(jiti@1.21.6) - escodegen@1.2.0: + eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.12.0(jiti@1.21.6)))(eslint@9.12.0(jiti@1.21.6))(prettier@3.3.3): dependencies: - esprima: 1.0.4 - estraverse: 1.5.1 - esutils: 1.0.0 - optionalDependencies: - source-map: 0.1.43 - - eslint-config-prettier@9.1.0(eslint@8.57.1): - dependencies: - eslint: 8.57.1 - - eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): - dependencies: - eslint: 8.57.1 + eslint: 9.12.0(jiti@1.21.6) prettier: 3.3.3 prettier-linter-helpers: 1.0.0 synckit: 0.9.1 optionalDependencies: - eslint-config-prettier: 9.1.0(eslint@8.57.1) + "@types/eslint": 9.6.1 + eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.6)) - eslint-scope@7.2.2: + eslint-scope@8.1.0: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 eslint-visitor-keys@3.4.3: {} - eslint@8.57.1: + eslint-visitor-keys@4.0.0: {} + + eslint-visitor-keys@4.1.0: {} + + eslint@9.12.0(jiti@1.21.6): dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.1) - "@eslint-community/regexpp": 4.10.0 - "@eslint/eslintrc": 2.1.4 - "@eslint/js": 8.57.1 - "@humanwhocodes/config-array": 0.13.0 + "@eslint-community/eslint-utils": 4.4.0(eslint@9.12.0(jiti@1.21.6)) + "@eslint-community/regexpp": 4.11.1 + "@eslint/config-array": 0.18.0 + "@eslint/core": 0.6.0 + "@eslint/eslintrc": 3.1.0 + "@eslint/js": 9.12.0 + "@eslint/plugin-kit": 0.2.0 + "@humanfs/node": 0.16.5 "@humanwhocodes/module-importer": 1.0.1 - "@nodelib/fs.walk": 1.2.8 - "@ungap/structured-clone": 1.2.0 + "@humanwhocodes/retry": 0.3.1 + "@types/estree": 1.0.6 + "@types/json-schema": 7.0.15 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.6 - doctrine: 3.0.0 + debug: 4.3.7 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.5.0 + eslint-scope: 8.1.0 + eslint-visitor-keys: 4.1.0 + espree: 10.2.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 + file-entry-cache: 8.0.0 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.24.0 - graphemer: 1.4.0 - ignore: 5.3.1 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 + optionator: 0.9.4 text-table: 0.2.0 + optionalDependencies: + jiti: 1.21.6 transitivePeerDependencies: - supports-color - espree@9.6.1: + espree@10.1.0: dependencies: - acorn: 8.12.0 - acorn-jsx: 5.3.2(acorn@8.12.0) - eslint-visitor-keys: 3.4.3 + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) + eslint-visitor-keys: 4.0.0 - esprima@1.0.4: {} + espree@10.2.0: + dependencies: + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) + eslint-visitor-keys: 4.1.0 - esprima@4.0.1: {} - - esquery@1.5.0: + esquery@1.6.0: dependencies: estraverse: 5.3.0 @@ -12563,27 +12038,14 @@ snapshots: dependencies: estraverse: 5.3.0 - estraverse@1.5.1: {} - - estraverse@4.3.0: {} - estraverse@5.3.0: {} - estree-is-function@1.0.0: {} - estree-walker@1.0.1: {} estree-walker@2.0.2: {} - esutils@1.0.0: {} - esutils@2.0.3: {} - event-emitter@0.3.5: - dependencies: - d: 1.0.1 - es5-ext: 0.10.62 - eventemitter3@5.0.1: {} execa@5.1.1: @@ -12605,34 +12067,30 @@ snapshots: human-signals: 5.0.0 is-stream: 3.0.0 merge-stream: 2.0.0 - npm-run-path: 5.2.0 + npm-run-path: 5.3.0 onetime: 6.0.0 signal-exit: 4.1.0 strip-final-newline: 3.0.0 - execa@9.3.0: + execa@9.4.0: dependencies: "@sindresorhus/merge-streams": 4.0.0 cross-spawn: 7.0.3 figures: 6.1.0 get-stream: 9.0.1 - human-signals: 7.0.0 + human-signals: 8.0.0 is-plain-obj: 4.1.0 is-stream: 4.0.1 - npm-run-path: 5.2.0 - pretty-ms: 9.0.0 + npm-run-path: 6.0.0 + pretty-ms: 9.1.0 signal-exit: 4.1.0 strip-final-newline: 4.0.0 - yoctocolors: 2.1.0 + yoctocolors: 2.1.1 expand-tilde@2.0.2: dependencies: homedir-polyfill: 1.0.3 - ext@1.7.0: - dependencies: - type: 2.7.2 - external-editor@3.1.0: dependencies: chardet: 0.7.0 @@ -12655,13 +12113,15 @@ snapshots: fast-levenshtein@2.0.6: {} + fast-uri@3.0.2: {} + fastest-levenshtein@1.0.16: {} - fastq@1.16.0: + fastq@1.17.1: dependencies: reusify: 1.0.4 - fdir@6.2.0(picomatch@4.0.2): + fdir@6.3.0(picomatch@4.0.2): optionalDependencies: picomatch: 4.0.2 @@ -12675,13 +12135,13 @@ snapshots: figures@6.1.0: dependencies: - is-unicode-supported: 2.0.0 + is-unicode-supported: 2.1.0 - file-entry-cache@6.0.1: + file-entry-cache@8.0.0: dependencies: - flat-cache: 3.2.0 + flat-cache: 4.0.1 - file-entry-cache@9.0.0: + file-entry-cache@9.1.0: dependencies: flat-cache: 5.0.0 @@ -12689,10 +12149,6 @@ snapshots: dependencies: minimatch: 5.1.6 - fill-range@7.0.1: - dependencies: - to-regex-range: 5.0.1 - fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -12735,14 +12191,13 @@ snapshots: dependencies: detect-file: 1.0.0 is-glob: 4.0.3 - micromatch: 4.0.5 + micromatch: 4.0.8 resolve-dir: 1.0.1 - flat-cache@3.2.0: + flat-cache@4.0.1: dependencies: flatted: 3.3.1 keyv: 4.5.4 - rimraf: 3.0.2 flat-cache@5.0.0: dependencies: @@ -12757,7 +12212,7 @@ snapshots: dependencies: is-callable: 1.2.7 - foreground-child@3.1.1: + foreground-child@3.3.0: dependencies: cross-spawn: 7.0.3 signal-exit: 4.1.0 @@ -12795,33 +12250,32 @@ snapshots: function-bind@1.1.2: {} - function-timeout@1.0.1: {} + function-timeout@1.0.2: {} function.prototype.name@1.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 functions-have-names: 1.2.3 functions-have-names@1.2.3: {} - fuse.js@6.6.2: {} + fuse.js@7.0.0: {} gensync@1.0.0-beta.2: {} - get-assigned-identifiers@1.2.0: {} - get-caller-file@2.0.5: {} get-east-asian-width@1.2.0: {} - get-intrinsic@1.2.2: + get-intrinsic@1.2.4: dependencies: + es-errors: 1.3.0 function-bind: 1.1.2 - has-proto: 1.0.1 + has-proto: 1.0.3 has-symbols: 1.0.3 - hasown: 2.0.0 + hasown: 2.0.2 get-own-enumerable-property-symbols@3.0.2: {} @@ -12836,12 +12290,13 @@ snapshots: "@sec-ant/readable-stream": 0.4.1 is-stream: 4.0.1 - get-symbol-description@1.0.0: + get-symbol-description@1.0.2: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 - git-log-parser@1.2.0: + git-log-parser@1.2.1: dependencies: argv-formatter: 1.0.0 spawn-error-forwarder: 1.0.0 @@ -12864,13 +12319,14 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.3.10: + glob@10.4.5: dependencies: - foreground-child: 3.1.1 - jackspeak: 2.3.6 - minimatch: 9.0.4 - minipass: 7.0.4 - path-scurry: 1.10.1 + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 glob@7.2.3: dependencies: @@ -12885,11 +12341,6 @@ snapshots: dependencies: ini: 4.1.1 - global-dirs@0.1.1: - dependencies: - ini: 1.3.8 - optional: true - global-modules@1.0.0: dependencies: global-prefix: 1.0.2 @@ -12916,13 +12367,14 @@ snapshots: globals@11.12.0: {} - globals@13.24.0: - dependencies: - type-fest: 0.20.2 + globals@14.0.0: {} - globalthis@1.0.3: + globals@15.11.0: {} + + globalthis@1.0.4: dependencies: define-properties: 1.2.1 + gopd: 1.0.1 globby@11.1.0: dependencies: @@ -12933,11 +12385,11 @@ snapshots: merge2: 1.4.1 slash: 3.0.0 - globby@14.0.0: + globby@14.0.2: dependencies: - "@sindresorhus/merge-streams": 1.0.0 + "@sindresorhus/merge-streams": 2.3.0 fast-glob: 3.3.2 - ignore: 5.3.1 + ignore: 5.3.2 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -12946,21 +12398,21 @@ snapshots: gopd@1.0.1: dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 - got@14.2.0: + got@14.4.2: dependencies: - "@sindresorhus/is": 6.1.0 + "@sindresorhus/is": 7.0.1 "@szmarczak/http-timer": 5.0.1 cacheable-lookup: 7.0.0 - cacheable-request: 10.2.14 + cacheable-request: 12.0.1 decompress-response: 6.0.0 form-data-encoder: 4.0.2 - get-stream: 8.0.1 http2-wrapper: 2.2.1 lowercase-keys: 3.0.0 p-cancelable: 4.0.1 responselike: 3.0.0 + type-fest: 4.26.1 graceful-fs@4.2.10: {} @@ -12975,7 +12427,7 @@ snapshots: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.17.4 + uglify-js: 3.19.3 has-bigints@1.0.2: {} @@ -12983,21 +12435,19 @@ snapshots: has-flag@4.0.0: {} - has-property-descriptors@1.0.1: + has-property-descriptors@1.0.2: dependencies: - get-intrinsic: 1.2.2 + es-define-property: 1.0.0 - has-proto@1.0.1: {} + has-proto@1.0.3: {} has-symbols@1.0.3: {} - has-tostringtag@1.0.0: + has-tostringtag@1.0.2: dependencies: has-symbols: 1.0.3 - has@1.0.4: {} - - hasown@2.0.0: + hasown@2.0.2: dependencies: function-bind: 1.1.2 @@ -13009,13 +12459,13 @@ snapshots: hook-std@3.0.0: {} - hosted-git-info@7.0.1: + hosted-git-info@7.0.2: dependencies: - lru-cache: 10.1.0 + lru-cache: 10.4.3 hosted-git-info@8.0.0: dependencies: - lru-cache: 10.1.0 + lru-cache: 10.4.3 hpagent@1.2.0: {} @@ -13023,10 +12473,10 @@ snapshots: http-cache-semantics@4.1.1: {} - http-proxy-agent@7.0.0: + http-proxy-agent@7.0.2: dependencies: - agent-base: 7.1.0 - debug: 4.3.6 + agent-base: 7.1.1 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -13035,10 +12485,10 @@ snapshots: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - https-proxy-agent@7.0.2: + https-proxy-agent@7.0.5: dependencies: - agent-base: 7.1.0 - debug: 4.3.6 + agent-base: 7.1.1 + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -13046,7 +12496,7 @@ snapshots: human-signals@5.0.0: {} - human-signals@7.0.0: {} + human-signals@8.0.0: {} husky@9.1.6: {} @@ -13062,23 +12512,23 @@ snapshots: ieee754@1.2.1: {} - ignore@5.3.1: {} - ignore@5.3.2: {} + ignore@6.0.2: {} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 - import-from-esm@1.3.3: + import-from-esm@1.3.4: dependencies: - debug: 4.3.6 - import-meta-resolve: 4.0.0 + debug: 4.3.7 + import-meta-resolve: 4.1.0 transitivePeerDependencies: - supports-color - import-meta-resolve@4.0.0: {} + import-meta-resolve@4.1.0: {} imurmurhash@0.1.4: {} @@ -13133,11 +12583,11 @@ snapshots: through: 2.3.8 wrap-ansi: 7.0.0 - internal-slot@1.0.6: + internal-slot@1.0.7: dependencies: - get-intrinsic: 1.2.2 - hasown: 2.0.0 - side-channel: 1.0.4 + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.0.6 internmap@2.0.3: {} @@ -13148,14 +12598,13 @@ snapshots: is-arguments@1.1.1: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 + call-bind: 1.0.7 + has-tostringtag: 1.0.2 - is-array-buffer@3.0.2: + is-array-buffer@3.0.4: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 is-arrayish@0.2.1: {} @@ -13165,16 +12614,12 @@ snapshots: is-binary-path@2.1.0: dependencies: - binary-extensions: 2.2.0 + binary-extensions: 2.3.0 is-boolean-object@1.1.2: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 - - is-builtin-module@3.2.1: - dependencies: - builtin-modules: 3.3.0 + call-bind: 1.0.7 + has-tostringtag: 1.0.2 is-callable@1.2.7: {} @@ -13182,13 +12627,17 @@ snapshots: dependencies: ci-info: 3.9.0 - is-core-module@2.13.1: + is-core-module@2.15.1: dependencies: - hasown: 2.0.0 + hasown: 2.0.2 + + is-data-view@1.0.1: + dependencies: + is-typed-array: 1.1.13 is-date-object@1.0.5: dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 is-extglob@2.1.1: {} @@ -13208,11 +12657,11 @@ snapshots: is-module@1.0.0: {} - is-negative-zero@2.0.2: {} + is-negative-zero@2.0.3: {} is-number-object@1.0.7: dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 is-number@7.0.0: {} @@ -13220,22 +12669,20 @@ snapshots: is-obj@2.0.0: {} - is-path-inside@3.0.3: {} - is-plain-obj@4.1.0: {} is-plain-object@5.0.0: {} is-regex@1.1.4: dependencies: - call-bind: 1.0.5 - has-tostringtag: 1.0.0 + call-bind: 1.0.7 + has-tostringtag: 1.0.2 is-regexp@1.0.0: {} - is-shared-array-buffer@1.0.2: + is-shared-array-buffer@1.0.3: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 is-stream@2.0.1: {} @@ -13245,7 +12692,7 @@ snapshots: is-string@1.0.7: dependencies: - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 is-symbol@1.0.4: dependencies: @@ -13255,19 +12702,19 @@ snapshots: dependencies: text-extensions: 2.4.0 - is-typed-array@1.1.12: + is-typed-array@1.1.13: dependencies: - which-typed-array: 1.1.13 + which-typed-array: 1.1.15 is-unicode-supported@0.1.0: {} - is-unicode-supported@2.0.0: {} + is-unicode-supported@2.1.0: {} is-utf8@0.2.1: {} is-weakref@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 is-windows@1.0.2: {} @@ -13277,7 +12724,7 @@ snapshots: isexe@2.0.0: {} - issue-parser@7.0.0: + issue-parser@7.0.1: dependencies: lodash.capitalize: 4.2.1 lodash.escaperegexp: 4.1.2 @@ -13285,22 +12732,22 @@ snapshots: lodash.isstring: 4.0.1 lodash.uniqby: 4.7.0 - jackspeak@2.3.6: + jackspeak@3.4.3: dependencies: "@isaacs/cliui": 8.0.2 optionalDependencies: "@pkgjs/parseargs": 0.11.0 - jake@10.8.7: + jake@10.9.2: dependencies: - async: 3.2.5 + async: 3.2.6 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 java-properties@1.0.2: {} - jiti@1.21.0: {} + jiti@1.21.6: {} js-tokens@4.0.0: {} @@ -13316,7 +12763,7 @@ snapshots: json-fixer@1.6.15: dependencies: - "@babel/runtime": 7.23.6 + "@babel/runtime": 7.25.6 chalk: 4.1.2 pegjs: 0.10.0 @@ -13360,11 +12807,6 @@ snapshots: leven@3.1.0: {} - levn@0.3.0: - dependencies: - prelude-ls: 1.1.2 - type-check: 0.3.2 - levn@0.4.1: dependencies: prelude-ls: 1.2.1 @@ -13380,7 +12822,7 @@ snapshots: dependencies: chalk: 5.3.0 commander: 12.1.0 - debug: 4.3.6 + debug: 4.3.7 execa: 8.0.1 lilconfig: 3.1.2 listr2: 8.2.4 @@ -13402,7 +12844,7 @@ snapshots: lit-element@4.1.0: dependencies: - "@lit-labs/ssr-dom-shim": 1.2.0 + "@lit-labs/ssr-dom-shim": 1.2.1 "@lit/reactive-element": 2.0.4 lit-html: 3.2.0 @@ -13410,7 +12852,7 @@ snapshots: dependencies: "@types/trusted-types": 2.0.7 - lit@3.2.0: + lit@3.2.1: dependencies: "@lit/reactive-element": 2.0.4 lit-element: 4.1.0 @@ -13499,37 +12941,29 @@ snapshots: lowercase-keys@3.0.0: {} - lru-cache@10.1.0: {} + lru-cache@10.4.3: {} lru-cache@5.1.1: dependencies: yallist: 3.1.1 - lru-cache@6.0.0: - dependencies: - yallist: 4.0.0 - - magic-string@0.25.1: - dependencies: - sourcemap-codec: 1.4.8 - magic-string@0.25.9: dependencies: sourcemap-codec: 1.4.8 - marked-terminal@7.0.0(marked@12.0.2): + marked-terminal@7.1.0(marked@12.0.2): dependencies: - ansi-escapes: 6.2.0 + ansi-escapes: 7.0.0 chalk: 5.3.0 cli-highlight: 2.1.11 - cli-table3: 0.6.3 + cli-table3: 0.6.5 marked: 12.0.2 node-emoji: 2.1.3 - supports-hyperlinks: 3.0.0 + supports-hyperlinks: 3.1.0 marked@12.0.2: {} - marked@13.0.3: {} + marked@14.1.3: {} mathml-tag-names@2.1.3: {} @@ -13537,36 +12971,24 @@ snapshots: mdn-data@2.0.30: {} + mdn-data@2.10.0: {} + meow@12.1.1: {} meow@13.2.0: {} - merge-source-map@1.0.4: - dependencies: - source-map: 0.5.7 - merge-stream@2.0.0: {} merge2@1.4.1: {} merge@2.1.1: {} - micromatch@4.0.5: - dependencies: - braces: 3.0.2 - picomatch: 2.3.1 - - micromatch@4.0.7: - dependencies: - braces: 3.0.3 - picomatch: 2.3.1 - micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 - mime@4.0.1: {} + mime@4.0.4: {} mimic-fn@2.1.0: {} @@ -13588,7 +13010,7 @@ snapshots: dependencies: brace-expansion: 2.0.1 - minimatch@9.0.4: + minimatch@9.0.5: dependencies: brace-expansion: 2.0.1 @@ -13596,11 +13018,11 @@ snapshots: minimist@1.2.8: {} - minipass@7.0.4: {} + minipass@7.1.2: {} mitt@3.0.1: {} - ms@2.1.2: {} + ms@2.1.3: {} mute-stream@0.0.8: {} @@ -13618,8 +13040,6 @@ snapshots: nerf-dart@1.0.0: {} - next-tick@1.1.0: {} - node-emoji@2.1.3: dependencies: "@sindresorhus/is": 4.6.0 @@ -13631,32 +13051,34 @@ snapshots: dependencies: whatwg-url: 5.0.0 - node-releases@2.0.14: {} - node-releases@2.0.18: {} - normalize-package-data@6.0.0: + normalize-package-data@6.0.2: dependencies: - hosted-git-info: 7.0.1 - is-core-module: 2.13.1 - semver: 7.6.0 + hosted-git-info: 7.0.2 + semver: 7.6.3 validate-npm-package-license: 3.0.4 normalize-path@3.0.0: {} normalize-range@0.1.2: {} - normalize-url@8.0.0: {} + normalize-url@8.0.1: {} npm-run-path@4.0.1: dependencies: path-key: 3.1.1 - npm-run-path@5.2.0: + npm-run-path@5.3.0: dependencies: path-key: 4.0.0 - npm@10.5.2: {} + npm-run-path@6.0.0: + dependencies: + path-key: 4.0.0 + unicorn-magic: 0.3.0 + + npm@10.8.3: {} nth-check@2.1.1: dependencies: @@ -13666,18 +13088,18 @@ snapshots: object-hash@3.0.0: {} - object-inspect@1.13.1: {} + object-inspect@1.13.2: {} - object-is@1.1.5: + object-is@1.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 object-keys@1.1.1: {} object.assign@4.1.5: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -13698,23 +13120,14 @@ snapshots: dependencies: mimic-function: 5.0.1 - optionator@0.8.3: + optionator@0.9.4: dependencies: - deep-is: 0.1.4 - fast-levenshtein: 2.0.6 - levn: 0.3.0 - prelude-ls: 1.1.2 - type-check: 0.3.2 - word-wrap: 1.2.5 - - optionator@0.9.3: - dependencies: - "@aashutoshrathi/word-wrap": 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 ora@5.4.1: dependencies: @@ -13736,7 +13149,7 @@ snapshots: p-filter@4.1.0: dependencies: - p-map: 7.0.1 + p-map: 7.0.2 p-is-promise@3.0.0: {} @@ -13754,7 +13167,7 @@ snapshots: p-limit@4.0.0: dependencies: - yocto-queue: 1.0.0 + yocto-queue: 1.1.1 p-locate@2.0.0: dependencies: @@ -13772,7 +13185,7 @@ snapshots: dependencies: p-limit: 4.0.0 - p-map@7.0.1: {} + p-map@7.0.2: {} p-reduce@2.1.0: {} @@ -13782,6 +13195,8 @@ snapshots: p-try@2.2.0: {} + package-json-from-dist@1.0.1: {} + pako@0.2.9: {} parent-module@1.0.1: @@ -13795,16 +13210,16 @@ snapshots: parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.23.5 + "@babel/code-frame": 7.24.7 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 parse-json@8.1.0: dependencies: - "@babel/code-frame": 7.24.2 + "@babel/code-frame": 7.24.7 index-to-position: 0.1.2 - type-fest: 4.9.0 + type-fest: 4.26.1 parse-ms@4.0.0: {} @@ -13814,7 +13229,7 @@ snapshots: dependencies: protocols: 2.0.1 - parse-url@9.0.1: + parse-url@9.2.0: dependencies: "@types/parse-path": 7.0.3 parse-path: 7.0.0 @@ -13841,18 +13256,18 @@ snapshots: path-parse@1.0.7: {} - path-scurry@1.10.1: + path-scurry@1.11.1: dependencies: - lru-cache: 10.1.0 - minipass: 7.0.4 + lru-cache: 10.4.3 + minipass: 7.1.2 path-type@4.0.0: {} path-type@5.0.0: {} - pdfmake@0.2.8: + pdfmake@0.2.13: dependencies: - "@foliojs-fork/linebreak": 1.1.1 + "@foliojs-fork/linebreak": 1.1.2 "@foliojs-fork/pdfkit": 0.14.0 iconv-lite: 0.6.3 xmldoc: 1.3.0 @@ -13861,10 +13276,6 @@ snapshots: performance-now@2.1.0: {} - picocolors@1.0.0: {} - - picocolors@1.0.1: {} - picocolors@1.1.0: {} picomatch@2.3.1: {} @@ -13892,10 +13303,12 @@ snapshots: dependencies: tinyqueue: 2.0.3 + possible-typed-array-names@1.0.0: {} + postcss-attribute-case-insensitive@7.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-calc@10.0.2(postcss@8.4.47): dependencies: @@ -13908,11 +13321,11 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-color-functional-notation@7.0.2(postcss@8.4.47): + postcss-color-functional-notation@7.0.3(postcss@8.4.47): dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -13931,7 +13344,7 @@ snapshots: postcss-colormin@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.47 @@ -13939,39 +13352,39 @@ snapshots: postcss-convert-values@7.0.4(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-custom-media@11.0.1(postcss@8.4.47): + postcss-custom-media@11.0.3(postcss@8.4.47): dependencies: - "@csstools/cascade-layer-name-parser": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 - "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/cascade-layer-name-parser": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 + "@csstools/media-query-list-parser": 4.0.0(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) postcss: 8.4.47 - postcss-custom-properties@14.0.1(postcss@8.4.47): + postcss-custom-properties@14.0.2(postcss@8.4.47): dependencies: - "@csstools/cascade-layer-name-parser": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/cascade-layer-name-parser": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-custom-selectors@8.0.1(postcss@8.4.47): + postcss-custom-selectors@8.0.2(postcss@8.4.47): dependencies: - "@csstools/cascade-layer-name-parser": 2.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/cascade-layer-name-parser": 2.0.2(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-dir-pseudo-class@9.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-discard-comments@7.0.3(postcss@8.4.47): dependencies: @@ -14000,12 +13413,12 @@ snapshots: postcss-focus-visible@10.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-focus-within@9.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-font-variant@5.0.0(postcss@8.4.47): dependencies: @@ -14040,11 +13453,11 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.47 - postcss-lab-function@7.0.2(postcss@8.4.47): + postcss-lab-function@7.0.3(postcss@8.4.47): dependencies: - "@csstools/css-color-parser": 3.0.2(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 + "@csstools/css-color-parser": 3.0.3(@csstools/css-parser-algorithms@3.0.2(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) + "@csstools/css-parser-algorithms": 3.0.2(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) "@csstools/utilities": 2.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -14052,7 +13465,7 @@ snapshots: postcss-load-config@4.0.2(postcss@8.4.47): dependencies: lilconfig: 3.1.2 - yaml: 2.4.5 + yaml: 2.5.1 optionalDependencies: postcss: 8.4.47 @@ -14069,7 +13482,7 @@ snapshots: postcss-merge-rules@7.0.4(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 caniuse-api: 3.0.0 cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -14089,7 +13502,7 @@ snapshots: postcss-minify-params@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -14103,19 +13516,19 @@ snapshots: postcss-nested@5.0.6(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.0.14 + postcss-selector-parser: 6.1.2 - postcss-nested@6.0.1(postcss@8.4.47): + postcss-nested@6.2.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-nesting@13.0.0(postcss@8.4.47): dependencies: - "@csstools/selector-resolve-nested": 2.0.0(postcss-selector-parser@6.1.1) - "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.1) + "@csstools/selector-resolve-nested": 2.0.0(postcss-selector-parser@6.1.2) + "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.2) postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-normalize-charset@7.0.0(postcss@8.4.47): dependencies: @@ -14148,7 +13561,7 @@ snapshots: postcss-normalize-unicode@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -14186,40 +13599,40 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-preset-env@10.0.5(postcss@8.4.47): + postcss-preset-env@10.0.7(postcss@8.4.47): dependencies: "@csstools/postcss-cascade-layers": 5.0.0(postcss@8.4.47) - "@csstools/postcss-color-function": 4.0.2(postcss@8.4.47) - "@csstools/postcss-color-mix-function": 3.0.2(postcss@8.4.47) - "@csstools/postcss-content-alt-text": 2.0.1(postcss@8.4.47) - "@csstools/postcss-exponential-functions": 2.0.1(postcss@8.4.47) + "@csstools/postcss-color-function": 4.0.3(postcss@8.4.47) + "@csstools/postcss-color-mix-function": 3.0.3(postcss@8.4.47) + "@csstools/postcss-content-alt-text": 2.0.2(postcss@8.4.47) + "@csstools/postcss-exponential-functions": 2.0.2(postcss@8.4.47) "@csstools/postcss-font-format-keywords": 4.0.0(postcss@8.4.47) - "@csstools/postcss-gamut-mapping": 2.0.2(postcss@8.4.47) - "@csstools/postcss-gradients-interpolation-method": 5.0.2(postcss@8.4.47) - "@csstools/postcss-hwb-function": 4.0.2(postcss@8.4.47) + "@csstools/postcss-gamut-mapping": 2.0.3(postcss@8.4.47) + "@csstools/postcss-gradients-interpolation-method": 5.0.3(postcss@8.4.47) + "@csstools/postcss-hwb-function": 4.0.3(postcss@8.4.47) "@csstools/postcss-ic-unit": 4.0.0(postcss@8.4.47) "@csstools/postcss-initial": 2.0.0(postcss@8.4.47) "@csstools/postcss-is-pseudo-class": 5.0.0(postcss@8.4.47) - "@csstools/postcss-light-dark-function": 2.0.4(postcss@8.4.47) + "@csstools/postcss-light-dark-function": 2.0.5(postcss@8.4.47) "@csstools/postcss-logical-float-and-clear": 3.0.0(postcss@8.4.47) "@csstools/postcss-logical-overflow": 2.0.0(postcss@8.4.47) "@csstools/postcss-logical-overscroll-behavior": 2.0.0(postcss@8.4.47) "@csstools/postcss-logical-resize": 3.0.0(postcss@8.4.47) - "@csstools/postcss-logical-viewport-units": 3.0.1(postcss@8.4.47) - "@csstools/postcss-media-minmax": 2.0.1(postcss@8.4.47) - "@csstools/postcss-media-queries-aspect-ratio-number-values": 3.0.1(postcss@8.4.47) + "@csstools/postcss-logical-viewport-units": 3.0.2(postcss@8.4.47) + "@csstools/postcss-media-minmax": 2.0.2(postcss@8.4.47) + "@csstools/postcss-media-queries-aspect-ratio-number-values": 3.0.2(postcss@8.4.47) "@csstools/postcss-nested-calc": 4.0.0(postcss@8.4.47) "@csstools/postcss-normalize-display-values": 4.0.0(postcss@8.4.47) - "@csstools/postcss-oklab-function": 4.0.2(postcss@8.4.47) + "@csstools/postcss-oklab-function": 4.0.3(postcss@8.4.47) "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.47) - "@csstools/postcss-relative-color-syntax": 3.0.2(postcss@8.4.47) + "@csstools/postcss-relative-color-syntax": 3.0.3(postcss@8.4.47) "@csstools/postcss-scope-pseudo-class": 4.0.0(postcss@8.4.47) - "@csstools/postcss-stepped-value-functions": 4.0.1(postcss@8.4.47) + "@csstools/postcss-stepped-value-functions": 4.0.2(postcss@8.4.47) "@csstools/postcss-text-decoration-shorthand": 4.0.1(postcss@8.4.47) - "@csstools/postcss-trigonometric-functions": 4.0.1(postcss@8.4.47) + "@csstools/postcss-trigonometric-functions": 4.0.2(postcss@8.4.47) "@csstools/postcss-unset-value": 4.0.0(postcss@8.4.47) - autoprefixer: 10.4.19(postcss@8.4.47) - browserslist: 4.23.1 + autoprefixer: 10.4.20(postcss@8.4.47) + browserslist: 4.24.0 css-blank-pseudo: 7.0.0(postcss@8.4.47) css-has-pseudo: 7.0.0(postcss@8.4.47) css-prefers-color-scheme: 10.0.0(postcss@8.4.47) @@ -14227,12 +13640,12 @@ snapshots: postcss: 8.4.47 postcss-attribute-case-insensitive: 7.0.0(postcss@8.4.47) postcss-clamp: 4.1.0(postcss@8.4.47) - postcss-color-functional-notation: 7.0.2(postcss@8.4.47) + postcss-color-functional-notation: 7.0.3(postcss@8.4.47) postcss-color-hex-alpha: 10.0.0(postcss@8.4.47) postcss-color-rebeccapurple: 10.0.0(postcss@8.4.47) - postcss-custom-media: 11.0.1(postcss@8.4.47) - postcss-custom-properties: 14.0.1(postcss@8.4.47) - postcss-custom-selectors: 8.0.1(postcss@8.4.47) + postcss-custom-media: 11.0.3(postcss@8.4.47) + postcss-custom-properties: 14.0.2(postcss@8.4.47) + postcss-custom-selectors: 8.0.2(postcss@8.4.47) postcss-dir-pseudo-class: 9.0.0(postcss@8.4.47) postcss-double-position-gradients: 6.0.0(postcss@8.4.47) postcss-focus-visible: 10.0.0(postcss@8.4.47) @@ -14240,7 +13653,7 @@ snapshots: postcss-font-variant: 5.0.0(postcss@8.4.47) postcss-gap-properties: 6.0.0(postcss@8.4.47) postcss-image-set-function: 7.0.0(postcss@8.4.47) - postcss-lab-function: 7.0.2(postcss@8.4.47) + postcss-lab-function: 7.0.3(postcss@8.4.47) postcss-logical: 8.0.0(postcss@8.4.47) postcss-nesting: 13.0.0(postcss@8.4.47) postcss-opacity-percentage: 3.0.0(postcss@8.4.47) @@ -14254,11 +13667,11 @@ snapshots: postcss-pseudo-class-any-link@10.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-reduce-initial@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 caniuse-api: 3.0.0 postcss: 8.4.47 @@ -14273,36 +13686,26 @@ snapshots: postcss-reporter@7.1.0(postcss@8.4.47): dependencies: - picocolors: 1.0.0 + picocolors: 1.1.0 postcss: 8.4.47 thenby: 1.3.4 postcss-resolve-nested-selector@0.1.6: {} - postcss-safe-parser@7.0.0(postcss@8.4.47): + postcss-safe-parser@7.0.1(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-selector-not@8.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 postcss-selector-parser@6.0.10: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-selector-parser@6.0.14: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - - postcss-selector-parser@6.1.1: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - postcss-selector-parser@6.1.2: dependencies: cssesc: 3.0.0 @@ -14327,8 +13730,6 @@ snapshots: picocolors: 1.1.0 source-map-js: 1.2.1 - prelude-ls@1.1.2: {} - prelude-ls@1.2.1: {} prettier-linter-helpers@1.0.0: @@ -14349,7 +13750,7 @@ snapshots: pretty-bytes@6.1.1: {} - pretty-ms@9.0.0: + pretty-ms@9.1.0: dependencies: parse-ms: 4.0.0 @@ -14365,12 +13766,6 @@ snapshots: quick-lru@5.1.1: {} - quote-stream@1.0.2: - dependencies: - buffer-equal: 0.0.1 - minimist: 1.2.8 - through2: 2.0.5 - raf@3.4.1: dependencies: performance-now: 2.1.0 @@ -14394,14 +13789,14 @@ snapshots: dependencies: find-up-simple: 1.0.0 read-pkg: 9.0.1 - type-fest: 4.9.0 + type-fest: 4.26.1 read-pkg@9.0.1: dependencies: "@types/normalize-package-data": 2.4.4 - normalize-package-data: 6.0.0 + normalize-package-data: 6.0.2 parse-json: 8.1.0 - type-fest: 4.9.0 + type-fest: 4.26.1 unicorn-magic: 0.1.0 readable-stream@2.3.8: @@ -14424,11 +13819,7 @@ snapshots: dependencies: picomatch: 2.3.1 - redux@4.2.1: - dependencies: - "@babel/runtime": 7.23.6 - - regenerate-unicode-properties@10.1.1: + regenerate-unicode-properties@10.2.0: dependencies: regenerate: 1.4.2 @@ -14438,26 +13829,27 @@ snapshots: regenerator-transform@0.15.2: dependencies: - "@babel/runtime": 7.23.6 + "@babel/runtime": 7.25.6 - regexp.prototype.flags@1.5.1: + regexp.prototype.flags@1.5.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - set-function-name: 2.0.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 regexpu-core@5.3.2: dependencies: "@babel/regjsgen": 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 + regenerate-unicode-properties: 10.2.0 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + unicode-match-property-value-ecmascript: 2.2.0 registry-auth-token@5.0.2: dependencies: - "@pnpm/npm-conf": 2.2.2 + "@pnpm/npm-conf": 2.3.1 regjsparser@0.9.1: dependencies: @@ -14482,16 +13874,9 @@ snapshots: resolve-from@5.0.0: {} - resolve-global@1.0.0: - dependencies: - global-dirs: 0.1.1 - optional: true - - resolve@1.1.7: {} - resolve@1.22.8: dependencies: - is-core-module: 2.13.1 + is-core-module: 2.15.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 @@ -14515,11 +13900,7 @@ snapshots: rgbcolor@1.0.1: {} - rimraf@3.0.2: - dependencies: - glob: 7.2.3 - - rollup@2.79.1: + rollup@2.79.2: optionalDependencies: fsevents: 2.3.3 @@ -14557,12 +13938,12 @@ snapshots: rxjs@7.8.1: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 - safe-array-concat@1.0.1: + safe-array-concat@1.1.2: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 @@ -14570,54 +13951,44 @@ snapshots: safe-buffer@5.2.1: {} - safe-regex-test@1.0.0: + safe-regex-test@1.0.3: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + es-errors: 1.3.0 is-regex: 1.1.4 safer-buffer@2.1.2: {} - sax@1.3.0: {} + sax@1.4.1: {} - scope-analyzer@2.1.2: + semantic-release@24.1.2(typescript@5.5.4): dependencies: - array-from: 2.1.1 - dash-ast: 2.0.1 - es6-map: 0.1.5 - es6-set: 0.1.6 - es6-symbol: 3.1.3 - estree-is-function: 1.0.0 - get-assigned-identifiers: 1.2.0 - - semantic-release@24.1.1(typescript@5.5.4): - dependencies: - "@semantic-release/commit-analyzer": 13.0.0(semantic-release@24.1.1(typescript@5.5.4)) + "@semantic-release/commit-analyzer": 13.0.0(semantic-release@24.1.2(typescript@5.5.4)) "@semantic-release/error": 4.0.0 - "@semantic-release/github": 10.0.3(semantic-release@24.1.1(typescript@5.5.4)) - "@semantic-release/npm": 12.0.0(semantic-release@24.1.1(typescript@5.5.4)) - "@semantic-release/release-notes-generator": 14.0.1(semantic-release@24.1.1(typescript@5.5.4)) + "@semantic-release/github": 11.0.0(semantic-release@24.1.2(typescript@5.5.4)) + "@semantic-release/npm": 12.0.1(semantic-release@24.1.2(typescript@5.5.4)) + "@semantic-release/release-notes-generator": 14.0.1(semantic-release@24.1.2(typescript@5.5.4)) aggregate-error: 5.0.0 cosmiconfig: 9.0.0(typescript@5.5.4) - debug: 4.3.6 - env-ci: 11.0.0 - execa: 9.3.0 + debug: 4.3.7 + env-ci: 11.1.0 + execa: 9.4.0 figures: 6.1.0 find-versions: 6.0.0 get-stream: 6.0.1 - git-log-parser: 1.2.0 + git-log-parser: 1.2.1 hook-std: 3.0.0 hosted-git-info: 8.0.0 - import-from-esm: 1.3.3 + import-from-esm: 1.3.4 lodash-es: 4.17.21 marked: 12.0.2 - marked-terminal: 7.0.0(marked@12.0.2) - micromatch: 4.0.7 + marked-terminal: 7.1.0(marked@12.0.2) + micromatch: 4.0.8 p-each-series: 3.0.0 p-reduce: 3.0.0 read-package-up: 11.0.0 resolve-from: 5.0.0 - semver: 7.6.0 + semver: 7.6.3 semver-diff: 4.0.0 signale: 1.4.0 yargs: 17.7.2 @@ -14627,15 +13998,13 @@ snapshots: semver-diff@4.0.0: dependencies: - semver: 7.6.0 + semver: 7.6.3 semver-regex@4.0.5: {} semver@6.3.1: {} - semver@7.6.0: - dependencies: - lru-cache: 6.0.0 + semver@7.6.3: {} serialize-javascript@6.0.2: dependencies: @@ -14643,20 +14012,21 @@ snapshots: set-blocking@2.0.0: {} - set-function-length@1.1.1: + set-function-length@1.2.2: dependencies: - define-data-property: 1.1.1 - get-intrinsic: 1.2.2 + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 gopd: 1.0.1 - has-property-descriptors: 1.0.1 + has-property-descriptors: 1.0.2 - set-function-name@2.0.1: + set-function-name@2.0.2: dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 + es-errors: 1.3.0 functions-have-names: 1.2.3 - has-property-descriptors: 1.0.1 - - shallow-copy@0.0.1: {} + has-property-descriptors: 1.0.2 shebang-command@2.0.0: dependencies: @@ -14664,11 +14034,12 @@ snapshots: shebang-regex@3.0.0: {} - side-channel@1.0.4: + side-channel@1.0.6: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - object-inspect: 1.13.1 + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.2 signal-exit@3.0.7: {} @@ -14706,8 +14077,6 @@ snapshots: smob@1.5.0: {} - source-map-js@1.2.0: {} - source-map-js@1.2.1: {} source-map-support@0.5.21: @@ -14715,13 +14084,6 @@ snapshots: buffer-from: 1.1.2 source-map: 0.6.1 - source-map@0.1.43: - dependencies: - amdefine: 1.0.1 - optional: true - - source-map@0.5.7: {} - source-map@0.6.1: {} source-map@0.8.0-beta.0: @@ -14735,16 +14097,16 @@ snapshots: spdx-correct@3.2.0: dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.16 + spdx-license-ids: 3.0.20 - spdx-exceptions@2.3.0: {} + spdx-exceptions@2.5.0: {} spdx-expression-parse@3.0.1: dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.16 + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 - spdx-license-ids@3.0.16: {} + spdx-license-ids@3.0.20: {} split2@1.0.0: dependencies: @@ -14752,28 +14114,7 @@ snapshots: split2@4.2.0: {} - stackblur-canvas@2.6.0: {} - - static-eval@2.1.0: - dependencies: - escodegen: 1.14.3 - - static-module@3.0.4: - dependencies: - acorn-node: 1.8.2 - concat-stream: 1.6.2 - convert-source-map: 1.9.0 - duplexer2: 0.1.4 - escodegen: 1.14.3 - has: 1.0.4 - magic-string: 0.25.1 - merge-source-map: 1.0.4 - object-inspect: 1.13.1 - readable-stream: 2.3.8 - scope-analyzer: 2.1.2 - shallow-copy: 0.0.1 - static-eval: 2.1.0 - through2: 2.0.5 + stackblur-canvas@2.7.0: {} stencil-wormhole@3.4.1: {} @@ -14796,41 +14137,45 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string-width@7.0.0: + string-width@7.2.0: dependencies: - emoji-regex: 10.3.0 + emoji-regex: 10.4.0 get-east-asian-width: 1.2.0 strip-ansi: 7.1.0 - string.prototype.matchall@4.0.10: + string.prototype.matchall@4.0.11: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - get-intrinsic: 1.2.2 + es-abstract: 1.23.3 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + get-intrinsic: 1.2.4 + gopd: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.6 - regexp.prototype.flags: 1.5.1 - set-function-name: 2.0.1 - side-channel: 1.0.4 + internal-slot: 1.0.7 + regexp.prototype.flags: 1.5.2 + set-function-name: 2.0.2 + side-channel: 1.0.6 - string.prototype.trim@1.2.8: + string.prototype.trim@1.2.9: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.3 + es-object-atoms: 1.0.0 - string.prototype.trimend@1.0.7: + string.prototype.trimend@1.0.8: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-object-atoms: 1.0.0 - string.prototype.trimstart@1.0.7: + string.prototype.trimstart@1.0.8: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-object-atoms: 1.0.0 string_decoder@1.1.1: dependencies: @@ -14852,7 +14197,7 @@ snapshots: strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 strip-bom@3.0.0: {} @@ -14870,44 +14215,44 @@ snapshots: strip-json-comments@3.1.1: {} - style-mod@4.1.0: {} + style-mod@4.1.2: {} stylehacks@7.0.4(postcss@8.4.47): dependencies: - browserslist: 4.23.3 + browserslist: 4.24.0 postcss: 8.4.47 postcss-selector-parser: 6.1.2 - stylelint-config-recommended@14.0.1(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-recommended@14.0.1(stylelint@16.10.0(typescript@5.5.4)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) + stylelint: 16.10.0(typescript@5.5.4) - stylelint-config-standard@36.0.1(stylelint@16.9.0(typescript@5.5.4)): + stylelint-config-standard@36.0.1(stylelint@16.10.0(typescript@5.5.4)): dependencies: - stylelint: 16.9.0(typescript@5.5.4) - stylelint-config-recommended: 14.0.1(stylelint@16.9.0(typescript@5.5.4)) + stylelint: 16.10.0(typescript@5.5.4) + stylelint-config-recommended: 14.0.1(stylelint@16.10.0(typescript@5.5.4)) - stylelint@16.9.0(typescript@5.5.4): + stylelint@16.10.0(typescript@5.5.4): dependencies: - "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.1) - "@csstools/css-tokenizer": 3.0.1 - "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.1))(@csstools/css-tokenizer@3.0.1) + "@csstools/css-parser-algorithms": 3.0.1(@csstools/css-tokenizer@3.0.2) + "@csstools/css-tokenizer": 3.0.2 + "@csstools/media-query-list-parser": 3.0.1(@csstools/css-parser-algorithms@3.0.1(@csstools/css-tokenizer@3.0.2))(@csstools/css-tokenizer@3.0.2) "@csstools/selector-specificity": 4.0.0(postcss-selector-parser@6.1.2) "@dual-bundle/import-meta-resolve": 4.1.0 balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 9.0.0(typescript@5.5.4) - css-functions-list: 3.2.2 - css-tree: 2.3.1 - debug: 4.3.6 + css-functions-list: 3.2.3 + css-tree: 3.0.0 + debug: 4.3.7 fast-glob: 3.3.2 fastest-levenshtein: 1.0.16 - file-entry-cache: 9.0.0 + file-entry-cache: 9.1.0 global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 html-tags: 3.3.1 - ignore: 5.3.2 + ignore: 6.0.2 imurmurhash: 0.1.4 is-plain-object: 5.0.0 known-css-properties: 0.34.0 @@ -14915,15 +14260,14 @@ snapshots: meow: 13.2.0 micromatch: 4.0.8 normalize-path: 3.0.0 - picocolors: 1.0.1 + picocolors: 1.1.0 postcss: 8.4.47 postcss-resolve-nested-selector: 0.1.6 - postcss-safe-parser: 7.0.0(postcss@8.4.47) + postcss-safe-parser: 7.0.1(postcss@8.4.47) postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 - strip-ansi: 7.1.0 supports-hyperlinks: 3.1.0 svg-tags: 1.0.0 table: 6.8.2 @@ -14936,7 +14280,7 @@ snapshots: dependencies: "@jridgewell/gen-mapping": 0.3.5 commander: 4.1.1 - glob: 10.3.10 + glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -14944,7 +14288,7 @@ snapshots: super-regex@1.0.0: dependencies: - function-timeout: 1.0.1 + function-timeout: 1.0.2 time-span: 5.1.0 supports-color@5.5.0: @@ -14955,11 +14299,6 @@ snapshots: dependencies: has-flag: 4.0.0 - supports-hyperlinks@3.0.0: - dependencies: - has-flag: 4.0.0 - supports-color: 7.2.0 - supports-hyperlinks@3.1.0: dependencies: has-flag: 4.0.0 @@ -14977,43 +14316,43 @@ snapshots: css-tree: 2.3.1 css-what: 6.1.0 csso: 5.0.5 - picocolors: 1.0.0 + picocolors: 1.1.0 synckit@0.9.1: dependencies: "@pkgr/core": 0.1.1 - tslib: 2.6.2 + tslib: 2.7.0 table@6.8.2: dependencies: - ajv: 8.12.0 + ajv: 8.17.1 lodash.truncate: 4.4.2 slice-ansi: 4.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 - tailwindcss@3.4.13: + tailwindcss@3.4.14: dependencies: "@alloc/quick-lru": 5.2.0 arg: 5.0.2 - chokidar: 3.5.3 + chokidar: 3.6.0 didyoumean: 1.2.2 dlv: 1.1.3 fast-glob: 3.3.2 glob-parent: 6.0.2 is-glob: 4.0.3 - jiti: 1.21.0 + jiti: 1.21.6 lilconfig: 2.1.0 - micromatch: 4.0.7 + micromatch: 4.0.8 normalize-path: 3.0.0 object-hash: 3.0.0 - picocolors: 1.0.1 + picocolors: 1.1.0 postcss: 8.4.47 postcss-import: 15.1.0(postcss@8.4.47) postcss-js: 4.0.1(postcss@8.4.47) postcss-load-config: 4.0.2(postcss@8.4.47) - postcss-nested: 6.0.1(postcss@8.4.47) - postcss-selector-parser: 6.1.1 + postcss-nested: 6.2.0(postcss@8.4.47) + postcss-selector-parser: 6.1.2 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: @@ -15037,10 +14376,10 @@ snapshots: type-fest: 2.19.0 unique-string: 3.0.0 - terser@5.26.0: + terser@5.34.0: dependencies: - "@jridgewell/source-map": 0.3.5 - acorn: 8.11.3 + "@jridgewell/source-map": 0.3.6 + acorn: 8.12.1 commander: 2.20.3 source-map-support: 0.5.21 @@ -15073,9 +14412,9 @@ snapshots: tinyexec@0.3.0: {} - tinyglobby@0.2.0: + tinyglobby@0.2.6: dependencies: - fdir: 6.2.0(picomatch@4.0.2) + fdir: 6.3.0(picomatch@4.0.2) picomatch: 4.0.2 tinyqueue@2.0.3: {} @@ -15106,89 +14445,89 @@ snapshots: tslib@1.14.1: {} - tslib@2.6.2: {} - tslib@2.7.0: {} - type-check@0.3.2: - dependencies: - prelude-ls: 1.1.2 - type-check@0.4.0: dependencies: prelude-ls: 1.2.1 type-fest@0.16.0: {} - type-fest@0.20.2: {} - type-fest@0.21.3: {} type-fest@1.4.0: {} type-fest@2.19.0: {} - type-fest@3.13.1: {} + type-fest@4.26.1: {} - type-fest@4.9.0: {} - - type@1.2.0: {} - - type@2.7.2: {} - - typed-array-buffer@1.0.0: + typed-array-buffer@1.0.2: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 - is-typed-array: 1.1.12 + call-bind: 1.0.7 + es-errors: 1.3.0 + is-typed-array: 1.1.13 - typed-array-byte-length@1.0.0: + typed-array-byte-length@1.0.1: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 - typed-array-byte-offset@1.0.0: + typed-array-byte-offset@1.0.2: dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 for-each: 0.3.3 - has-proto: 1.0.1 - is-typed-array: 1.1.12 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 - typed-array-length@1.0.4: + typed-array-length@1.0.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 - is-typed-array: 1.1.12 + gopd: 1.0.1 + has-proto: 1.0.3 + is-typed-array: 1.1.13 + possible-typed-array-names: 1.0.0 - typedarray@0.0.6: {} + typescript-eslint@8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4): + dependencies: + "@typescript-eslint/eslint-plugin": 8.9.0(@typescript-eslint/parser@8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) + "@typescript-eslint/parser": 8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) + "@typescript-eslint/utils": 8.9.0(eslint@9.12.0(jiti@1.21.6))(typescript@5.5.4) + optionalDependencies: + typescript: 5.5.4 + transitivePeerDependencies: + - eslint + - supports-color typescript@5.5.4: {} - uglify-js@3.17.4: + uglify-js@3.19.3: optional: true unbox-primitive@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - undici-types@5.26.5: {} + undici-types@6.19.8: {} - unicode-canonical-property-names-ecmascript@2.0.0: {} + unicode-canonical-property-names-ecmascript@2.0.1: {} unicode-emoji-modifier-base@1.0.0: {} unicode-match-property-ecmascript@2.0.0: dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.1.0 - unicode-match-property-value-ecmascript@2.1.0: {} + unicode-match-property-value-ecmascript@2.2.0: {} unicode-properties@1.4.1: dependencies: @@ -15204,6 +14543,8 @@ snapshots: unicorn-magic@0.1.0: {} + unicorn-magic@0.3.0: {} + unique-string@2.0.0: dependencies: crypto-random-string: 2.0.0 @@ -15218,23 +14559,11 @@ snapshots: upath@1.2.0: {} - update-browserslist-db@1.0.13(browserslist@4.23.0): + update-browserslist-db@1.1.1(browserslist@4.24.0): dependencies: - browserslist: 4.23.0 - escalade: 3.1.1 - picocolors: 1.0.0 - - update-browserslist-db@1.0.16(browserslist@4.23.1): - dependencies: - browserslist: 4.23.1 - escalade: 3.1.2 - picocolors: 1.0.1 - - update-browserslist-db@1.1.0(browserslist@4.23.3): - dependencies: - browserslist: 4.23.3 - escalade: 3.1.2 - picocolors: 1.0.1 + browserslist: 4.24.0 + escalade: 3.2.0 + picocolors: 1.1.0 uri-js@4.4.1: dependencies: @@ -15251,26 +14580,26 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - vite-plugin-pwa@0.20.5(vite@5.4.7(@types/node@20.10.5)(terser@5.26.0))(workbox-build@7.1.1)(workbox-window@7.1.0): + vite-plugin-pwa@0.20.5(vite@5.4.9(@types/node@22.7.3)(terser@5.34.0))(workbox-build@7.1.1)(workbox-window@7.1.0): dependencies: - debug: 4.3.6 + debug: 4.3.7 pretty-bytes: 6.1.1 - tinyglobby: 0.2.0 - vite: 5.4.7(@types/node@20.10.5)(terser@5.26.0) + tinyglobby: 0.2.6 + vite: 5.4.9(@types/node@22.7.3)(terser@5.34.0) workbox-build: 7.1.1 workbox-window: 7.1.0 transitivePeerDependencies: - supports-color - vite@5.4.7(@types/node@20.10.5)(terser@5.26.0): + vite@5.4.9(@types/node@22.7.3)(terser@5.34.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 rollup: 4.22.4 optionalDependencies: - "@types/node": 20.10.5 + "@types/node": 22.7.3 fsevents: 2.3.3 - terser: 5.26.0 + terser: 5.34.0 w3c-keyname@2.2.8: {} @@ -15305,13 +14634,13 @@ snapshots: which-module@2.0.1: {} - which-typed-array@1.1.13: + which-typed-array@1.1.15: dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 - has-tostringtag: 1.0.0 + has-tostringtag: 1.0.2 which@1.3.1: dependencies: @@ -15336,23 +14665,23 @@ snapshots: workbox-build@7.1.1: dependencies: - "@apideck/better-ajv-errors": 0.3.6(ajv@8.12.0) - "@babel/core": 7.24.4 - "@babel/preset-env": 7.23.6(@babel/core@7.24.4) - "@babel/runtime": 7.23.6 - "@rollup/plugin-babel": 5.3.1(@babel/core@7.24.4)(rollup@2.79.1) - "@rollup/plugin-node-resolve": 15.2.3(rollup@2.79.1) - "@rollup/plugin-replace": 2.4.2(rollup@2.79.1) - "@rollup/plugin-terser": 0.4.4(rollup@2.79.1) + "@apideck/better-ajv-errors": 0.3.6(ajv@8.17.1) + "@babel/core": 7.25.2 + "@babel/preset-env": 7.25.4(@babel/core@7.25.2) + "@babel/runtime": 7.25.6 + "@rollup/plugin-babel": 5.3.1(@babel/core@7.25.2)(rollup@2.79.2) + "@rollup/plugin-node-resolve": 15.3.0(rollup@2.79.2) + "@rollup/plugin-replace": 2.4.2(rollup@2.79.2) + "@rollup/plugin-terser": 0.4.4(rollup@2.79.2) "@surma/rollup-plugin-off-main-thread": 2.2.3 - ajv: 8.12.0 + ajv: 8.17.1 common-tags: 1.8.2 fast-json-stable-stringify: 2.1.0 fs-extra: 9.1.0 glob: 7.2.3 lodash: 4.17.21 pretty-bytes: 5.6.0 - rollup: 2.79.1 + rollup: 2.79.2 source-map: 0.8.0-beta.0 stringify-object: 3.3.0 strip-comments: 2.0.1 @@ -15459,7 +14788,7 @@ snapshots: wrap-ansi@9.0.0: dependencies: ansi-styles: 6.2.1 - string-width: 7.0.0 + string-width: 7.2.0 strip-ansi: 7.1.0 wrappy@1.0.2: {} @@ -15477,7 +14806,7 @@ snapshots: xmldoc@1.3.0: dependencies: - sax: 1.3.0 + sax: 1.4.1 xtend@4.0.2: {} @@ -15487,10 +14816,6 @@ snapshots: yallist@3.1.1: {} - yallist@4.0.0: {} - - yaml@2.4.5: {} - yaml@2.5.1: {} yargs-parser@18.1.3: @@ -15519,7 +14844,7 @@ snapshots: yargs@16.2.0: dependencies: cliui: 7.0.4 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 @@ -15529,7 +14854,7 @@ snapshots: yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 @@ -15538,6 +14863,6 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.0.0: {} + yocto-queue@1.1.1: {} - yoctocolors@2.1.0: {} + yoctocolors@2.1.1: {} diff --git a/themes/cp_admin/episode/persons.php b/themes/cp_admin/episode/persons.php index 4dae9ca1..0be4b9fe 100644 --- a/themes/cp_admin/episode/persons.php +++ b/themes/cp_admin/episode/persons.php @@ -26,7 +26,7 @@ diff --git a/themes/cp_admin/podcast/edit.php b/themes/cp_admin/podcast/edit.php index d038b1e4..670353d8 100644 --- a/themes/cp_admin/podcast/edit.php +++ b/themes/cp_admin/podcast/edit.php @@ -130,7 +130,7 @@