diff --git a/app/Controllers/PostController.php b/app/Controllers/PostController.php
index 3d5122b2..55456189 100644
--- a/app/Controllers/PostController.php
+++ b/app/Controllers/PostController.php
@@ -66,6 +66,11 @@ class PostController extends FediversePostController
$this->post = $post;
+ // show 404 if post is private
+ if ($this->post->is_private && ! can_user_interact()) {
+ throw PageNotFoundException::forPageNotFound();
+ }
+
unset($params[0]);
unset($params[1]);
@@ -183,6 +188,7 @@ class PostController extends FediversePostController
'actor_id' => interact_as_actor_id(),
'in_reply_to_id' => $this->post->id,
'message' => $validData['message'],
+ 'is_private' => $this->post->is_private,
'published_at' => Time::now(),
'created_by' => user_id(),
]);
diff --git a/app/Entities/Post.php b/app/Entities/Post.php
index 7cc46d1a..1f3c8168 100644
--- a/app/Entities/Post.php
+++ b/app/Entities/Post.php
@@ -34,6 +34,7 @@ class Post extends FediversePost
'episode_id' => '?integer',
'message' => 'string',
'message_html' => 'string',
+ 'is_private' => 'boolean',
'favourites_count' => 'integer',
'reblogs_count' => 'integer',
'replies_count' => 'integer',
diff --git a/app/Language/en/Post.php b/app/Language/en/Post.php
index 58d1cf80..df54cef8 100644
--- a/app/Language/en/Post.php
+++ b/app/Language/en/Post.php
@@ -37,4 +37,7 @@ return [
'block_actor' => 'Block user @{actorUsername}',
'block_domain' => 'Block domain @{actorDomain}',
'delete' => 'Delete post',
+ 'is_public' => 'Post is public',
+ 'is_private' => 'Post is private',
+ 'cannot_reblog' => 'This private post cannot be shared.',
];
diff --git a/app/Models/EpisodeCommentModel.php b/app/Models/EpisodeCommentModel.php
index f9954dc3..a0a75452 100644
--- a/app/Models/EpisodeCommentModel.php
+++ b/app/Models/EpisodeCommentModel.php
@@ -201,7 +201,7 @@ class EpisodeCommentModel extends UuidModel
{
// TODO: merge with replies from posts linked to episode linked
$episodeCommentsBuilder = $this->builder();
- $episodeComments = $episodeCommentsBuilder->select('*, 0 as is_from_post')
+ $episodeComments = $episodeCommentsBuilder->select('*, 0 as is_private, 0 as is_from_post')
->where([
'episode_id' => $episodeId,
'in_reply_to_id' => null,
@@ -211,7 +211,7 @@ class EpisodeCommentModel extends UuidModel
$postModel = new PostModel();
$episodePostsRepliesBuilder = $postModel->builder();
$episodePostsReplies = $episodePostsRepliesBuilder->select(
- 'id, uri, episode_id, actor_id, in_reply_to_id, message, message_html, favourites_count as likes_count, replies_count, published_at as created_at, created_by, 1 as is_from_post'
+ 'id, uri, episode_id, actor_id, in_reply_to_id, message, message_html, is_private, favourites_count as likes_count, replies_count, published_at as created_at, created_by, 1 as is_from_post'
)
->whereIn('in_reply_to_id', static function (BaseBuilder $builder) use (&$episodeId): BaseBuilder {
return $builder->select('id')
@@ -221,8 +221,14 @@ class EpisodeCommentModel extends UuidModel
'in_reply_to_id' => null,
]);
})
- ->where('`created_at` <= UTC_TIMESTAMP()', null, false)
- ->getCompiledSelect();
+ ->where('`created_at` <= UTC_TIMESTAMP()', null, false);
+
+ // do not get private replies if public
+ if (! can_user_interact()) {
+ $episodePostsRepliesBuilder->where('is_private', false);
+ }
+
+ $episodePostsReplies = $episodePostsRepliesBuilder->getCompiledSelect();
/** @var BaseResult $allEpisodeComments */
$allEpisodeComments = $this->db->query(
diff --git a/app/Models/PostModel.php b/app/Models/PostModel.php
index 25a834a7..8e1a97b0 100644
--- a/app/Models/PostModel.php
+++ b/app/Models/PostModel.php
@@ -32,6 +32,7 @@ class PostModel extends FediversePostModel
'episode_id',
'message',
'message_html',
+ 'is_private',
'favourites_count',
'reblogs_count',
'replies_count',
diff --git a/app/Resources/icons/custom/_index.php b/app/Resources/icons/custom/_index.php
new file mode 100644
index 00000000..0ef2821e
--- /dev/null
+++ b/app/Resources/icons/custom/_index.php
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/app/Resources/js/modules/audio-clipper.ts b/app/Resources/js/modules/audio-clipper.ts
index 0244575d..a5521273 100644
--- a/app/Resources/js/modules/audio-clipper.ts
+++ b/app/Resources/js/modules/audio-clipper.ts
@@ -744,7 +744,8 @@ export class AudioClipper extends LitElement {
var(--tw-ring-offset-shadow),
var(--tw-ring-shadow),
0 0 rgba(0, 0, 0, 0);
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
+ box-shadow:
+ var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));
--tw-ring-offset-width: 2px;
--tw-ring-opacity: 1;
diff --git a/app/Views/errors/html/debug.css b/app/Views/errors/html/debug.css
index a17243d0..b9c63b51 100644
--- a/app/Views/errors/html/debug.css
+++ b/app/Views/errors/html/debug.css
@@ -11,8 +11,9 @@
body {
height: 100%;
background: var(--main-bg-color);
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
- sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
+ font-family:
+ -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif,
+ "Apple Color Emoji", "Segoe UI Emoji";
color: var(--main-text-color);
font-weight: 300;
margin: 0;
diff --git a/modules/Fediverse/Controllers/ActorController.php b/modules/Fediverse/Controllers/ActorController.php
index f5b6d186..f999f1a9 100644
--- a/modules/Fediverse/Controllers/ActorController.php
+++ b/modules/Fediverse/Controllers/ActorController.php
@@ -111,6 +111,7 @@ class ActorController extends Controller
'actor_id' => $payloadActor->id,
'in_reply_to_id' => $replyToPost->id,
'message' => $message,
+ 'is_private' => ! is_note_public($payload->object),
'published_at' => Time::parse($payload->object->published),
]);
}
diff --git a/modules/Fediverse/Database/Migrations/2018-01-02-120000_update_activities_status.php b/modules/Fediverse/Database/Migrations/2018-01-02-120000_update_activities_status copy.php
similarity index 67%
rename from modules/Fediverse/Database/Migrations/2018-01-02-120000_update_activities_status.php
rename to modules/Fediverse/Database/Migrations/2018-01-02-120000_update_activities_status copy.php
index 4ccf84d8..4ff7f175 100644
--- a/modules/Fediverse/Database/Migrations/2018-01-02-120000_update_activities_status.php
+++ b/modules/Fediverse/Database/Migrations/2018-01-02-120000_update_activities_status copy.php
@@ -26,4 +26,17 @@ class UpdateActivitiesStatus extends BaseMigration
$this->forge->modifyColumn('fediverse_activities', $fields);
}
+
+ public function down(): void
+ {
+ $fields = [
+ 'status' => [
+ 'type' => 'ENUM',
+ 'constraint' => ['queued', 'delivered'],
+ 'null' => true,
+ ],
+ ];
+
+ $this->forge->modifyColumn('fediverse_activities', $fields);
+ }
}
diff --git a/modules/Fediverse/Database/Migrations/2025-07-31-120000_add_is_private_to_posts.php b/modules/Fediverse/Database/Migrations/2025-07-31-120000_add_is_private_to_posts.php
new file mode 100644
index 00000000..d1ac9327
--- /dev/null
+++ b/modules/Fediverse/Database/Migrations/2025-07-31-120000_add_is_private_to_posts.php
@@ -0,0 +1,35 @@
+ [
+ 'type' => 'TINYINT',
+ 'constraint' => 1,
+ 'default' => 0,
+ 'after' => 'message_html',
+ ],
+ ];
+
+ $this->forge->addColumn('fediverse_posts', $fields);
+ }
+
+ public function down(): void
+ {
+ $this->forge->dropColumn('fediverse_posts', 'is_private');
+ }
+}
diff --git a/modules/Fediverse/Entities/Post.php b/modules/Fediverse/Entities/Post.php
index f791d57f..c1b5e3ac 100644
--- a/modules/Fediverse/Entities/Post.php
+++ b/modules/Fediverse/Entities/Post.php
@@ -25,9 +25,12 @@ use RuntimeException;
* @property Post|null $reblog_of_post
* @property string $message
* @property string $message_html
+ * @property bool $is_private
+ *
* @property int $favourites_count
* @property int $reblogs_count
* @property int $replies_count
+ *
* @property Time $published_at
* @property Time $created_at
*
@@ -80,6 +83,7 @@ class Post extends UuidEntity
'reblog_of_id' => '?string',
'message' => 'string',
'message_html' => 'string',
+ 'is_private' => 'boolean',
'favourites_count' => 'integer',
'reblogs_count' => 'integer',
'replies_count' => 'integer',
diff --git a/modules/Fediverse/Filters/FediverseFilter.php b/modules/Fediverse/Filters/FediverseFilter.php
index 44222073..bb5b6338 100644
--- a/modules/Fediverse/Filters/FediverseFilter.php
+++ b/modules/Fediverse/Filters/FediverseFilter.php
@@ -60,6 +60,8 @@ class FediverseFilter implements FilterInterface
}
}
+ log_message('critical', 'ITS HEEEEEEEEEEEERE');
+
if (in_array('verify-signature', $params, true)) {
try {
// securityCheck: check activity signature before handling it
diff --git a/modules/Fediverse/Helpers/fediverse_helper.php b/modules/Fediverse/Helpers/fediverse_helper.php
index d73bbe14..c842d8e5 100644
--- a/modules/Fediverse/Helpers/fediverse_helper.php
+++ b/modules/Fediverse/Helpers/fediverse_helper.php
@@ -345,7 +345,7 @@ if (! function_exists('get_message_from_object')) {
*/
function get_message_from_object(stdClass $object): string | false
{
- if (property_exists($object, 'content')) {
+ if (property_exists($object, 'content') && is_string($object->content)) {
extract_text_from_html($object->content);
return $object->content;
}
@@ -365,6 +365,29 @@ if (! function_exists('get_message_from_object')) {
}
}
+if (! function_exists('is_note_public')) {
+ /**
+ * Check whether note is public or not
+ */
+ function is_note_public(stdClass $object): bool
+ {
+ $isPublic = false;
+ if (property_exists($object, 'to') && is_array($object->to)) {
+ $isPublic = in_array('https://www.w3.org/ns/activitystreams#Public', $object->to, true);
+ }
+
+ if ($isPublic) {
+ return true;
+ }
+
+ if (property_exists($object, 'cc') && is_array($object->cc)) {
+ return in_array('https://www.w3.org/ns/activitystreams#Public', $object->cc, true);
+ }
+
+ return $isPublic;
+ }
+}
+
if (! function_exists('linkify')) {
/**
* Turn all link elements in clickable links. Transforms urls and handles
diff --git a/modules/Fediverse/Models/PostModel.php b/modules/Fediverse/Models/PostModel.php
index cec9dcf8..f98744f1 100644
--- a/modules/Fediverse/Models/PostModel.php
+++ b/modules/Fediverse/Models/PostModel.php
@@ -52,6 +52,7 @@ class PostModel extends UuidModel
'reblog_of_id',
'message',
'message_html',
+ 'is_private',
'favourites_count',
'reblogs_count',
'replies_count',
@@ -183,6 +184,12 @@ class PostModel extends UuidModel
$this->where('in_reply_to_id', $this->uuid->fromString($postId) ->getBytes())
->where('`published_at` <= UTC_TIMESTAMP()', null, false)
->orderBy('published_at', 'ASC');
+
+ // do not get private replies if public
+ if (! can_user_interact()) {
+ $this->where('is_private', false);
+ }
+
$found = $this->findAll();
cache()
@@ -284,6 +291,10 @@ class PostModel extends UuidModel
->set('actor', $post->actor->uri)
->set('object', new $noteObjectClass($post));
+ if ($post->in_reply_to_id !== null && $post->is_private) {
+ $createActivity->set('to', [$post->reply_to_post->actor->uri]);
+ }
+
$activityId = model('ActivityModel', false)
->newActivity(
'Create',
@@ -409,11 +420,13 @@ class PostModel extends UuidModel
Events::trigger('on_post_remove', $post);
} elseif ($post->in_reply_to_id !== null) {
- // Post to remove is a reply
- model('PostModel', false)
- ->builder()
- ->where('id', $this->uuid->fromString($post->in_reply_to_id) ->getBytes())
- ->decrement('replies_count');
+ if (! $post->is_private) {
+ // Post to remove is a reply
+ model('PostModel', false)
+ ->builder()
+ ->where('id', $this->uuid->fromString($post->in_reply_to_id) ->getBytes())
+ ->decrement('replies_count');
+ }
Events::trigger('on_reply_remove', $post);
}
@@ -441,10 +454,12 @@ class PostModel extends UuidModel
$postId = $this->addPost($reply, $createPreviewCard, $registerActivity);
- model('PostModel', false)
- ->builder()
- ->where('id', $this->uuid->fromString($reply->in_reply_to_id) ->getBytes())
- ->increment('replies_count');
+ if (! $reply->is_private) {
+ model('PostModel', false)
+ ->builder()
+ ->where('id', $this->uuid->fromString($reply->in_reply_to_id) ->getBytes())
+ ->increment('replies_count');
+ }
Events::trigger('on_post_reply', $reply);
@@ -457,6 +472,11 @@ class PostModel extends UuidModel
public function reblog(Actor $actor, Post $post, bool $registerActivity = true): string | false
{
+ // cannot reblog a private post
+ if ($post->is_private) {
+ return false;
+ }
+
$this->db->transStart();
$userId = null;
diff --git a/modules/Fediverse/Objects/NoteObject.php b/modules/Fediverse/Objects/NoteObject.php
index 561ce89b..73af27a3 100644
--- a/modules/Fediverse/Objects/NoteObject.php
+++ b/modules/Fediverse/Objects/NoteObject.php
@@ -39,13 +39,19 @@ class NoteObject extends ObjectType
$this->attributedTo = $post->actor->uri;
if ($post->in_reply_to_id !== null) {
- $this->to[] = $post->reply_to_post->actor->uri;
+ if ($post->is_private) {
+ $this->to = [$post->reply_to_post->actor->uri];
+ } else {
+ $this->to[] = $post->reply_to_post->actor->uri;
+ }
$this->inReplyTo = $post->reply_to_post->uri;
}
$this->replies = url_to('post-replies', esc($post->actor->username), $post->id);
- $this->cc = [$post->actor->followers_url];
+ if (! $post->is_private) {
+ $this->cc = [$post->actor->followers_url];
+ }
}
}
diff --git a/package.json b/package.json
index ba9d76fe..d7efde0c 100644
--- a/package.json
+++ b/package.json
@@ -26,18 +26,18 @@
"prepare": "is-ci || husky"
},
"dependencies": {
- "@amcharts/amcharts4": "^4.10.39",
+ "@amcharts/amcharts4": "^4.10.40",
"@amcharts/amcharts4-geodata": "^4.1.30",
- "@codemirror/commands": "^6.7.1",
+ "@codemirror/commands": "^6.8.1",
"@codemirror/lang-xml": "^6.1.0",
- "@codemirror/language": "^6.10.8",
- "@codemirror/state": "^6.5.0",
- "@codemirror/view": "^6.36.1",
- "@floating-ui/dom": "^1.6.13",
+ "@codemirror/language": "^6.11.0",
+ "@codemirror/state": "^6.5.2",
+ "@codemirror/view": "^6.36.8",
+ "@floating-ui/dom": "^1.7.0",
"@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.4",
+ "@github/relative-time-element": "^4.4.8",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@vime/core": "^5.4.1",
"choices.js": "^10.2.0",
@@ -45,52 +45,52 @@
"flatpickr": "^4.6.13",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
- "lit": "^3.2.1",
- "marked": "^15.0.6",
- "wavesurfer.js": "^7.8.15",
- "xml-formatter": "^3.6.3"
+ "lit": "^3.3.0",
+ "marked": "^15.0.11",
+ "wavesurfer.js": "^7.9.5",
+ "xml-formatter": "^3.6.6"
},
"devDependencies": {
- "@commitlint/cli": "^19.6.1",
- "@commitlint/config-conventional": "^19.6.0",
+ "@commitlint/cli": "^19.8.1",
+ "@commitlint/config-conventional": "^19.8.1",
"@csstools/css-tokenizer": "^3.0.3",
"@semantic-release/changelog": "^6.0.3",
- "@semantic-release/exec": "^6.0.3",
+ "@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
- "@semantic-release/gitlab": "^13.2.3",
+ "@semantic-release/gitlab": "^13.2.5",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
- "@types/leaflet": "^1.9.16",
- "@typescript-eslint/eslint-plugin": "^8.19.1",
- "@typescript-eslint/parser": "^8.19.1",
+ "@types/leaflet": "^1.9.17",
+ "@typescript-eslint/eslint-plugin": "^8.32.1",
+ "@typescript-eslint/parser": "^8.32.1",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
- "cssnano": "^7.0.6",
+ "cssnano": "^7.0.7",
"cz-conventional-changelog": "^3.3.0",
- "eslint": "^9.17.0",
- "eslint-config-prettier": "^9.1.0",
- "eslint-plugin-prettier": "^5.2.1",
- "globals": "^15.14.0",
+ "eslint": "^9.26.0",
+ "eslint-config-prettier": "^10.1.5",
+ "eslint-plugin-prettier": "^5.4.0",
+ "globals": "^16.1.0",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
- "lint-staged": "^15.3.0",
- "postcss": "^8.4.49",
+ "lint-staged": "^16.0.0",
+ "postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
- "postcss-preset-env": "^10.1.3",
+ "postcss-preset-env": "^10.1.6",
"postcss-reporter": "^7.1.0",
- "prettier": "3.4.2",
+ "prettier": "3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
- "semantic-release": "^24.2.1",
- "stylelint": "^16.12.0",
+ "semantic-release": "^24.2.3",
+ "stylelint": "^16.19.1",
"stylelint-config-standard": "^36.0.1",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.17",
- "typescript": "~5.7.2",
- "typescript-eslint": "^8.19.1",
- "vite": "^6.0.7",
- "vite-plugin-pwa": "^0.21.1",
+ "typescript": "~5.7.3",
+ "typescript-eslint": "^8.32.1",
+ "vite": "^6.3.5",
+ "vite-plugin-pwa": "^1.0.0",
"workbox-build": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-routing": "^7.3.0",
@@ -105,7 +105,7 @@
"stylelint --fix",
"prettier --write"
],
- "!(*.css|*.js|*.ts|*.php|*.neon|*.sh)": [
+ "!(*.css|*.js|*.ts|*.php|*.neon|*.sh|*.svg)": [
"prettier --write"
]
},
diff --git a/php-icons.php b/php-icons.php
index 64c626a3..ac499d60 100644
--- a/php-icons.php
+++ b/php-icons.php
@@ -10,6 +10,7 @@ return PHPIconsConfig::configure()
'funding' => __DIR__ . '/app/Resources/icons/funding',
'podcasting' => __DIR__ . '/app/Resources/icons/podcasting',
'social' => __DIR__ . '/app/Resources/icons/social',
+ 'custom' => __DIR__ . '/app/Resources/icons/custom',
])
->withDefaultIconPerSet([
'funding' => 'funding:default',
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c4935700..9976309d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -8,29 +8,29 @@ importers:
.:
dependencies:
"@amcharts/amcharts4":
- specifier: ^4.10.39
- version: 4.10.39
+ specifier: ^4.10.40
+ version: 4.10.40
"@amcharts/amcharts4-geodata":
specifier: ^4.1.30
version: 4.1.30
"@codemirror/commands":
- specifier: ^6.7.1
- version: 6.7.1
+ specifier: ^6.8.1
+ version: 6.8.1
"@codemirror/lang-xml":
specifier: ^6.1.0
version: 6.1.0
"@codemirror/language":
- specifier: ^6.10.8
- version: 6.10.8
+ specifier: ^6.11.0
+ version: 6.11.0
"@codemirror/state":
- specifier: ^6.5.0
- version: 6.5.0
+ specifier: ^6.5.2
+ version: 6.5.2
"@codemirror/view":
- specifier: ^6.36.1
- version: 6.36.1
+ specifier: ^6.36.8
+ version: 6.36.8
"@floating-ui/dom":
- specifier: ^1.6.13
- version: 1.6.13
+ specifier: ^1.7.0
+ version: 1.7.0
"@github/clipboard-copy-element":
specifier: ^1.3.0
version: 1.3.0
@@ -41,11 +41,11 @@ importers:
specifier: ^2.2.3
version: 2.2.3
"@github/relative-time-element":
- specifier: ^4.4.4
- version: 4.4.4
+ specifier: ^4.4.8
+ version: 4.4.8
"@tailwindcss/nesting":
specifier: 0.0.0-insiders.565cd3e
- version: 0.0.0-insiders.565cd3e(postcss@8.4.49)
+ version: 0.0.0-insiders.565cd3e(postcss@8.5.3)
"@vime/core":
specifier: ^5.4.1
version: 5.4.1
@@ -54,7 +54,7 @@ importers:
version: 10.2.0
codemirror:
specifier: ^6.0.1
- version: 6.0.1(@lezer/common@1.2.0)
+ version: 6.0.1
flatpickr:
specifier: ^4.6.13
version: 4.6.13
@@ -65,39 +65,39 @@ importers:
specifier: ^1.5.3
version: 1.5.3(leaflet@1.9.4)
lit:
- specifier: ^3.2.1
- version: 3.2.1
+ specifier: ^3.3.0
+ version: 3.3.0
marked:
- specifier: ^15.0.6
- version: 15.0.6
+ specifier: ^15.0.11
+ version: 15.0.11
wavesurfer.js:
- specifier: ^7.8.15
- version: 7.8.15
+ specifier: ^7.9.5
+ version: 7.9.5
xml-formatter:
- specifier: ^3.6.3
- version: 3.6.3
+ specifier: ^3.6.6
+ version: 3.6.6
devDependencies:
"@commitlint/cli":
- specifier: ^19.6.1
- version: 19.6.1(@types/node@20.10.5)(typescript@5.7.2)
+ specifier: ^19.8.1
+ version: 19.8.1(@types/node@22.15.17)(typescript@5.7.3)
"@commitlint/config-conventional":
- specifier: ^19.6.0
- version: 19.6.0
+ specifier: ^19.8.1
+ version: 19.8.1
"@csstools/css-tokenizer":
specifier: ^3.0.3
version: 3.0.3
"@semantic-release/changelog":
specifier: ^6.0.3
- version: 6.0.3(semantic-release@24.2.1(typescript@5.7.2))
+ version: 6.0.3(semantic-release@24.2.3(typescript@5.7.3))
"@semantic-release/exec":
- specifier: ^6.0.3
- version: 6.0.3(semantic-release@24.2.1(typescript@5.7.2))
+ specifier: ^7.1.0
+ version: 7.1.0(semantic-release@24.2.3(typescript@5.7.3))
"@semantic-release/git":
specifier: ^10.0.1
- version: 10.0.1(semantic-release@24.2.1(typescript@5.7.2))
+ version: 10.0.1(semantic-release@24.2.3(typescript@5.7.3))
"@semantic-release/gitlab":
- specifier: ^13.2.3
- version: 13.2.3(semantic-release@24.2.1(typescript@5.7.2))
+ specifier: ^13.2.5
+ version: 13.2.5(semantic-release@24.2.3(typescript@5.7.3))
"@tailwindcss/forms":
specifier: ^0.5.10
version: 0.5.10(tailwindcss@3.4.17)
@@ -105,41 +105,41 @@ importers:
specifier: ^0.5.16
version: 0.5.16(tailwindcss@3.4.17)
"@types/leaflet":
- specifier: ^1.9.16
- version: 1.9.16
+ specifier: ^1.9.17
+ version: 1.9.17
"@typescript-eslint/eslint-plugin":
- specifier: ^8.19.1
- version: 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ specifier: ^8.32.1
+ version: 8.32.1(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
"@typescript-eslint/parser":
- specifier: ^8.19.1
- version: 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ specifier: ^8.32.1
+ version: 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
all-contributors-cli:
specifier: ^6.26.1
version: 6.26.1
commitizen:
specifier: ^4.3.1
- version: 4.3.1(@types/node@20.10.5)(typescript@5.7.2)
+ version: 4.3.1(@types/node@22.15.17)(typescript@5.7.3)
cross-env:
specifier: ^7.0.3
version: 7.0.3
cssnano:
- specifier: ^7.0.6
- version: 7.0.6(postcss@8.4.49)
+ specifier: ^7.0.7
+ version: 7.0.7(postcss@8.5.3)
cz-conventional-changelog:
specifier: ^3.3.0
- version: 3.3.0(@types/node@20.10.5)(typescript@5.7.2)
+ version: 3.3.0(@types/node@22.15.17)(typescript@5.7.3)
eslint:
- specifier: ^9.17.0
- version: 9.17.0(jiti@2.4.2)
+ specifier: ^9.26.0
+ version: 9.26.0(jiti@2.4.2)
eslint-config-prettier:
- specifier: ^9.1.0
- version: 9.1.0(eslint@9.17.0(jiti@2.4.2))
+ specifier: ^10.1.5
+ version: 10.1.5(eslint@9.26.0(jiti@2.4.2))
eslint-plugin-prettier:
- specifier: ^5.2.1
- version: 5.2.1(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2)
+ specifier: ^5.4.0
+ version: 5.4.0(eslint-config-prettier@10.1.5(eslint@9.26.0(jiti@2.4.2)))(eslint@9.26.0(jiti@2.4.2))(prettier@3.5.3)
globals:
- specifier: ^15.14.0
- version: 15.14.0
+ specifier: ^16.1.0
+ version: 16.1.0
husky:
specifier: ^9.1.7
version: 9.1.7
@@ -147,38 +147,38 @@ importers:
specifier: ^4.1.0
version: 4.1.0
lint-staged:
- specifier: ^15.3.0
- version: 15.3.0
+ specifier: ^16.0.0
+ version: 16.0.0
postcss:
- specifier: ^8.4.49
- version: 8.4.49
+ specifier: ^8.5.3
+ version: 8.5.3
postcss-import:
specifier: ^16.1.0
- version: 16.1.0(postcss@8.4.49)
+ version: 16.1.0(postcss@8.5.3)
postcss-nesting:
specifier: ^13.0.1
- version: 13.0.1(postcss@8.4.49)
+ version: 13.0.1(postcss@8.5.3)
postcss-preset-env:
- specifier: ^10.1.3
- version: 10.1.3(postcss@8.4.49)
+ specifier: ^10.1.6
+ version: 10.1.6(postcss@8.5.3)
postcss-reporter:
specifier: ^7.1.0
- version: 7.1.0(postcss@8.4.49)
+ version: 7.1.0(postcss@8.5.3)
prettier:
- specifier: 3.4.2
- version: 3.4.2
+ specifier: 3.5.3
+ version: 3.5.3
prettier-plugin-organize-imports:
specifier: ^4.1.0
- version: 4.1.0(prettier@3.4.2)(typescript@5.7.2)
+ version: 4.1.0(prettier@3.5.3)(typescript@5.7.3)
semantic-release:
- specifier: ^24.2.1
- version: 24.2.1(typescript@5.7.2)
+ specifier: ^24.2.3
+ version: 24.2.3(typescript@5.7.3)
stylelint:
- specifier: ^16.12.0
- version: 16.12.0(typescript@5.7.2)
+ specifier: ^16.19.1
+ version: 16.19.1(typescript@5.7.3)
stylelint-config-standard:
specifier: ^36.0.1
- version: 36.0.1(stylelint@16.12.0(typescript@5.7.2))
+ version: 36.0.1(stylelint@16.19.1(typescript@5.7.3))
svgo:
specifier: ^3.3.2
version: 3.3.2
@@ -186,17 +186,17 @@ importers:
specifier: ^3.4.17
version: 3.4.17
typescript:
- specifier: ~5.7.2
- version: 5.7.2
+ specifier: ~5.7.3
+ version: 5.7.3
typescript-eslint:
- specifier: ^8.19.1
- version: 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ specifier: ^8.32.1
+ version: 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
vite:
- specifier: ^6.0.7
- version: 6.0.7(@types/node@20.10.5)(jiti@2.4.2)(terser@5.26.0)(yaml@2.6.1)
+ specifier: ^6.3.5
+ version: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(terser@5.39.0)(yaml@2.7.1)
vite-plugin-pwa:
- specifier: ^0.21.1
- version: 0.21.1(vite@6.0.7(@types/node@20.10.5)(jiti@2.4.2)(terser@5.26.0)(yaml@2.6.1))(workbox-build@7.3.0)(workbox-window@7.3.0)
+ specifier: ^1.0.0
+ version: 1.0.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(terser@5.39.0)(yaml@2.7.1))(workbox-build@7.3.0)(workbox-window@7.3.0)
workbox-build:
specifier: ^7.3.0
version: 7.3.0
@@ -211,13 +211,6 @@ importers:
version: 7.3.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:
{
@@ -231,16 +224,16 @@ packages:
integrity: sha512-dM2wOMyyivHpTI+T3RxXgcgN0cv23DzMFuG2s/0ImNZGAWn97RdCdtbVEGcaI1Bi+hbbV9n0X7onNP5bnxZ+RQ==,
}
- "@amcharts/amcharts4@4.10.39":
+ "@amcharts/amcharts4@4.10.40":
resolution:
{
- integrity: sha512-5WbpZgI0m0Mf8Ydwlm1XWB8hIzkk6fJifzYmJqo5HLdA8jCQa+4I+8uOlGlvSMxbBTkvxanEgA2WX27+99X44w==,
+ integrity: sha512-F5RrlWCg/fIRvTnnXenWZg7bTlEWJDvELyvXVAAi5GFvFVF4IegIP1vk5TatkgBzYO5v+SNGj2S3N1MkLwYA8w==,
}
- "@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" }
@@ -253,264 +246,219 @@ packages:
peerDependencies:
ajv: ">=8"
- "@babel/code-frame@7.23.5":
+ "@babel/code-frame@7.27.1":
resolution:
{
- integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==,
+ integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==,
}
engines: { node: ">=6.9.0" }
- "@babel/code-frame@7.24.2":
+ "@babel/compat-data@7.27.2":
resolution:
{
- integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==,
+ integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==,
}
engines: { node: ">=6.9.0" }
- "@babel/compat-data@7.23.5":
+ "@babel/core@7.27.1":
resolution:
{
- integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==,
+ integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==,
}
engines: { node: ">=6.9.0" }
- "@babel/core@7.24.4":
+ "@babel/generator@7.27.1":
resolution:
{
- integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==,
+ integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==,
}
engines: { node: ">=6.9.0" }
- "@babel/generator@7.24.4":
+ "@babel/helper-annotate-as-pure@7.27.1":
resolution:
{
- integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==,
+ integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-annotate-as-pure@7.22.5":
+ "@babel/helper-compilation-targets@7.27.2":
resolution:
{
- integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==,
+ integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15":
+ "@babel/helper-create-class-features-plugin@7.27.1":
resolution:
{
- integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helper-compilation-targets@7.23.6":
- 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-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==,
}
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.27.1":
resolution:
{
- integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==,
+ integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==,
}
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.4":
resolution:
{
- integrity: sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==,
+ integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==,
}
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.27.1":
resolution:
{
- integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
+ integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-function-name@7.23.0":
+ "@babel/helper-module-imports@7.27.1":
resolution:
{
- integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
+ integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-hoist-variables@7.22.5":
+ "@babel/helper-module-transforms@7.27.1":
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-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==,
}
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.27.1":
resolution:
{
- integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==,
+ integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-plugin-utils@7.22.5":
+ "@babel/helper-plugin-utils@7.27.1":
resolution:
{
- integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
+ integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-remap-async-to-generator@7.22.20":
+ "@babel/helper-remap-async-to-generator@7.27.1":
resolution:
{
- integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==,
+ integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0
- "@babel/helper-replace-supers@7.22.20":
+ "@babel/helper-replace-supers@7.27.1":
resolution:
{
- integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==,
+ integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0
- "@babel/helper-simple-access@7.22.5":
+ "@babel/helper-skip-transparent-expression-wrappers@7.27.1":
resolution:
{
- integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
+ integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-skip-transparent-expression-wrappers@7.22.5":
+ "@babel/helper-string-parser@7.27.1":
resolution:
{
- integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==,
+ integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-split-export-declaration@7.22.6":
+ "@babel/helper-validator-identifier@7.27.1":
resolution:
{
- integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
+ integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-string-parser@7.23.4":
+ "@babel/helper-validator-option@7.27.1":
resolution:
{
- integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==,
+ integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-validator-identifier@7.22.20":
+ "@babel/helper-wrap-function@7.27.1":
resolution:
{
- integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
+ integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-validator-option@7.23.5":
+ "@babel/helpers@7.27.1":
resolution:
{
- integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==,
+ integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==,
}
engines: { node: ">=6.9.0" }
- "@babel/helper-wrap-function@7.22.20":
+ "@babel/parser@7.27.2":
resolution:
{
- integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/helpers@7.24.4":
- resolution:
- {
- integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==,
- }
- engines: { node: ">=6.9.0" }
-
- "@babel/highlight@7.23.4":
- 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-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==,
}
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.27.1":
resolution:
{
- integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==,
+ integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==,
}
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.27.1":
resolution:
{
- integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==,
+ integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0
+
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1":
+ resolution:
+ {
+ integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0
+
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1":
+ resolution:
+ {
+ integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==,
}
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.27.1":
resolution:
{
- integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==,
+ integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
@@ -525,142 +473,19 @@ packages:
peerDependencies:
"@babel/core": ^7.0.0-0
- "@babel/plugin-syntax-async-generators@7.8.4":
+ "@babel/plugin-syntax-import-assertions@7.27.1":
resolution:
{
- integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-class-properties@7.12.13":
- resolution:
- {
- integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-class-static-block@7.14.5":
- resolution:
- {
- integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
+ integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
- "@babel/plugin-syntax-dynamic-import@7.8.3":
+ "@babel/plugin-syntax-import-attributes@7.27.1":
resolution:
{
- integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-export-namespace-from@7.8.3":
- resolution:
- {
- integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-assertions@7.23.3":
- resolution:
- {
- integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-attributes@7.23.3":
- resolution:
- {
- integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-import-meta@7.10.4":
- resolution:
- {
- integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-json-strings@7.8.3":
- resolution:
- {
- integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4":
- resolution:
- {
- integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3":
- resolution:
- {
- integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-numeric-separator@7.10.4":
- resolution:
- {
- integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-object-rest-spread@7.8.3":
- resolution:
- {
- integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-optional-catch-binding@7.8.3":
- resolution:
- {
- integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-optional-chaining@7.8.3":
- resolution:
- {
- integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==,
- }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-private-property-in-object@7.14.5":
- resolution:
- {
- integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
- }
- engines: { node: ">=6.9.0" }
- peerDependencies:
- "@babel/core": ^7.0.0-0
-
- "@babel/plugin-syntax-top-level-await@7.14.5":
- resolution:
- {
- integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==,
+ integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
@@ -675,442 +500,460 @@ packages:
peerDependencies:
"@babel/core": ^7.0.0
- "@babel/plugin-transform-arrow-functions@7.23.3":
+ "@babel/plugin-transform-arrow-functions@7.27.1":
resolution:
{
- integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==,
+ integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==,
}
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.27.1":
resolution:
{
- integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==,
+ integrity: sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==,
}
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.27.1":
resolution:
{
- integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==,
+ integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==,
}
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.27.1":
resolution:
{
- integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==,
+ integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==,
}
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.27.1":
resolution:
{
- integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==,
+ integrity: sha512-QEcFlMl9nGTgh1rn2nIeU5bkfb9BAjaQcWbiP4LvKxUot52ABcTkpcyJ7f2Q2U2RuQ84BNLgts3jRme2dTx6Fw==,
}
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.27.1":
resolution:
{
- integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==,
+ integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==,
}
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.27.1":
resolution:
{
- integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==,
+ integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.12.0
- "@babel/plugin-transform-classes@7.23.5":
+ "@babel/plugin-transform-classes@7.27.1":
resolution:
{
- integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==,
+ integrity: sha512-7iLhfFAubmpeJe/Wo2TVuDrykh/zlWXLzPNdL0Jqn/Xu8R3QQ8h9ff8FQoISZOsw74/HFqFI7NX63HN7QFIHKA==,
}
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.27.1":
resolution:
{
- integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==,
+ integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0-0
- "@babel/plugin-transform-destructuring@7.23.3":
+ "@babel/plugin-transform-destructuring@7.27.1":
resolution:
{
- integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==,
+ integrity: sha512-ttDCqhfvpE9emVkXbPD8vyxxh4TWYACVybGkDj+oReOGwnp066ITEivDlLwe0b1R0+evJ13IXQuLNB5w1fhC5Q==,
}
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.27.1":
resolution:
{
- integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==,
+ integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==,
}
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.27.1":
resolution:
{
- integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==,
+ integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==,
}
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.27.1":
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-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==,
}
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.27.1":
resolution:
{
- integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==,
+ integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==,
}
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.27.1":
resolution:
{
- integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==,
+ integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==,
}
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.27.1":
resolution:
{
- integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==,
+ integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==,
}
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.27.1":
resolution:
{
- integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==,
+ integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==,
}
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.27.1":
resolution:
{
- integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==,
+ integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==,
}
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.27.1":
resolution:
{
- integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==,
+ integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==,
}
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.27.1":
resolution:
{
- integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==,
+ integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==,
}
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.27.1":
resolution:
{
- integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==,
+ integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==,
}
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.27.1":
resolution:
{
- integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==,
+ integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==,
}
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.27.1":
resolution:
{
- integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==,
+ integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==,
}
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.27.1":
resolution:
{
- integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==,
+ integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==,
}
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.27.1":
resolution:
{
- integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==,
+ integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==,
}
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.27.1":
resolution:
{
- integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==,
+ integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==,
}
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.27.1":
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-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
"@babel/core": ^7.0.0
- "@babel/preset-env@7.23.6":
+ "@babel/plugin-transform-new-target@7.27.1":
resolution:
{
- integrity: sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==,
+ integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-nullish-coalescing-operator@7.27.1":
+ resolution:
+ {
+ integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-numeric-separator@7.27.1":
+ resolution:
+ {
+ integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-object-rest-spread@7.27.2":
+ resolution:
+ {
+ integrity: sha512-AIUHD7xJ1mCrj3uPozvtngY3s0xpv7Nu7DoUSnzNY6Xam1Cy4rUznR//pvMHOhQ4AvbCexhbqXCtpxGHOGOO6g==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-object-super@7.27.1":
+ resolution:
+ {
+ integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-optional-catch-binding@7.27.1":
+ resolution:
+ {
+ integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-optional-chaining@7.27.1":
+ resolution:
+ {
+ integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-parameters@7.27.1":
+ resolution:
+ {
+ integrity: sha512-018KRk76HWKeZ5l4oTj2zPpSh+NbGdt0st5S6x0pga6HgrjBOJb24mMDHorFopOOd6YHkLgOZ+zaCjZGPO4aKg==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-private-methods@7.27.1":
+ resolution:
+ {
+ integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-private-property-in-object@7.27.1":
+ resolution:
+ {
+ integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-property-literals@7.27.1":
+ resolution:
+ {
+ integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-regenerator@7.27.1":
+ resolution:
+ {
+ integrity: sha512-B19lbbL7PMrKr52BNPjCqg1IyNUIjTcxKj8uX9zHO+PmWN93s19NDr/f69mIkEp2x9nmDJ08a7lgHaTTzvW7mw==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-regexp-modifiers@7.27.1":
+ resolution:
+ {
+ integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0
+
+ "@babel/plugin-transform-reserved-words@7.27.1":
+ resolution:
+ {
+ integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-shorthand-properties@7.27.1":
+ resolution:
+ {
+ integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-spread@7.27.1":
+ resolution:
+ {
+ integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-sticky-regex@7.27.1":
+ resolution:
+ {
+ integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-template-literals@7.27.1":
+ resolution:
+ {
+ integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-typeof-symbol@7.27.1":
+ resolution:
+ {
+ integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-unicode-escapes@7.27.1":
+ resolution:
+ {
+ integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-unicode-property-regex@7.27.1":
+ resolution:
+ {
+ integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-unicode-regex@7.27.1":
+ resolution:
+ {
+ integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+
+ "@babel/plugin-transform-unicode-sets-regex@7.27.1":
+ resolution:
+ {
+ integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==,
+ }
+ engines: { node: ">=6.9.0" }
+ peerDependencies:
+ "@babel/core": ^7.0.0
+
+ "@babel/preset-env@7.27.2":
+ resolution:
+ {
+ integrity: sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==,
}
engines: { node: ">=6.9.0" }
peerDependencies:
@@ -1124,55 +967,44 @@ packages:
peerDependencies:
"@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0
- "@babel/regjsgen@0.8.0":
+ "@babel/runtime@7.27.1":
resolution:
{
- integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==,
- }
-
- "@babel/runtime@7.23.6":
- resolution:
- {
- integrity: sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==,
+ integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==,
}
engines: { node: ">=6.9.0" }
- "@babel/template@7.24.0":
+ "@babel/template@7.27.2":
resolution:
{
- integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==,
+ integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==,
}
engines: { node: ">=6.9.0" }
- "@babel/traverse@7.24.1":
+ "@babel/traverse@7.27.1":
resolution:
{
- integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==,
+ integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==,
}
engines: { node: ">=6.9.0" }
- "@babel/types@7.24.0":
+ "@babel/types@7.27.1":
resolution:
{
- integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==,
+ integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==,
}
engines: { node: ">=6.9.0" }
- "@codemirror/autocomplete@6.11.1":
+ "@codemirror/autocomplete@6.18.6":
resolution:
{
- integrity: sha512-L5UInv8Ffd6BPw0P3EF7JLYAMeEbclY7+6Q11REt8vhih8RuLreKtPy/xk8wPxs4EQgYqzI7cdgpiYwWlbS/ow==,
+ integrity: sha512-PHHBXFomUs5DF+9tCOM/UoW6XQ4R44lLNNhRaW9PKPTU0D7lIjRg3ElxaJnTwsl/oHiR93WSXDBrekhoUGCPtg==,
}
- peerDependencies:
- "@codemirror/language": ^6.0.0
- "@codemirror/state": ^6.0.0
- "@codemirror/view": ^6.0.0
- "@lezer/common": ^1.0.0
- "@codemirror/commands@6.7.1":
+ "@codemirror/commands@6.8.1":
resolution:
{
- integrity: sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==,
+ integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==,
}
"@codemirror/lang-xml@6.1.0":
@@ -1181,34 +1013,34 @@ packages:
integrity: sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==,
}
- "@codemirror/language@6.10.8":
+ "@codemirror/language@6.11.0":
resolution:
{
- integrity: sha512-wcP8XPPhDH2vTqf181U8MbZnW+tDyPYy0UzVOa+oHORjyT+mhhom9vBd7dApJwoDz9Nb/a8kHjJIsuA/t8vNFw==,
+ integrity: sha512-A7+f++LodNNc1wGgoRDTt78cOwWm9KVezApgjOMp1W4hM0898nsqBXwF+sbePE7ZRcjN7Sa1Z5m2oN27XkmEjQ==,
}
- "@codemirror/lint@6.4.2":
+ "@codemirror/lint@6.8.5":
resolution:
{
- integrity: sha512-wzRkluWb1ptPKdzlsrbwwjYCPLgzU6N88YBAmlZi8WFyuiEduSd05MnJYNogzyc8rPK7pj6m95ptUApc8sHKVA==,
+ integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==,
}
- "@codemirror/search@6.5.5":
+ "@codemirror/search@6.5.10":
resolution:
{
- integrity: sha512-PIEN3Ke1buPod2EHbJsoQwlbpkz30qGZKcnmH1eihq9+bPQx8gelauUwLYaY4vBOuBAuEhmpDLii4rj/uO0yMA==,
+ integrity: sha512-RMdPdmsrUf53pb2VwflKGHEe1XVM07hI7vV2ntgw1dmqhimpatSJKva4VA9h4TLUDOD4EIF02201oZurpnEFsg==,
}
- "@codemirror/state@6.5.0":
+ "@codemirror/state@6.5.2":
resolution:
{
- integrity: sha512-MwBHVK60IiIHDcoMet78lxt6iw5gJOGSbNbOIVBHWVXIH4/Nq1+GQgLLGgI1KlnN86WDXsPudVaqYHKBIx7Eyw==,
+ integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==,
}
- "@codemirror/view@6.36.1":
+ "@codemirror/view@6.36.8":
resolution:
{
- integrity: sha512-miD1nyT4m4uopZaDdO2uXU/LLHliKNYL9kB1C1wJHrunHLm/rpkb5QVSokqgw9hFqEZakrdlb/VGWX8aYZTslQ==,
+ integrity: sha512-yoRo4f+FdnD01fFt4XpfpMCcCAo9QvZOtbrXExn4SqzH32YC6LgzqxfLZw/r6Ge65xyY03mK/UfUqrVw1gFiFg==,
}
"@colors/colors@1.5.0":
@@ -1218,158 +1050,123 @@ packages:
}
engines: { node: ">=0.1.90" }
- "@commitlint/cli@19.6.1":
+ "@commitlint/cli@19.8.1":
resolution:
{
- integrity: sha512-8hcyA6ZoHwWXC76BoC8qVOSr8xHy00LZhZpauiD0iO0VYbVhMnED0da85lTfIULxl7Lj4c6vZgF0Wu/ed1+jlQ==,
+ integrity: sha512-LXUdNIkspyxrlV6VDHWBmCZRtkEVRpBKxi2Gtw3J54cGWhLCTouVD/Q6ZSaSvd2YaDObWK8mDjrz3TIKtaQMAA==,
}
engines: { node: ">=v18" }
hasBin: true
- "@commitlint/config-conventional@19.6.0":
+ "@commitlint/config-conventional@19.8.1":
resolution:
{
- integrity: sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ==,
+ integrity: sha512-/AZHJL6F6B/G959CsMAzrPKKZjeEiAVifRyEwXxcT6qtqbPwGw+iQxmNS+Bu+i09OCtdNRW6pNpBvgPrtMr9EQ==,
}
engines: { node: ">=v18" }
- "@commitlint/config-validator@18.6.1":
+ "@commitlint/config-validator@19.8.1":
resolution:
{
- integrity: sha512-05uiToBVfPhepcQWE1ZQBR/Io3+tb3gEotZjnI4tTzzPk16NffN6YABgwFQCLmzZefbDcmwWqJWc2XT47q7Znw==,
+ integrity: sha512-0jvJ4u+eqGPBIzzSdqKNX1rvdbSU1lPNYlfQQRIFnBgLy26BtC0cFnr7c/AyuzExMxWsMOte6MkTi9I3SQ3iGQ==,
}
engines: { node: ">=v18" }
- "@commitlint/config-validator@19.5.0":
+ "@commitlint/ensure@19.8.1":
resolution:
{
- integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==,
+ integrity: sha512-mXDnlJdvDzSObafjYrOSvZBwkD01cqB4gbnnFuVyNpGUM5ijwU/r/6uqUmBXAAOKRfyEjpkGVZxaDsCVnHAgyw==,
}
engines: { node: ">=v18" }
- "@commitlint/ensure@19.5.0":
+ "@commitlint/execute-rule@19.8.1":
resolution:
{
- integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==,
+ integrity: sha512-YfJyIqIKWI64Mgvn/sE7FXvVMQER/Cd+s3hZke6cI1xgNT/f6ZAz5heND0QtffH+KbcqAwXDEE1/5niYayYaQA==,
}
engines: { node: ">=v18" }
- "@commitlint/execute-rule@18.6.1":
+ "@commitlint/format@19.8.1":
resolution:
{
- integrity: sha512-7s37a+iWyJiGUeMFF6qBlyZciUkF8odSAnHijbD36YDctLhGKoYltdvuJ/AFfRm6cBLRtRk9cCVPdsEFtt/2rg==,
+ integrity: sha512-kSJj34Rp10ItP+Eh9oCItiuN/HwGQMXBnIRk69jdOwEW9llW9FlyqcWYbHPSGofmjsqeoxa38UaEA5tsbm2JWw==,
}
engines: { node: ">=v18" }
- "@commitlint/execute-rule@19.5.0":
+ "@commitlint/is-ignored@19.8.1":
resolution:
{
- integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==,
+ integrity: sha512-AceOhEhekBUQ5dzrVhDDsbMaY5LqtN8s1mqSnT2Kz1ERvVZkNihrs3Sfk1Je/rxRNbXYFzKZSHaPsEJJDJV8dg==,
}
engines: { node: ">=v18" }
- "@commitlint/format@19.5.0":
+ "@commitlint/lint@19.8.1":
resolution:
{
- integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==,
+ integrity: sha512-52PFbsl+1EvMuokZXLRlOsdcLHf10isTPlWwoY1FQIidTsTvjKXVXYb7AvtpWkDzRO2ZsqIgPK7bI98x8LRUEw==,
}
engines: { node: ">=v18" }
- "@commitlint/is-ignored@19.6.0":
+ "@commitlint/load@19.8.1":
resolution:
{
- integrity: sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==,
+ integrity: sha512-9V99EKG3u7z+FEoe4ikgq7YGRCSukAcvmKQuTtUyiYPnOd9a2/H9Ak1J9nJA1HChRQp9OA/sIKPugGS+FK/k1A==,
}
engines: { node: ">=v18" }
- "@commitlint/lint@19.6.0":
+ "@commitlint/message@19.8.1":
resolution:
{
- integrity: sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==,
+ integrity: sha512-+PMLQvjRXiU+Ae0Wc+p99EoGEutzSXFVwQfa3jRNUZLNW5odZAyseb92OSBTKCu+9gGZiJASt76Cj3dLTtcTdg==,
}
engines: { node: ">=v18" }
- "@commitlint/load@18.6.1":
+ "@commitlint/parse@19.8.1":
resolution:
{
- integrity: sha512-p26x8734tSXUHoAw0ERIiHyW4RaI4Bj99D8YgUlVV9SedLf8hlWAfyIFhHRIhfPngLlCe0QYOdRKYFt8gy56TA==,
+ integrity: sha512-mmAHYcMBmAgJDKWdkjIGq50X4yB0pSGpxyOODwYmoexxxiUCy5JJT99t1+PEMK7KtsCtzuWYIAXYAiKR+k+/Jw==,
}
engines: { node: ">=v18" }
- "@commitlint/load@19.6.1":
+ "@commitlint/read@19.8.1":
resolution:
{
- integrity: sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==,
+ integrity: sha512-03Jbjb1MqluaVXKHKRuGhcKWtSgh3Jizqy2lJCRbRrnWpcM06MYm8th59Xcns8EqBYvo0Xqb+2DoZFlga97uXQ==,
}
engines: { node: ">=v18" }
- "@commitlint/message@19.5.0":
+ "@commitlint/resolve-extends@19.8.1":
resolution:
{
- integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==,
+ integrity: sha512-GM0mAhFk49I+T/5UCYns5ayGStkTt4XFFrjjf0L4S26xoMTSkdCf9ZRO8en1kuopC4isDFuEm7ZOm/WRVeElVg==,
}
engines: { node: ">=v18" }
- "@commitlint/parse@19.5.0":
+ "@commitlint/rules@19.8.1":
resolution:
{
- integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==,
+ integrity: sha512-Hnlhd9DyvGiGwjfjfToMi1dsnw1EXKGJNLTcsuGORHz6SS9swRgkBsou33MQ2n51/boIDrbsg4tIBbRpEWK2kw==,
}
engines: { node: ">=v18" }
- "@commitlint/read@19.5.0":
+ "@commitlint/to-lines@19.8.1":
resolution:
{
- integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==,
+ integrity: sha512-98Mm5inzbWTKuZQr2aW4SReY6WUukdWXuZhrqf1QdKPZBCCsXuG87c+iP0bwtD6DBnmVVQjgp4whoHRVixyPBg==,
}
engines: { node: ">=v18" }
- "@commitlint/resolve-extends@18.6.1":
+ "@commitlint/top-level@19.8.1":
resolution:
{
- integrity: sha512-ifRAQtHwK+Gj3Bxj/5chhc4L2LIc3s30lpsyW67yyjsETR6ctHAHRu1FSpt0KqahK5xESqoJ92v6XxoDRtjwEQ==,
+ integrity: sha512-Ph8IN1IOHPSDhURCSXBz44+CIu+60duFwRsg6HqaISFHQHbmBtxVw4ZrFNIYUzEP7WwrNPxa2/5qJ//NK1FGcw==,
}
engines: { node: ">=v18" }
- "@commitlint/resolve-extends@19.5.0":
+ "@commitlint/types@19.8.1":
resolution:
{
- integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/rules@19.6.0":
- resolution:
- {
- integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/to-lines@19.5.0":
- resolution:
- {
- integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==,
- }
- engines: { node: ">=v18" }
-
- "@commitlint/top-level@19.5.0":
- resolution:
- {
- integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==,
- }
- 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:
- {
- integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==,
+ integrity: sha512-/yCrWGCoA1SVKOks25EGadP9Pnj0oAIHGpl2wH2M2Y46dPM2ueb8wyCVOD7O3WCTkaJ0IkKvzhl1JY7+uCT2Dw==,
}
engines: { node: ">=v18" }
@@ -1383,27 +1180,27 @@ packages:
"@csstools/css-parser-algorithms": ^3.0.4
"@csstools/css-tokenizer": ^3.0.3
- "@csstools/color-helpers@5.0.1":
+ "@csstools/color-helpers@5.0.2":
resolution:
{
- integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==,
+ integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==,
}
engines: { node: ">=18" }
- "@csstools/css-calc@2.1.1":
+ "@csstools/css-calc@2.1.3":
resolution:
{
- integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==,
+ integrity: sha512-XBG3talrhid44BY1x3MHzUx/aTG8+x/Zi57M4aTKK9RFB4aLlF3TTSzfzn8nWVHWL3FgAXAxmupmDd6VWww+pw==,
}
engines: { node: ">=18" }
peerDependencies:
"@csstools/css-parser-algorithms": ^3.0.4
"@csstools/css-tokenizer": ^3.0.3
- "@csstools/css-color-parser@3.0.7":
+ "@csstools/css-color-parser@3.0.9":
resolution:
{
- integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==,
+ integrity: sha512-wILs5Zk7BU86UArYBJTPy/FMPPKVKHMj1ycCEyf3VUptol0JNRLFU/BZsJ4aiIHJEbSLiizzRrw8Pc1uAEDrXw==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -1445,37 +1242,37 @@ packages:
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-color-function@4.0.7":
+ "@csstools/postcss-color-function@4.0.9":
resolution:
{
- integrity: sha512-aDHYmhNIHR6iLw4ElWhf+tRqqaXwKnMl0YsQ/X105Zc4dQwe6yJpMrTN6BwOoESrkDjOYMOfORviSSLeDTJkdQ==,
+ integrity: sha512-2UeQCGMO5+EeQsPQK2DqXp0dad+P6nIz6G2dI06APpBuYBKxZEq7CTH+UiztFQ8cB1f89dnO9+D/Kfr+JfI2hw==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-color-mix-function@3.0.7":
+ "@csstools/postcss-color-mix-function@3.0.9":
resolution:
{
- integrity: sha512-e68Nev4CxZYCLcrfWhHH4u/N1YocOfTmw67/kVX5Rb7rnguqqLyxPjhHWjSBX8o4bmyuukmNf3wrUSU3//kT7g==,
+ integrity: sha512-Enj7ZIIkLD7zkGCN31SZFx4H1gKiCs2Y4taBo/v/cqaHN7p1qGrf5UTMNSjQFZ7MgClGufHx4pddwFTGL+ipug==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-content-alt-text@2.0.4":
+ "@csstools/postcss-content-alt-text@2.0.5":
resolution:
{
- integrity: sha512-YItlZUOuZJCBlRaCf8Aucc1lgN41qYGALMly0qQllrxYJhiyzlI6RxOTMUvtWk+KhS8GphMDsDhKQ7KTPfEMSw==,
+ integrity: sha512-9BOS535v6YmyOYk32jAHXeddRV+iyd4vRcbrEekpwxmueAXX5J8WgbceFnE4E4Pmw/ysnB9v+n/vSWoFmcLMcA==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-exponential-functions@2.0.6":
+ "@csstools/postcss-exponential-functions@2.0.8":
resolution:
{
- integrity: sha512-IgJA5DQsQLu/upA3HcdvC6xEMR051ufebBTIXZ5E9/9iiaA7juXWz1ceYj814lnDYP/7eWjZnw0grRJlX4eI6g==,
+ integrity: sha512-vHgDXtGIBPpFQnFNDftMQg4MOuXcWnK91L/7REjBNYzQ/p2Fa/6RcnehTqCRrNtQ46PNIolbRsiDdDuxiHolwQ==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -1490,46 +1287,46 @@ packages:
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-gamut-mapping@2.0.7":
+ "@csstools/postcss-gamut-mapping@2.0.9":
resolution:
{
- integrity: sha512-gzFEZPoOkY0HqGdyeBXR3JP218Owr683u7KOZazTK7tQZBE8s2yhg06W1tshOqk7R7SWvw9gkw2TQogKpIW8Xw==,
+ integrity: sha512-quksIsFm3DGsf8Qbr9KiSGBF2w3RwxSfOfma5wbORDB1AFF15r4EVW7sUuWw3s5IAEGMqzel/dE2rQsI7Yb8mA==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-gradients-interpolation-method@5.0.7":
+ "@csstools/postcss-gradients-interpolation-method@5.0.9":
resolution:
{
- integrity: sha512-WgEyBeg6glUeTdS2XT7qeTFBthTJuXlS9GFro/DVomj7W7WMTamAwpoP4oQCq/0Ki2gvfRYFi/uZtmRE14/DFA==,
+ integrity: sha512-duqTeUHF4ambUybAmhX9KonkicLM/WNp2JjMUbegRD4O8A/tb6fdZ7jUNdp/UUiO1FIdDkMwmNw6856bT0XF8Q==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-hwb-function@4.0.7":
+ "@csstools/postcss-hwb-function@4.0.9":
resolution:
{
- integrity: sha512-LKYqjO+wGwDCfNIEllessCBWfR4MS/sS1WXO+j00KKyOjm7jDW2L6jzUmqASEiv/kkJO39GcoIOvTTfB3yeBUA==,
+ integrity: sha512-sDpdPsoGAhYl/PMSYfu5Ez82wXb2bVkg1Cb8vsRLhpXhAk4OSlsJN+GodAql6tqc1B2G/WToxsFU6G74vkhPvA==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-ic-unit@4.0.0":
+ "@csstools/postcss-ic-unit@4.0.1":
resolution:
{
- integrity: sha512-9QT5TDGgx7wD3EEMN3BSUG6ckb6Eh5gSPT5kZoVtUuAonfPmLDJyPhqR4ntPpMYhUKAMVKAg3I/AgzqHMSeLhA==,
+ integrity: sha512-lECc38i1w3qU9nhrUhP6F8y4BfcQJkR1cb8N6tZNf2llM6zPkxnqt04jRCwsUgNcB3UGKDy+zLenhOYGHqCV+Q==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-initial@2.0.0":
+ "@csstools/postcss-initial@2.0.1":
resolution:
{
- integrity: sha512-dv2lNUKR+JV+OOhZm9paWzYBXOCi+rJPqJ2cJuhh9xd8USVrd0cBEPczla81HNOyThMQWeCcdln3gZkQV2kYxA==,
+ integrity: sha512-L1wLVMSAZ4wovznquK0xmC7QSctzO4D0Is590bxpGqhqjboLXYA16dWZpfwImkdOgACdQ9PqXsuRroW6qPlEsg==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -1544,10 +1341,10 @@ packages:
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-light-dark-function@2.0.7":
+ "@csstools/postcss-light-dark-function@2.0.8":
resolution:
{
- integrity: sha512-ZZ0rwlanYKOHekyIPaU+sVm3BEHCe+Ha0/px+bmHe62n0Uc1lL34vbwrLYn6ote8PHlsqzKeTQdIejQCJ05tfw==,
+ integrity: sha512-v8VU5WtrZIyEtk88WB4fkG22TGd8HyAfSFfZZQ1uNN0+arMJdZc++H3KYTfbYDpJRGy8GwADYH8ySXiILn+OyA==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -1598,10 +1395,10 @@ packages:
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-media-minmax@2.0.6":
+ "@csstools/postcss-media-minmax@2.0.8":
resolution:
{
- integrity: sha512-J1+4Fr2W3pLZsfxkFazK+9kr96LhEYqoeBszLmFjb6AjYs+g9oDAw3J5oQignLKk3rC9XHW+ebPTZ9FaW5u5pg==,
+ integrity: sha512-Skum5wIXw2+NyCQWUyfstN3c1mfSh39DRAo+Uh2zzXOglBG8xB9hnArhYFScuMZkzeM+THVa//mrByKAfumc7w==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -1634,37 +1431,37 @@ packages:
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-oklab-function@4.0.7":
+ "@csstools/postcss-oklab-function@4.0.9":
resolution:
{
- integrity: sha512-I6WFQIbEKG2IO3vhaMGZDkucbCaUSXMxvHNzDdnfsTCF5tc0UlV3Oe2AhamatQoKFjBi75dSEMrgWq3+RegsOQ==,
+ integrity: sha512-UHrnujimwtdDw8BYDcWJtBXuJ13uc/BjAddPdfMc/RsWxhg8gG8UbvTF0tnMtHrZ4i7lwy85fPEzK1AiykMyRA==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-progressive-custom-properties@4.0.0":
+ "@csstools/postcss-progressive-custom-properties@4.0.1":
resolution:
{
- integrity: sha512-XQPtROaQjomnvLUSy/bALTR5VCtTVUFwYs1SblvYgLSeTo2a/bMNwUwo2piXw5rTv/FEYiy5yPSXBqg9OKUx7Q==,
+ integrity: sha512-Ofz81HaY8mmbP8/Qr3PZlUzjsyV5WuxWmvtYn+jhYGvvjFazTmN9R2io5W5znY1tyk2CA9uM0IPWyY4ygDytCw==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-random-function@1.0.2":
+ "@csstools/postcss-random-function@2.0.0":
resolution:
{
- integrity: sha512-vBCT6JvgdEkvRc91NFoNrLjgGtkLWt47GKT6E2UDn3nd8ZkMBiziQ1Md1OiKoSsgzxsSnGKG3RVdhlbdZEkHjA==,
+ integrity: sha512-MYZKxSr4AKfjECL8vg49BbfNNzK+t3p2OWX+Xf7rXgMaTP44oy/e8VGWu4MLnJ3NUd9tFVkisLO/sg+5wMTNsg==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-relative-color-syntax@3.0.7":
+ "@csstools/postcss-relative-color-syntax@3.0.9":
resolution:
{
- integrity: sha512-apbT31vsJVd18MabfPOnE977xgct5B1I+Jpf+Munw3n6kKb1MMuUmGGH+PT9Hm/fFs6fe61Q/EWnkrb4bNoNQw==,
+ integrity: sha512-+AGOcLF5PmMnTRPnOdCvY7AwvD5veIOhTWbJV6vC3hB1tt0ii/k6QOwhWfsGGg1ZPQ0JY15u+wqLR4ZTtB0luA==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -1679,37 +1476,37 @@ packages:
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-sign-functions@1.1.1":
+ "@csstools/postcss-sign-functions@1.1.3":
resolution:
{
- integrity: sha512-MslYkZCeMQDxetNkfmmQYgKCy4c+w9pPDfgOBCJOo/RI1RveEUdZQYtOfrC6cIZB7sD7/PHr2VGOcMXlZawrnA==,
+ integrity: sha512-4F4GRhj8xNkBtLZ+3ycIhReaDfKJByXI+cQGIps3AzCO8/CJOeoDPxpMnL5vqZrWKOceSATHEQJUO/Q/r2y7OQ==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-stepped-value-functions@4.0.6":
+ "@csstools/postcss-stepped-value-functions@4.0.8":
resolution:
{
- integrity: sha512-/dwlO9w8vfKgiADxpxUbZOWlL5zKoRIsCymYoh1IPuBsXODKanKnfuZRr32DEqT0//3Av1VjfNZU9yhxtEfIeA==,
+ integrity: sha512-6Y4yhL4fNhgzbZ/wUMQ4EjFUfoNNMpEXZnDw1JrlcEBHUT15gplchtFsZGk7FNi8PhLHJfCUwVKrEHzhfhKK+g==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-text-decoration-shorthand@4.0.1":
+ "@csstools/postcss-text-decoration-shorthand@4.0.2":
resolution:
{
- integrity: sha512-xPZIikbx6jyzWvhms27uugIc0I4ykH4keRvoa3rxX5K7lEhkbd54rjj/dv60qOCTisoS+3bmwJTeyV1VNBrXaw==,
+ integrity: sha512-8XvCRrFNseBSAGxeaVTaNijAu+FzUvjwFXtcrynmazGb/9WUdsPCpBX+mHEHShVRq47Gy4peYAoxYs8ltUnmzA==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- "@csstools/postcss-trigonometric-functions@4.0.6":
+ "@csstools/postcss-trigonometric-functions@4.0.8":
resolution:
{
- integrity: sha512-c4Y1D2Why/PeccaSouXnTt6WcNHJkoJRidV2VW9s5gJ97cNxnLgQ4Qj8qOqkIR9VmTQKJyNcbF4hy79ZQnWD7A==,
+ integrity: sha512-YcDvYTRu7f78/91B6bX+mE1WoAO91Su7/8KSRpuWbIGUB8hmaNSRu9wziaWSLJ1lOB1aQe+bvo9BIaLKqPOo/g==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -1757,247 +1554,240 @@ packages:
integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==,
}
- "@esbuild/aix-ppc64@0.24.2":
+ "@esbuild/aix-ppc64@0.25.4":
resolution:
{
- integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==,
+ integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==,
}
engines: { node: ">=18" }
cpu: [ppc64]
os: [aix]
- "@esbuild/android-arm64@0.24.2":
+ "@esbuild/android-arm64@0.25.4":
resolution:
{
- integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==,
+ integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==,
}
engines: { node: ">=18" }
cpu: [arm64]
os: [android]
- "@esbuild/android-arm@0.24.2":
+ "@esbuild/android-arm@0.25.4":
resolution:
{
- integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==,
+ integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==,
}
engines: { node: ">=18" }
cpu: [arm]
os: [android]
- "@esbuild/android-x64@0.24.2":
+ "@esbuild/android-x64@0.25.4":
resolution:
{
- integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==,
+ integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [android]
- "@esbuild/darwin-arm64@0.24.2":
+ "@esbuild/darwin-arm64@0.25.4":
resolution:
{
- integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==,
+ integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==,
}
engines: { node: ">=18" }
cpu: [arm64]
os: [darwin]
- "@esbuild/darwin-x64@0.24.2":
+ "@esbuild/darwin-x64@0.25.4":
resolution:
{
- integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==,
+ integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [darwin]
- "@esbuild/freebsd-arm64@0.24.2":
+ "@esbuild/freebsd-arm64@0.25.4":
resolution:
{
- integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==,
+ integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==,
}
engines: { node: ">=18" }
cpu: [arm64]
os: [freebsd]
- "@esbuild/freebsd-x64@0.24.2":
+ "@esbuild/freebsd-x64@0.25.4":
resolution:
{
- integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==,
+ integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [freebsd]
- "@esbuild/linux-arm64@0.24.2":
+ "@esbuild/linux-arm64@0.25.4":
resolution:
{
- integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==,
+ integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==,
}
engines: { node: ">=18" }
cpu: [arm64]
os: [linux]
- "@esbuild/linux-arm@0.24.2":
+ "@esbuild/linux-arm@0.25.4":
resolution:
{
- integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==,
+ integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==,
}
engines: { node: ">=18" }
cpu: [arm]
os: [linux]
- "@esbuild/linux-ia32@0.24.2":
+ "@esbuild/linux-ia32@0.25.4":
resolution:
{
- integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==,
+ integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==,
}
engines: { node: ">=18" }
cpu: [ia32]
os: [linux]
- "@esbuild/linux-loong64@0.24.2":
+ "@esbuild/linux-loong64@0.25.4":
resolution:
{
- integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==,
+ integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==,
}
engines: { node: ">=18" }
cpu: [loong64]
os: [linux]
- "@esbuild/linux-mips64el@0.24.2":
+ "@esbuild/linux-mips64el@0.25.4":
resolution:
{
- integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==,
+ integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==,
}
engines: { node: ">=18" }
cpu: [mips64el]
os: [linux]
- "@esbuild/linux-ppc64@0.24.2":
+ "@esbuild/linux-ppc64@0.25.4":
resolution:
{
- integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==,
+ integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==,
}
engines: { node: ">=18" }
cpu: [ppc64]
os: [linux]
- "@esbuild/linux-riscv64@0.24.2":
+ "@esbuild/linux-riscv64@0.25.4":
resolution:
{
- integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==,
+ integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==,
}
engines: { node: ">=18" }
cpu: [riscv64]
os: [linux]
- "@esbuild/linux-s390x@0.24.2":
+ "@esbuild/linux-s390x@0.25.4":
resolution:
{
- integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==,
+ integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==,
}
engines: { node: ">=18" }
cpu: [s390x]
os: [linux]
- "@esbuild/linux-x64@0.24.2":
+ "@esbuild/linux-x64@0.25.4":
resolution:
{
- integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==,
+ integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [linux]
- "@esbuild/netbsd-arm64@0.24.2":
+ "@esbuild/netbsd-arm64@0.25.4":
resolution:
{
- integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==,
+ integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==,
}
engines: { node: ">=18" }
cpu: [arm64]
os: [netbsd]
- "@esbuild/netbsd-x64@0.24.2":
+ "@esbuild/netbsd-x64@0.25.4":
resolution:
{
- integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==,
+ integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [netbsd]
- "@esbuild/openbsd-arm64@0.24.2":
+ "@esbuild/openbsd-arm64@0.25.4":
resolution:
{
- integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==,
+ integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==,
}
engines: { node: ">=18" }
cpu: [arm64]
os: [openbsd]
- "@esbuild/openbsd-x64@0.24.2":
+ "@esbuild/openbsd-x64@0.25.4":
resolution:
{
- integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==,
+ integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [openbsd]
- "@esbuild/sunos-x64@0.24.2":
+ "@esbuild/sunos-x64@0.25.4":
resolution:
{
- integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==,
+ integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [sunos]
- "@esbuild/win32-arm64@0.24.2":
+ "@esbuild/win32-arm64@0.25.4":
resolution:
{
- integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==,
+ integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==,
}
engines: { node: ">=18" }
cpu: [arm64]
os: [win32]
- "@esbuild/win32-ia32@0.24.2":
+ "@esbuild/win32-ia32@0.25.4":
resolution:
{
- integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==,
+ integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==,
}
engines: { node: ">=18" }
cpu: [ia32]
os: [win32]
- "@esbuild/win32-x64@0.24.2":
+ "@esbuild/win32-x64@0.25.4":
resolution:
{
- integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==,
+ integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==,
}
engines: { node: ">=18" }
cpu: [x64]
os: [win32]
- "@eslint-community/eslint-utils@4.4.0":
+ "@eslint-community/eslint-utils@4.7.0":
resolution:
{
- integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==,
+ integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==,
}
engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 }
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- "@eslint-community/regexpp@4.10.0":
- resolution:
- {
- integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==,
- }
- engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
-
"@eslint-community/regexpp@4.12.1":
resolution:
{
@@ -2005,58 +1795,65 @@ packages:
}
engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 }
- "@eslint/config-array@0.19.1":
+ "@eslint/config-array@0.20.0":
resolution:
{
- integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==,
+ integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/core@0.9.1":
+ "@eslint/config-helpers@0.2.2":
resolution:
{
- integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==,
+ integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/eslintrc@3.2.0":
+ "@eslint/core@0.13.0":
resolution:
{
- integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==,
+ integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/js@9.17.0":
+ "@eslint/eslintrc@3.3.1":
resolution:
{
- integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==,
+ integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/object-schema@2.1.5":
+ "@eslint/js@9.26.0":
resolution:
{
- integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==,
+ integrity: sha512-I9XlJawFdSMvWjDt6wksMCrgns5ggLNfFwFvnShsleWruvXM514Qxk8V246efTw+eo9JABvVz+u3q2RiAowKxQ==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@eslint/plugin-kit@0.2.4":
+ "@eslint/object-schema@2.1.6":
resolution:
{
- integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==,
+ integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@floating-ui/core@1.6.4":
+ "@eslint/plugin-kit@0.2.8":
resolution:
{
- integrity: sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==,
+ integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==,
+ }
+ engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
+
+ "@floating-ui/core@1.7.0":
+ resolution:
+ {
+ integrity: sha512-FRdBLykrPPA6P76GGGqlex/e7fbe0F1ykgxHYNXQsH/iTEtjMj/f9bpY5oQqbjt5VgZvgz/uKXbGuROijh3VLA==,
}
- "@floating-ui/dom@1.6.13":
+ "@floating-ui/dom@1.7.0":
resolution:
{
- integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==,
+ integrity: sha512-lGTor4VlXcesUMh1cupTUTDoCxMb0V6bm3CnxHzQcw8Eaf1jQbgQX4i02fYgT0vJ82tb5MZ4CZk1LRGkktJCzg==,
}
"@floating-ui/utils@0.2.9":
@@ -2065,22 +1862,22 @@ packages:
integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==,
}
- "@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":
+ "@foliojs-fork/pdfkit@0.15.3":
resolution:
{
- integrity: sha512-nMOiQAv6id89MT3tVTCgc7HxD5ZMANwio2o5yvs5sexQkC0KI3BLaLakpsrHmFfeGFAhqPmZATZGbJGXTUebpg==,
+ integrity: sha512-Obc0Wmy3bm7BINFVvPhcl2rnSSK61DQrlHU8aXnAqDk9LCjWdUOPwhgD8Ywz5VtuFjRxmVOM/kQ/XLIBjDvltw==,
}
"@foliojs-fork/restructure@2.0.2":
@@ -2107,10 +1904,10 @@ packages:
integrity: sha512-AlquKGee+IWiAMYVB0xyHFZRMnu4n3X4HTvJHu79GiVJ1ojTukCWyxMlF5NMsecoLcBKsuBhx3QPv2vkE/zQ0A==,
}
- "@github/relative-time-element@4.4.4":
+ "@github/relative-time-element@4.4.8":
resolution:
{
- integrity: sha512-Oi8uOL8O+ZWLD7dHRWCkm2cudcTYtB3VyOYf9BtzCgDGm+OKomyOREtItNMtWl1dxvec62BTKErq36uy+RYxQg==,
+ integrity: sha512-FSLYm6F3TSQnqHE1EMQUVVgi2XjbCvsESwwXfugHFpBnhyF1uhJOtu0Psp/BB/qqazfdkk7f5fVcu7WuXl3t8Q==,
}
"@humanfs/core@0.19.1":
@@ -2141,10 +1938,10 @@ packages:
}
engines: { node: ">=18.18" }
- "@humanwhocodes/retry@0.4.1":
+ "@humanwhocodes/retry@0.4.3":
resolution:
{
- integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==,
+ integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==,
}
engines: { node: ">=18.18" }
@@ -2155,17 +1952,17 @@ packages:
}
engines: { node: ">=12" }
- "@jridgewell/gen-mapping@0.3.5":
+ "@jridgewell/gen-mapping@0.3.8":
resolution:
{
- integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==,
+ integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==,
}
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" }
@@ -2176,16 +1973,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":
@@ -2194,40 +1991,46 @@ packages:
integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==,
}
- "@lezer/common@1.2.0":
+ "@keyv/serialize@1.0.3":
resolution:
{
- integrity: sha512-Wmvlm4q6tRpwiy20TnB3yyLTZim38Tkc50dPY8biQRwqE+ati/wD84rm3N15hikvdT4uSg9phs9ubjvcLmkpKg==,
+ integrity: sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==,
}
- "@lezer/highlight@1.2.0":
+ "@lezer/common@1.2.3":
resolution:
{
- integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==,
+ integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==,
}
- "@lezer/lr@1.3.14":
+ "@lezer/highlight@1.2.1":
resolution:
{
- integrity: sha512-z5mY4LStlA3yL7aHT/rqgG614cfcvklS+8oFRFBYrs4YaWLJyKKM4+nN6KopToX0o9Hj6zmH6M5kinOYuy06ug==,
+ integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==,
}
- "@lezer/xml@1.0.4":
+ "@lezer/lr@1.4.2":
resolution:
{
- integrity: sha512-WmXKb5eX8+rRfZYSNRR5TPee/ZoDgBdVS/rj1VCJGDKa5gNldIctQYibCoFVyNhvZsyL/8nHbZJZPM4gnXN2Vw==,
+ integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==,
}
- "@lit-labs/ssr-dom-shim@1.2.0":
+ "@lezer/xml@1.0.6":
resolution:
{
- integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==,
+ integrity: sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==,
}
- "@lit/reactive-element@2.0.4":
+ "@lit-labs/ssr-dom-shim@1.3.0":
resolution:
{
- integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==,
+ integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ==,
+ }
+
+ "@lit/reactive-element@2.1.0":
+ resolution:
+ {
+ integrity: sha512-L2qyoZSQClcBmq0qajBVbhYEcG6iK0XfLn66ifLe/RfC0/ihpc+pl0Wdn8bJ8o+hj38cG0fGXRgSS20MuXn7qA==,
}
"@marijn/find-cluster-break@1.0.2":
@@ -2236,6 +2039,13 @@ packages:
integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==,
}
+ "@modelcontextprotocol/sdk@1.11.2":
+ resolution:
+ {
+ integrity: sha512-H9vwztj5OAqHg9GockCQC06k1natgcxWQSRpQcPJf6i5+MWBzfKkRtxGbjQf0X2ihii0ffLZCRGbYV2f2bjNCQ==,
+ }
+ engines: { node: ">=18" }
+
"@nodelib/fs.scandir@2.1.5":
resolution:
{
@@ -2257,85 +2067,85 @@ packages:
}
engines: { node: ">= 8" }
- "@octokit/auth-token@5.1.1":
+ "@octokit/auth-token@5.1.2":
resolution:
{
- integrity: sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==,
+ integrity: sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==,
}
engines: { node: ">= 18" }
- "@octokit/core@6.1.2":
+ "@octokit/core@6.1.5":
resolution:
{
- integrity: sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==,
+ integrity: sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==,
}
engines: { node: ">= 18" }
- "@octokit/endpoint@10.1.1":
+ "@octokit/endpoint@10.1.4":
resolution:
{
- integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==,
+ integrity: sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==,
}
engines: { node: ">= 18" }
- "@octokit/graphql@8.1.1":
+ "@octokit/graphql@8.2.2":
resolution:
{
- integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==,
+ integrity: sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==,
}
engines: { node: ">= 18" }
- "@octokit/openapi-types@22.1.0":
+ "@octokit/openapi-types@25.0.0":
resolution:
{
- integrity: sha512-pGUdSP+eEPfZiQHNkZI0U01HLipxncisdJQB4G//OAmfeO8sqTQ9KRa0KF03TUPCziNsoXUrTg4B2Q1EX++T0Q==,
+ integrity: sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==,
}
- "@octokit/plugin-paginate-rest@11.2.0":
+ "@octokit/plugin-paginate-rest@12.0.0":
resolution:
{
- integrity: sha512-Nd3hCJbr5GUwTgV6j2dMONIigoqNwJRm+yvA5BYb1dnGBTmVUrGYGNwYsGl2hN+xtDAYpqxDiz8vysh/NqEN+A==,
+ integrity: sha512-MPd6WK1VtZ52lFrgZ0R2FlaoiWllzgqFHaSZxvp72NmoDeZ0m8GeJdg4oB6ctqMTYyrnDYp592Xma21mrgiyDA==,
}
engines: { node: ">= 18" }
peerDependencies:
"@octokit/core": ">=6"
- "@octokit/plugin-retry@7.1.1":
+ "@octokit/plugin-retry@7.2.1":
resolution:
{
- integrity: sha512-G9Ue+x2odcb8E1XIPhaFBnTTIrrUDfXN05iFXiqhR+SeeeDMMILcAnysOsxUpEWcQp2e5Ft397FCXTcPkiPkLw==,
+ integrity: sha512-wUc3gv0D6vNHpGxSaR3FlqJpTXGWgqmk607N9L3LvPL4QjaxDgX/1nY2mGpT37Khn+nlIXdljczkRnNdTTV3/A==,
}
engines: { node: ">= 18" }
peerDependencies:
"@octokit/core": ">=6"
- "@octokit/plugin-throttling@9.2.1":
+ "@octokit/plugin-throttling@10.0.0":
resolution:
{
- integrity: sha512-n6EK4/1Npva54sAFDdpUxAbO14FbzudJ/k7DZPjQuLYOvNTWj4DGeH//J9ZCVoLkAlvRWV5sWKLaICsmGvqg2g==,
+ integrity: sha512-Kuq5/qs0DVYTHZuBAzCZStCzo2nKvVRo/TDNhCcpC2TKiOGz/DisXMCvjt3/b5kr6SCI1Y8eeeJTHBxxpFvZEg==,
}
engines: { node: ">= 18" }
peerDependencies:
- "@octokit/core": ^6.0.0
+ "@octokit/core": ^6.1.3
- "@octokit/request-error@6.1.1":
+ "@octokit/request-error@6.1.8":
resolution:
{
- integrity: sha512-1mw1gqT3fR/WFvnoVpY/zUM2o/XkMs/2AszUUG9I69xn0JFLv6PGkPhNk5lbfvROs79wiS0bqiJNxfCZcRJJdg==,
+ integrity: sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==,
}
engines: { node: ">= 18" }
- "@octokit/request@9.1.1":
+ "@octokit/request@9.2.3":
resolution:
{
- integrity: sha512-pyAguc0p+f+GbQho0uNetNQMmLG1e80WjkIaqqgUkihqUp0boRU6nKItXO4VWnr+nbZiLGEyy4TeKRwqaLvYgw==,
+ integrity: sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==,
}
engines: { node: ">= 18" }
- "@octokit/types@13.4.1":
+ "@octokit/types@14.0.0":
resolution:
{
- integrity: sha512-Y73oOAzRBAUzR/iRAbGULzpNkX8vaxKCqEtg6K74Ff3w9f5apFnWtE/2nade7dMWWW3bS5Kkd6DJS4HF04xreg==,
+ integrity: sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==,
}
"@pkgjs/parseargs@0.11.0":
@@ -2345,10 +2155,10 @@ packages:
}
engines: { node: ">=14" }
- "@pkgr/core@0.1.1":
+ "@pkgr/core@0.2.4":
resolution:
{
- integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==,
+ integrity: sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==,
}
engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 }
@@ -2366,10 +2176,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" }
@@ -2387,10 +2197,10 @@ packages:
"@types/babel__core":
optional: true
- "@rollup/plugin-node-resolve@15.2.3":
+ "@rollup/plugin-node-resolve@15.3.1":
resolution:
{
- integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==,
+ integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==,
}
engines: { node: ">=14.0.0" }
peerDependencies:
@@ -2428,10 +2238,10 @@ packages:
peerDependencies:
rollup: ^1.20.0||^2.0.0
- "@rollup/pluginutils@5.1.0":
+ "@rollup/pluginutils@5.1.4":
resolution:
{
- integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
+ integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==,
}
engines: { node: ">=14.0.0" }
peerDependencies:
@@ -2440,154 +2250,162 @@ packages:
rollup:
optional: true
- "@rollup/rollup-android-arm-eabi@4.30.1":
+ "@rollup/rollup-android-arm-eabi@4.40.2":
resolution:
{
- integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==,
+ integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==,
}
cpu: [arm]
os: [android]
- "@rollup/rollup-android-arm64@4.30.1":
+ "@rollup/rollup-android-arm64@4.40.2":
resolution:
{
- integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==,
+ integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==,
}
cpu: [arm64]
os: [android]
- "@rollup/rollup-darwin-arm64@4.30.1":
+ "@rollup/rollup-darwin-arm64@4.40.2":
resolution:
{
- integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==,
+ integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==,
}
cpu: [arm64]
os: [darwin]
- "@rollup/rollup-darwin-x64@4.30.1":
+ "@rollup/rollup-darwin-x64@4.40.2":
resolution:
{
- integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==,
+ integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==,
}
cpu: [x64]
os: [darwin]
- "@rollup/rollup-freebsd-arm64@4.30.1":
+ "@rollup/rollup-freebsd-arm64@4.40.2":
resolution:
{
- integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==,
+ integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==,
}
cpu: [arm64]
os: [freebsd]
- "@rollup/rollup-freebsd-x64@4.30.1":
+ "@rollup/rollup-freebsd-x64@4.40.2":
resolution:
{
- integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==,
+ integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==,
}
cpu: [x64]
os: [freebsd]
- "@rollup/rollup-linux-arm-gnueabihf@4.30.1":
+ "@rollup/rollup-linux-arm-gnueabihf@4.40.2":
resolution:
{
- integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==,
+ integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==,
}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm-musleabihf@4.30.1":
+ "@rollup/rollup-linux-arm-musleabihf@4.40.2":
resolution:
{
- integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==,
+ integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==,
}
cpu: [arm]
os: [linux]
- "@rollup/rollup-linux-arm64-gnu@4.30.1":
+ "@rollup/rollup-linux-arm64-gnu@4.40.2":
resolution:
{
- integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==,
+ integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==,
}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-arm64-musl@4.30.1":
+ "@rollup/rollup-linux-arm64-musl@4.40.2":
resolution:
{
- integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==,
+ integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==,
}
cpu: [arm64]
os: [linux]
- "@rollup/rollup-linux-loongarch64-gnu@4.30.1":
+ "@rollup/rollup-linux-loongarch64-gnu@4.40.2":
resolution:
{
- integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==,
+ integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==,
}
cpu: [loong64]
os: [linux]
- "@rollup/rollup-linux-powerpc64le-gnu@4.30.1":
+ "@rollup/rollup-linux-powerpc64le-gnu@4.40.2":
resolution:
{
- integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==,
+ integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==,
}
cpu: [ppc64]
os: [linux]
- "@rollup/rollup-linux-riscv64-gnu@4.30.1":
+ "@rollup/rollup-linux-riscv64-gnu@4.40.2":
resolution:
{
- integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==,
+ integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==,
}
cpu: [riscv64]
os: [linux]
- "@rollup/rollup-linux-s390x-gnu@4.30.1":
+ "@rollup/rollup-linux-riscv64-musl@4.40.2":
resolution:
{
- integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==,
+ integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==,
+ }
+ cpu: [riscv64]
+ os: [linux]
+
+ "@rollup/rollup-linux-s390x-gnu@4.40.2":
+ resolution:
+ {
+ integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==,
}
cpu: [s390x]
os: [linux]
- "@rollup/rollup-linux-x64-gnu@4.30.1":
+ "@rollup/rollup-linux-x64-gnu@4.40.2":
resolution:
{
- integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==,
+ integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==,
}
cpu: [x64]
os: [linux]
- "@rollup/rollup-linux-x64-musl@4.30.1":
+ "@rollup/rollup-linux-x64-musl@4.40.2":
resolution:
{
- integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==,
+ integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==,
}
cpu: [x64]
os: [linux]
- "@rollup/rollup-win32-arm64-msvc@4.30.1":
+ "@rollup/rollup-win32-arm64-msvc@4.40.2":
resolution:
{
- integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==,
+ integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==,
}
cpu: [arm64]
os: [win32]
- "@rollup/rollup-win32-ia32-msvc@4.30.1":
+ "@rollup/rollup-win32-ia32-msvc@4.40.2":
resolution:
{
- integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==,
+ integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==,
}
cpu: [ia32]
os: [win32]
- "@rollup/rollup-win32-x64-msvc@4.30.1":
+ "@rollup/rollup-win32-x64-msvc@4.40.2":
resolution:
{
- integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==,
+ integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==,
}
cpu: [x64]
os: [win32]
@@ -2607,10 +2425,10 @@ packages:
peerDependencies:
semantic-release: ">=18.0.0"
- "@semantic-release/commit-analyzer@13.0.0":
+ "@semantic-release/commit-analyzer@13.0.1":
resolution:
{
- integrity: sha512-KtXWczvTAB1ZFZ6B4O+w8HkfYm/OgQb1dUGNFZtDgQ0csggrmkq8sTxhd+lwGF8kMb59/RnG9o4Tn7M/I8dQ9Q==,
+ integrity: sha512-wdnBPHKkr9HhNhXOhZD5a2LNl91+hs8CC2vsAVYxtZH3y0dV3wKn+uZSN61rdJQZ8EGxzWB3inWocBHV9+u/CQ==,
}
engines: { node: ">=20.8.1" }
peerDependencies:
@@ -2630,14 +2448,14 @@ packages:
}
engines: { node: ">=18" }
- "@semantic-release/exec@6.0.3":
+ "@semantic-release/exec@7.1.0":
resolution:
{
- integrity: sha512-bxAq8vLOw76aV89vxxICecEa8jfaWwYITw6X74zzlO0mc/Bgieqx9kBRz9z96pHectiTAtsCwsQcUyLYWnp3VQ==,
+ integrity: sha512-4ycZ2atgEUutspPZ2hxO6z8JoQt4+y/kkHvfZ1cZxgl9WKJId1xPj+UadwInj+gMn2Gsv+fLnbrZ4s+6tK2TFQ==,
}
- engines: { node: ">=14.17" }
+ engines: { node: ">=20.8.1" }
peerDependencies:
- semantic-release: ">=18.0.0"
+ semantic-release: ">=24.1.0"
"@semantic-release/git@10.0.1":
resolution:
@@ -2648,37 +2466,37 @@ packages:
peerDependencies:
semantic-release: ">=18.0.0"
- "@semantic-release/github@11.0.1":
+ "@semantic-release/github@11.0.2":
resolution:
{
- integrity: sha512-Z9cr0LgU/zgucbT9cksH0/pX9zmVda9hkDPcgIE0uvjMQ8w/mElDivGjx1w1pEQ+MuQJ5CBq3VCF16S6G4VH3A==,
+ integrity: sha512-EhHimj3/eOSPu0OflgDzwgrawoGJIn8XLOkNS6WzwuTr8ebxyX976Y4mCqJ8MlkdQpV5+8T+49sy8xXlcm6uCg==,
}
engines: { node: ">=20.8.1" }
peerDependencies:
semantic-release: ">=24.1.0"
- "@semantic-release/gitlab@13.2.3":
+ "@semantic-release/gitlab@13.2.5":
resolution:
{
- integrity: sha512-AzH/s7r8CLDN8dnbkrXnC+Gy9NYG/qRIIKMalaqNFAorgR+goGcqMb/6vIY9aVvwaoT1bo8xr1A+eeuuL4dGEQ==,
+ integrity: sha512-HWpbFE5WfvnOvpj0cwicc/zd+i4s8FCqpbixU4sUPpMzsf47/bAIAgTm6DVYfbogGQHFluU2A6qRpLk7d0w7fw==,
}
engines: { node: ">=20.8.1" }
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:
semantic-release: ">=20.1.0"
- "@semantic-release/release-notes-generator@14.0.1":
+ "@semantic-release/release-notes-generator@14.0.3":
resolution:
{
- integrity: sha512-K0w+5220TM4HZTthE5dDpIuFrnkN1NfTGPidJFm04ULT1DEZ9WG89VNXN7F0c+6nMEpWgqmPvb7vY7JkB2jyyA==,
+ integrity: sha512-XxAZRPWGwO5JwJtS83bRdoIhCiYIx8Vhr+u231pQAsdFIAbm19rSVJLdnBN+Avvk7CKvNQE/nJ4y7uqKH6WTiw==,
}
engines: { node: ">=20.8.1" }
peerDependencies:
@@ -2691,17 +2509,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" }
@@ -2764,10 +2582,10 @@ packages:
}
engines: { node: ">=10.13.0" }
- "@types/conventional-commits-parser@5.0.0":
+ "@types/conventional-commits-parser@5.0.1":
resolution:
{
- integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==,
+ integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==,
}
"@types/estree@0.0.39":
@@ -2776,16 +2594,10 @@ packages:
integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==,
}
- "@types/estree@1.0.5":
+ "@types/estree@1.0.7":
resolution:
{
- integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
- }
-
- "@types/estree@1.0.6":
- resolution:
- {
- integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==,
+ integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==,
}
"@types/fscreen@1.0.4":
@@ -2794,10 +2606,10 @@ packages:
integrity: sha512-TsjxyAUvlvuQyao9vNk0yES4nY07K9xoAbkhgXU948JG39EqlLxniWuW9OiZde9Q8ACSpu3fmbXXRAfb/l/HqQ==,
}
- "@types/geojson@7946.0.13":
+ "@types/geojson@7946.0.16":
resolution:
{
- integrity: sha512-bmrNrgKMOhM3WsafmbGmC+6dsF2Z308vLFsQ3a/bT8X8Sv5clVYpPars/UPq+sAaJP+5OoLAYgwbkS5QEJdLUQ==,
+ integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==,
}
"@types/http-cache-semantics@4.0.4":
@@ -2812,16 +2624,16 @@ packages:
integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==,
}
- "@types/leaflet@1.9.16":
+ "@types/leaflet@1.9.17":
resolution:
{
- integrity: sha512-wzZoyySUxkgMZ0ihJ7IaUIblG8Rdc8AbbZKLneyn+QjYsj5q1QU7TEKYqwTr10BGSzY5LI7tJk9Ifo+mEjdFRw==,
+ integrity: sha512-IJ4K6t7I3Fh5qXbQ1uwL3CFVbCi6haW9+53oLWgdKlLP7EaS21byWFJxxqOx9y8I0AP0actXSJLVMbyvxhkUTA==,
}
- "@types/node@20.10.5":
+ "@types/node@22.15.17":
resolution:
{
- integrity: sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==,
+ integrity: sha512-wIX2aSZL5FE+MR0JlvF87BNVrtFWf6AE6rxSE9X7OwnVvoyCQjpzSRJ+M87se/4QCkCiebQAqrJ0y6fwIyi7nw==,
}
"@types/normalize-package-data@2.4.4":
@@ -2830,11 +2642,12 @@ packages:
integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==,
}
- "@types/parse-path@7.0.3":
+ "@types/parse-path@7.1.0":
resolution:
{
- integrity: sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==,
+ integrity: sha512-EULJ8LApcVEPbrfND0cRQqutIOdiIgJ1Mgrhpy755r14xMohPTEpkV/k28SJvuOs9bHRFW8x+KeDAEPiGQPB9Q==,
}
+ deprecated: This is a stub types definition. parse-path provides its own type definitions, so you do not need this installed.
"@types/resolve@1.20.2":
resolution:
@@ -2842,86 +2655,80 @@ packages:
integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==,
}
- "@types/semver@7.5.8":
- resolution:
- {
- integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==,
- }
-
"@types/trusted-types@2.0.7":
resolution:
{
integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==,
}
- "@typescript-eslint/eslint-plugin@8.19.1":
+ "@typescript-eslint/eslint-plugin@8.32.1":
resolution:
{
- integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==,
+ integrity: sha512-6u6Plg9nP/J1GRpe/vcjjabo6Uc5YQPAMxsgQyGC/I0RuukiG1wIe3+Vtg3IrSCVJDmqK3j8adrtzXSENRtFgg==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
"@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.8.0"
+ typescript: ">=4.8.4 <5.9.0"
- "@typescript-eslint/parser@8.19.1":
+ "@typescript-eslint/parser@8.32.1":
resolution:
{
- integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==,
+ integrity: sha512-LKMrmwCPoLhM45Z00O1ulb6jwyVr2kr3XJp+G+tSEZcbauNnScewcQwtJqXDhXeYPDEjZ8C1SjXm015CirEmGg==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.8.0"
+ typescript: ">=4.8.4 <5.9.0"
- "@typescript-eslint/scope-manager@8.19.1":
+ "@typescript-eslint/scope-manager@8.32.1":
resolution:
{
- integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==,
+ integrity: sha512-7IsIaIDeZn7kffk7qXC3o6Z4UblZJKV3UBpkvRNpr5NSyLji7tvTcvmnMNYuYLyh26mN8W723xpo3i4MlD33vA==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@typescript-eslint/type-utils@8.19.1":
+ "@typescript-eslint/type-utils@8.32.1":
resolution:
{
- integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==,
+ integrity: sha512-mv9YpQGA8iIsl5KyUPi+FGLm7+bA4fgXaeRcFKRDRwDMu4iwrSHeDPipwueNXhdIIZltwCJv+NkxftECbIZWfA==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.8.0"
+ typescript: ">=4.8.4 <5.9.0"
- "@typescript-eslint/types@8.19.1":
+ "@typescript-eslint/types@8.32.1":
resolution:
{
- integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==,
+ integrity: sha512-YmybwXUJcgGqgAp6bEsgpPXEg6dcCyPyCSr0CAAueacR/CCBi25G3V8gGQ2kRzQRBNol7VQknxMs9HvVa9Rvfg==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- "@typescript-eslint/typescript-estree@8.19.1":
+ "@typescript-eslint/typescript-estree@8.32.1":
resolution:
{
- integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==,
+ integrity: sha512-Y3AP9EIfYwBb4kWGb+simvPaqQoT5oJuzzj9m0i6FCY6SPvlomY2Ei4UEMm7+FXtlNJbor80ximyslzaQF6xhg==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
- typescript: ">=4.8.4 <5.8.0"
+ typescript: ">=4.8.4 <5.9.0"
- "@typescript-eslint/utils@8.19.1":
+ "@typescript-eslint/utils@8.32.1":
resolution:
{
- integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==,
+ integrity: sha512-DsSFNIgLSrc89gpq1LJB7Hm1YpuhK086DRDJSNrewcGvYloWW1vZLHBTIvarKZDcAORIy/uWNx8Gad+4oMpkSA==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.8.0"
+ typescript: ">=4.8.4 <5.9.0"
- "@typescript-eslint/visitor-keys@8.19.1":
+ "@typescript-eslint/visitor-keys@8.32.1":
resolution:
{
- integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==,
+ integrity: sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
@@ -2938,6 +2745,13 @@ packages:
}
hasBin: true
+ accepts@2.0.0:
+ resolution:
+ {
+ integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==,
+ }
+ engines: { node: ">= 0.6" }
+
acorn-jsx@5.3.2:
resolution:
{
@@ -2946,47 +2760,18 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-node@1.8.2:
+ acorn@8.14.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-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==,
}
engines: { node: ">=0.4.0" }
hasBin: true
- acorn@8.12.0:
+ agent-base@7.1.3:
resolution:
{
- integrity: sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==,
- }
- engines: { node: ">=0.4.0" }
- hasBin: true
-
- acorn@8.14.0:
- resolution:
- {
- integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==,
- }
- engines: { node: ">=0.4.0" }
- hasBin: true
-
- agent-base@7.1.0:
- resolution:
- {
- integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==,
+ integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==,
}
engines: { node: ">= 14" }
@@ -3010,10 +2795,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:
@@ -3024,13 +2809,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:
{
@@ -3038,13 +2816,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:
{
@@ -3059,10 +2830,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" }
@@ -3118,17 +2889,12 @@ packages:
integrity: sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==,
}
- array-buffer-byte-length@1.0.0:
+ array-buffer-byte-length@1.0.2:
resolution:
{
- integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==,
- }
-
- array-from@2.1.1:
- resolution:
- {
- integrity: sha512-GQTc6Uupx1FCavi5mPzBvVT7nEOeWMmUA9P95wpfpW1XwMSKs+KaymD5C2Up7KAUKg/mYwbsUYzdZWcoajlNZg==,
+ integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==,
}
+ engines: { node: ">= 0.4" }
array-ify@1.0.0:
resolution:
@@ -3143,26 +2909,13 @@ packages:
}
engines: { node: ">=8" }
- arraybuffer.prototype.slice@1.0.2:
+ arraybuffer.prototype.slice@1.0.4:
resolution:
{
- integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==,
+ integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==,
}
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:
{
@@ -3170,10 +2923,17 @@ packages:
}
engines: { node: ">=8" }
- async@3.2.5:
+ async-function@1.0.0:
resolution:
{
- integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==,
+ integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==,
+ }
+ engines: { node: ">= 0.4" }
+
+ async@3.2.6:
+ resolution:
+ {
+ integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==,
}
at-least-node@1.0.0:
@@ -3183,43 +2943,43 @@ packages:
}
engines: { node: ">= 4.0.0" }
- autoprefixer@10.4.19:
+ autoprefixer@10.4.21:
resolution:
{
- integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==,
+ integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==,
}
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.13:
resolution:
{
- integrity: sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==,
+ integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==,
}
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.11.1:
resolution:
{
- integrity: sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==,
+ integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==,
}
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.4:
resolution:
{
- integrity: sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==,
+ integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==,
}
peerDependencies:
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -3254,10 +3014,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" }
@@ -3267,6 +3027,13 @@ packages:
integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==,
}
+ body-parser@2.2.0:
+ resolution:
+ {
+ integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==,
+ }
+ engines: { node: ">=18" }
+
boolbase@1.0.0:
resolution:
{
@@ -3291,13 +3058,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:
{
@@ -3305,46 +3065,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.5:
resolution:
{
- integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==,
- }
-
- browserify-optional@1.0.1:
- resolution:
- {
- integrity: sha512-VrhjbZ+Ba5mDiSYEuPelekQMfTbhcA2DhLk2VQWqdcCROWeFqlTcXZ7yfRkXCIl8E+g4gINJYJiRB7WEtfomAQ==,
- }
-
- browserslist@4.23.3:
- resolution:
- {
- integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==,
+ integrity: sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==,
}
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:
{
@@ -3357,12 +3091,18 @@ packages:
integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==,
}
- builtin-modules@3.3.0:
+ buffer@6.0.3:
resolution:
{
- integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==,
+ integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==,
}
- engines: { node: ">=6" }
+
+ bytes@3.1.2:
+ resolution:
+ {
+ integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==,
+ }
+ engines: { node: ">= 0.8" }
cacheable-lookup@7.0.0:
resolution:
@@ -3371,12 +3111,18 @@ 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: ">=18" }
+
+ cacheable@1.9.0:
+ resolution:
+ {
+ integrity: sha512-8D5htMCxPDUULux9gFzv30f04Xo3wCnik0oOxKoRTPIBoqA7HtOcJ87uBhQTs3jCfZZTrUBGsYIZOgE0ZRgMAg==,
}
- engines: { node: ">=14.16" }
cachedir@2.3.0:
resolution:
@@ -3385,11 +3131,26 @@ packages:
}
engines: { node: ">=6" }
- call-bind@1.0.5:
+ call-bind-apply-helpers@1.0.2:
resolution:
{
- integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==,
+ integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==,
}
+ engines: { node: ">= 0.4" }
+
+ call-bind@1.0.8:
+ resolution:
+ {
+ integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==,
+ }
+ engines: { node: ">= 0.4" }
+
+ call-bound@1.0.4:
+ resolution:
+ {
+ integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==,
+ }
+ engines: { node: ">= 0.4" }
callsites@3.1.0:
resolution:
@@ -3418,16 +3179,10 @@ packages:
integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==,
}
- caniuse-lite@1.0.30001639:
+ caniuse-lite@1.0.30001718:
resolution:
{
- integrity: sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg==,
- }
-
- caniuse-lite@1.0.30001663:
- resolution:
- {
- integrity: sha512-o9C3X27GLKbLeTYZ6HBOLU1tsAcBZsLis28wrVzddShCS16RujjHp9GDHKZqrB3meE0YjhawvMFsGb/igqiPzA==,
+ integrity: sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==,
}
chalk@2.4.2:
@@ -3444,13 +3199,6 @@ packages:
}
engines: { node: ">=10" }
- chalk@5.3.0:
- resolution:
- {
- integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==,
- }
- engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 }
-
chalk@5.4.1:
resolution:
{
@@ -3484,10 +3232,10 @@ packages:
}
engines: { node: ">= 8.10.0" }
- ci-info@4.1.0:
+ ci-info@4.2.0:
resolution:
{
- integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==,
+ integrity: sha512-cYY9mypksY8NRqgDB1XD1RiJL338v/551niynFTGkZOO2LHuB2OmOYxDIe/ttN9AHwrqdum1360G3ald0W9kCg==,
}
engines: { node: ">=8" }
@@ -3534,10 +3282,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.* }
@@ -3624,10 +3372,10 @@ packages:
integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==,
}
- commander@12.1.0:
+ commander@13.1.0:
resolution:
{
- integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==,
+ integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==,
}
engines: { node: ">=18" }
@@ -3678,19 +3426,26 @@ 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:
{
integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==,
}
+ content-disposition@1.0.0:
+ resolution:
+ {
+ integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==,
+ }
+ engines: { node: ">= 0.6" }
+
+ content-type@1.0.5:
+ resolution:
+ {
+ integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==,
+ }
+ engines: { node: ">= 0.6" }
+
conventional-changelog-angular@7.0.0:
resolution:
{
@@ -3712,10 +3467,10 @@ packages:
}
engines: { node: ">=16" }
- conventional-changelog-writer@8.0.0:
+ conventional-changelog-writer@8.0.1:
resolution:
{
- integrity: sha512-TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA==,
+ integrity: sha512-hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q==,
}
engines: { node: ">=18" }
hasBin: true
@@ -3741,10 +3496,10 @@ packages:
engines: { node: ">=16" }
hasBin: true
- conventional-commits-parser@6.0.0:
+ conventional-commits-parser@6.1.0:
resolution:
{
- integrity: sha512-TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA==,
+ integrity: sha512-5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw==,
}
engines: { node: ">=18" }
hasBin: true
@@ -3756,28 +3511,36 @@ 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:
+ cookie-signature@1.2.2:
resolution:
{
- integrity: sha512-5blwFAddknKeNgsjBzilkdQ0+YK8L1PfqPYq40NOYMYFSS38qj+hpTcLLWwpIwA2A5bje/x5jmVn2tzUMg9IVw==,
+ integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==,
+ }
+ engines: { node: ">=6.6.0" }
+
+ cookie@0.7.2:
+ resolution:
+ {
+ integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==,
+ }
+ engines: { node: ">= 0.6" }
+
+ core-js-compat@3.42.0:
+ resolution:
+ {
+ integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==,
}
- core-js@3.35.0:
+ core-js@3.42.0:
resolution:
{
- integrity: sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==,
+ integrity: sha512-Sz4PP4ZA+Rq4II21qkNqOEDTDrCvcANId3xpIgB34NDkWc3UduWj2dqEtN9yZIq8Dk3HyPI33x9sqqU5C8sr0g==,
}
core-util-is@1.0.3:
@@ -3786,16 +3549,12 @@ packages:
integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==,
}
- cosmiconfig-typescript-loader@5.0.0:
+ cors@2.8.5:
resolution:
{
- integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==,
+ integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==,
}
- engines: { node: ">=v16" }
- peerDependencies:
- "@types/node": "*"
- cosmiconfig: ">=8.2"
- typescript: ">=4"
+ engines: { node: ">= 0.10" }
cosmiconfig-typescript-loader@6.1.0:
resolution:
@@ -3808,18 +3567,6 @@ packages:
cosmiconfig: ">=9"
typescript: ">=5"
- 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:
{
@@ -3846,13 +3593,6 @@ packages:
engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
hasBin: true
- cross-spawn@7.0.3:
- resolution:
- {
- integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
- }
- engines: { node: ">= 8" }
-
cross-spawn@7.0.6:
resolution:
{
@@ -3957,10 +3697,10 @@ packages:
}
engines: { node: ">= 6" }
- cssdb@8.2.3:
+ cssdb@8.2.5:
resolution:
{
- integrity: sha512-9BDG5XmJrJQQnJ51VFxXCAtpZ5ebDlAREmO8sxMOVU0aSxN/gocbctjIG5LMh3WBUq+xTlb/jw2LoljBEqraTA==,
+ integrity: sha512-leAt8/hdTCtzql9ZZi86uYAmCLzVKpJMMdjbvOGVnXFXz/BWFpBmM1MHEHU/RqtPyRYmabVmEW1DtX3YGLuuLA==,
}
cssesc@3.0.0:
@@ -3971,32 +3711,32 @@ packages:
engines: { node: ">=4" }
hasBin: true
- cssnano-preset-default@7.0.6:
+ cssnano-preset-default@7.0.7:
resolution:
{
- integrity: sha512-ZzrgYupYxEvdGGuqL+JKOY70s7+saoNlHSCK/OGn1vB2pQK8KSET8jvenzItcY+kA7NoWvfbb/YhlzuzNKjOhQ==,
+ integrity: sha512-jW6CG/7PNB6MufOrlovs1TvBTEVmhY45yz+bd0h6nw3h6d+1e+/TX+0fflZ+LzvZombbT5f+KC063w9VoHeHow==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- cssnano-utils@5.0.0:
+ cssnano-utils@5.0.1:
resolution:
{
- integrity: sha512-Uij0Xdxc24L6SirFr25MlwC2rCFX6scyUmuKpzI+JQ7cyqDEwD42fJ0xfB3yLfOnRDU5LKGgjQ9FA6LYh76GWQ==,
+ integrity: sha512-ZIP71eQgG9JwjVZsTPSqhc6GHgEr53uJ7tK5///VfyWj6Xp2DBmixWHqJgPno+PqATzn48pL42ww9x5SSGmhZg==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- cssnano@7.0.6:
+ cssnano@7.0.7:
resolution:
{
- integrity: sha512-54woqx8SCbp8HwvNZYn68ZFAepuouZW4lTwiMVnBErM3VkO7/Sd4oTOt3Zz3bPx3kxQ36aISppyXj2Md4lg8bw==,
+ integrity: sha512-evKu7yiDIF7oS+EIpwFlMF730ijRyLFaM2o5cTxRGJR9OKHKkc+qP443ZEVR9kZG0syaAJJCPJyfv5pbrxlSng==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
csso@5.0.5:
resolution:
@@ -4055,10 +3795,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" }
@@ -4099,12 +3839,6 @@ packages:
peerDependencies:
d3-selection: 2 - 3
- d@1.0.1:
- resolution:
- {
- integrity: sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==,
- }
-
dargs@8.1.0:
resolution:
{
@@ -4112,35 +3846,26 @@ packages:
}
engines: { node: ">=12" }
- dash-ast@2.0.1:
+ data-view-buffer@1.0.2:
resolution:
{
- integrity: sha512-5TXltWJGc+RdnabUGzhRae1TRq6m4gr+3K2wQX0is5/F2yS6MJXJvLyI3ErAnsAXuJoGqvfVD5icRgim07DrxQ==,
+ integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==,
}
+ engines: { node: ">= 0.4" }
- debug@4.3.4:
+ data-view-byte-length@1.0.2:
resolution:
{
- integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
+ integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==,
}
- 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.1:
resolution:
{
- integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==,
+ integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==,
}
- engines: { node: ">=6.0" }
- peerDependencies:
- supports-color: "*"
- peerDependenciesMeta:
- supports-color:
- optional: true
+ engines: { node: ">= 0.4" }
debug@4.4.0:
resolution:
@@ -4214,10 +3939,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" }
@@ -4228,6 +3953,13 @@ packages:
}
engines: { node: ">= 0.4" }
+ depd@2.0.0:
+ resolution:
+ {
+ integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==,
+ }
+ engines: { node: ">= 0.8" }
+
detect-file@1.0.0:
resolution:
{
@@ -4286,10 +4018,10 @@ packages:
}
engines: { node: ">= 4" }
- domutils@3.1.0:
+ domutils@3.2.2:
resolution:
{
- integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==,
+ integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==,
}
dot-prop@5.3.0:
@@ -4299,6 +4031,13 @@ packages:
}
engines: { node: ">=8" }
+ dunder-proto@1.0.1:
+ resolution:
+ {
+ integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==,
+ }
+ engines: { node: ">= 0.4" }
+
duplexer2@0.1.4:
resolution:
{
@@ -4311,24 +4050,30 @@ packages:
integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==,
}
- ejs@3.1.9:
+ ee-first@1.1.1:
resolution:
{
- integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==,
+ integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==,
+ }
+
+ ejs@3.1.10:
+ resolution:
+ {
+ integrity: sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==,
}
engines: { node: ">=0.10.0" }
hasBin: true
- electron-to-chromium@1.5.28:
+ electron-to-chromium@1.5.152:
resolution:
{
- integrity: sha512-VufdJl+rzaKZoYVUijN13QcXVF5dWPZANeFTLNy+OSpHdDL5ynXTF35+60RSBbaQYB1ae723lQXHCrf4pyLsMw==,
+ integrity: sha512-xBOfg/EBaIlVsHipHl2VdTPJRSvErNUaqW8ejTq5OlOlIYx1wOllCHsAvAIrr55jD1IYEfdR86miUEt8H5IeJg==,
}
- emoji-regex@10.3.0:
+ emoji-regex@10.4.0:
resolution:
{
- integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==,
+ integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==,
}
emoji-regex@8.0.0:
@@ -4349,6 +4094,13 @@ packages:
integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==,
}
+ encodeurl@2.0.0:
+ resolution:
+ {
+ integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==,
+ }
+ engines: { node: ">= 0.8" }
+
entities@4.5.0:
resolution:
{
@@ -4356,10 +4108,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 }
@@ -4383,74 +4135,69 @@ packages:
integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
}
- es-abstract@1.22.3:
+ es-abstract@1.23.9:
resolution:
{
- integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==,
+ integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==,
}
engines: { node: ">= 0.4" }
- es-set-tostringtag@2.0.2:
+ es-define-property@1.0.1:
resolution:
{
- integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==,
+ integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==,
}
engines: { node: ">= 0.4" }
- es-to-primitive@1.2.1:
+ es-errors@1.3.0:
resolution:
{
- integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==,
+ integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==,
}
engines: { node: ">= 0.4" }
- es5-ext@0.10.62:
+ es-object-atoms@1.1.1:
resolution:
{
- integrity: sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==,
+ integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==,
}
- engines: { node: ">=0.10" }
+ engines: { node: ">= 0.4" }
- es6-iterator@2.0.3:
+ es-set-tostringtag@2.1.0:
resolution:
{
- integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==,
+ integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==,
}
+ engines: { node: ">= 0.4" }
- es6-map@0.1.5:
+ es-to-primitive@1.3.0:
resolution:
{
- integrity: sha512-mz3UqCh0uPCIqsw1SSAkB/p0rOzF/M0V++vyN7JqlPtSW/VsYgQBvVvqMLmfBuyMzTpLnNqi6JmcSizs4jy19A==,
+ integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==,
}
+ engines: { node: ">= 0.4" }
- es6-set@0.1.6:
+ esbuild@0.25.4:
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.24.2:
- resolution:
- {
- integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==,
+ integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==,
}
engines: { node: ">=18" }
hasBin: true
- escalade@3.1.2:
+ escalade@3.2.0:
resolution:
{
- integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==,
+ integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==,
}
engines: { node: ">=6" }
+ escape-html@1.0.3:
+ resolution:
+ {
+ integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==,
+ }
+
escape-string-regexp@1.0.5:
resolution:
{
@@ -4472,41 +4219,25 @@ packages:
}
engines: { node: ">=12" }
- escodegen@1.14.3:
+ eslint-config-prettier@10.1.5:
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:
- {
- integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==,
+ integrity: sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==,
}
hasBin: true
peerDependencies:
eslint: ">=7.0.0"
- eslint-plugin-prettier@5.2.1:
+ eslint-plugin-prettier@5.4.0:
resolution:
{
- integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==,
+ integrity: sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA==,
}
engines: { node: ^14.18.0 || >=16.0.0 }
peerDependencies:
"@types/eslint": ">=8.0.0"
eslint: ">=8.0.0"
- eslint-config-prettier: "*"
+ eslint-config-prettier: ">= 7.0.0 <10.0.0 || >=10.1.0"
prettier: ">=3.0.0"
peerDependenciesMeta:
"@types/eslint":
@@ -4514,10 +4245,10 @@ packages:
eslint-config-prettier:
optional: true
- eslint-scope@8.2.0:
+ eslint-scope@8.3.0:
resolution:
{
- integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==,
+ integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
@@ -4535,10 +4266,10 @@ packages:
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- eslint@9.17.0:
+ eslint@9.26.0:
resolution:
{
- integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==,
+ integrity: sha512-Hx0MOjPh6uK9oq9nVsATZKE/Wlbai7KFjfCuw9UHaguDW3x+HF0O5nIi3ud39TWgrTjTO5nHxmL3R1eANinWHQ==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
hasBin: true
@@ -4555,26 +4286,10 @@ packages:
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
- esprima@1.0.4:
+ esquery@1.6.0:
resolution:
{
- integrity: sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==,
- }
- engines: { node: ">=0.4.0" }
- hasBin: true
-
- esprima@4.0.1:
- 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" }
@@ -4585,20 +4300,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:
{
@@ -4606,12 +4307,6 @@ packages:
}
engines: { node: ">=4.0" }
- estree-is-function@1.0.0:
- resolution:
- {
- integrity: sha512-nSCWn1jkSq2QAtkaVLJZY2ezwcFO161HVc174zL1KPW3RJ+O6C3eJb8Nx7OXzvhoEv+nLgSR1g71oWUHUDTrJA==,
- }
-
estree-walker@1.0.1:
resolution:
{
@@ -4624,13 +4319,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:
{
@@ -4638,11 +4326,12 @@ packages:
}
engines: { node: ">=0.10.0" }
- event-emitter@0.3.5:
+ etag@1.8.1:
resolution:
{
- integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==,
+ integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==,
}
+ engines: { node: ">= 0.6" }
eventemitter3@5.0.1:
resolution:
@@ -4650,6 +4339,20 @@ packages:
integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==,
}
+ eventsource-parser@3.0.1:
+ resolution:
+ {
+ integrity: sha512-VARTJ9CYeuQYb0pZEPbzi740OWFgpHe7AYJ2WFZVnUDUQp5Dk2yJUgF36YsZ81cOyxT0QxmXD2EQpapAouzWVA==,
+ }
+ engines: { node: ">=18.0.0" }
+
+ eventsource@3.0.7:
+ resolution:
+ {
+ integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==,
+ }
+ engines: { node: ">=18.0.0" }
+
execa@5.1.1:
resolution:
{
@@ -4664,10 +4367,10 @@ packages:
}
engines: { node: ">=16.17" }
- execa@9.3.0:
+ execa@9.5.3:
resolution:
{
- integrity: sha512-l6JFbqnHEadBoVAVpN5dl2yCyfX28WoBAGaoQcNmLLSedOxTxcn2Qa83s8I/PA5i56vWru2OHOtrwF7Om2vqlg==,
+ integrity: sha512-QFNnTvU3UjgWFy8Ef9iDHvIdcgZ344ebkwYx4/KLbR+CKQA4xBaHzv+iRpp86QfMHP8faFQLh8iOc57215y4Rg==,
}
engines: { node: ^18.19.0 || >=20.5.0 }
@@ -4678,11 +4381,21 @@ packages:
}
engines: { node: ">=0.10.0" }
- ext@1.7.0:
+ express-rate-limit@7.5.0:
resolution:
{
- integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==,
+ integrity: sha512-eB5zbQh5h+VenMPM3fh+nw1YExi5nMr6HUCR62ELSP11huvxm/Uir1H1QEyTkk5QX6A58pX6NmaTMceKZ0Eodg==,
}
+ engines: { node: ">= 16" }
+ peerDependencies:
+ express: ^4.11 || 5 || ^5.0.0-beta.1
+
+ express@5.1.0:
+ resolution:
+ {
+ integrity: sha512-DT9ck5YIRU+8GYzzU5kT3eHGA5iL+1Zd0EutOmTE9Dtk+Tvuzd23VBU+ec7HPNSTxXYO55gPV/hq4pSBJDjFpA==,
+ }
+ engines: { node: ">= 18" }
external-editor@3.1.0:
resolution:
@@ -4691,6 +4404,12 @@ packages:
}
engines: { node: ">=4" }
+ fast-content-type-parse@2.0.1:
+ resolution:
+ {
+ integrity: sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==,
+ }
+
fast-deep-equal@3.1.3:
resolution:
{
@@ -4703,10 +4422,10 @@ packages:
integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==,
}
- fast-glob@3.3.2:
+ fast-glob@3.3.3:
resolution:
{
- integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
+ integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==,
}
engines: { node: ">=8.6.0" }
@@ -4722,6 +4441,12 @@ packages:
integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==,
}
+ fast-uri@3.0.6:
+ resolution:
+ {
+ integrity: sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==,
+ }
+
fastest-levenshtein@1.0.16:
resolution:
{
@@ -4729,16 +4454,16 @@ packages:
}
engines: { node: ">= 4.9.1" }
- fastq@1.16.0:
+ fastq@1.19.1:
resolution:
{
- integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==,
+ integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==,
}
- fdir@6.4.2:
+ fdir@6.4.4:
resolution:
{
- integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==,
+ integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==,
}
peerDependencies:
picomatch: ^3 || ^4
@@ -4767,6 +4492,12 @@ packages:
}
engines: { node: ">=18" }
+ file-entry-cache@10.1.0:
+ resolution:
+ {
+ integrity: sha512-Et/ex6smi3wOOB+n5mek+Grf7P2AxZR5ueqRUvAAn4qkyatXi3cUC1cuQXVkX0VlzBVsN4BkWJFmY/fYiRTdww==,
+ }
+
file-entry-cache@8.0.0:
resolution:
{
@@ -4774,26 +4505,12 @@ packages:
}
engines: { node: ">=16.0.0" }
- file-entry-cache@9.1.0:
- resolution:
- {
- integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==,
- }
- engines: { node: ">=18" }
-
filelist@1.0.4:
resolution:
{
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:
{
@@ -4801,6 +4518,13 @@ packages:
}
engines: { node: ">=8" }
+ finalhandler@2.1.0:
+ resolution:
+ {
+ integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==,
+ }
+ engines: { node: ">= 0.8" }
+
find-node-modules@2.1.3:
resolution:
{
@@ -4813,10 +4537,10 @@ packages:
integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
}
- find-up-simple@1.0.0:
+ find-up-simple@1.0.1:
resolution:
{
- integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==,
+ integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==,
}
engines: { node: ">=18" }
@@ -4869,12 +4593,11 @@ packages:
}
engines: { node: ">=16" }
- flat-cache@5.0.0:
+ flat-cache@6.1.9:
resolution:
{
- integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==,
+ integrity: sha512-DUqiKkTlAfhtl7g78IuwqYM+YqvT+as0mY+EVk6mfimy19U79pJCzDZQsnqk3Ou/T6hFXWLGbwbADzD/c8Tydg==,
}
- engines: { node: ">=18" }
flatpickr@4.6.13:
resolution:
@@ -4882,22 +4605,23 @@ packages:
integrity: sha512-97PMG/aywoYpB4IvbvUJi0RQi8vearvU0oov1WW3k0WZPBMrTQVqekSX5CjSG/M4Q3i6A/0FKXC7RyAoAUUSPw==,
}
- flatted@3.3.1:
+ flatted@3.3.3:
resolution:
{
- integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==,
+ integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==,
}
- for-each@0.3.3:
+ for-each@0.3.5:
resolution:
{
- integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==,
+ integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==,
}
+ engines: { node: ">= 0.4" }
- foreground-child@3.1.1:
+ foreground-child@3.3.1:
resolution:
{
- integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==,
+ integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==,
}
engines: { node: ">=14" }
@@ -4915,22 +4639,36 @@ packages:
}
engines: { node: ">= 18" }
+ forwarded@0.2.0:
+ resolution:
+ {
+ integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==,
+ }
+ engines: { node: ">= 0.6" }
+
fraction.js@4.3.7:
resolution:
{
integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==,
}
+ fresh@2.0.0:
+ resolution:
+ {
+ integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==,
+ }
+ engines: { node: ">= 0.8" }
+
from2@2.3.0:
resolution:
{
integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==,
}
- fs-extra@11.2.0:
+ fs-extra@11.3.0:
resolution:
{
- integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
+ integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==,
}
engines: { node: ">=14.14" }
@@ -4967,17 +4705,17 @@ 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" }
- function.prototype.name@1.1.6:
+ function.prototype.name@1.1.8:
resolution:
{
- integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==,
+ integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==,
}
engines: { node: ">= 0.4" }
@@ -5001,12 +4739,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:
{
@@ -5014,18 +4746,19 @@ packages:
}
engines: { node: 6.* || 8.* || >= 10.* }
- get-east-asian-width@1.2.0:
+ get-east-asian-width@1.3.0:
resolution:
{
- integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==,
+ integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==,
}
engines: { node: ">=18" }
- get-intrinsic@1.2.2:
+ get-intrinsic@1.3.0:
resolution:
{
- integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==,
+ integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==,
}
+ engines: { node: ">= 0.4" }
get-own-enumerable-property-symbols@3.0.2:
resolution:
@@ -5033,6 +4766,13 @@ packages:
integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==,
}
+ get-proto@1.0.1:
+ resolution:
+ {
+ integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==,
+ }
+ engines: { node: ">= 0.4" }
+
get-stream@6.0.1:
resolution:
{
@@ -5061,17 +4801,17 @@ packages:
}
engines: { node: ">=18" }
- get-symbol-description@1.0.0:
+ get-symbol-description@1.1.0:
resolution:
{
- integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==,
+ integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==,
}
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:
@@ -5096,12 +4836,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:
@@ -5118,13 +4857,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:
{
@@ -5167,17 +4899,17 @@ packages:
}
engines: { node: ">=18" }
- globals@15.14.0:
+ globals@16.1.0:
resolution:
{
- integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==,
+ integrity: sha512-aibexHNbb/jiUSObBgpHLj+sIuUmJnYcgXBlrfsiDZ9rt4aF2TFRbyLgZ2iFQuVZ1K5Mx3FVkbKRSgKrbK3K2g==,
}
engines: { node: ">=18" }
- globalthis@1.0.3:
+ globalthis@1.0.4:
resolution:
{
- integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==,
+ integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==,
}
engines: { node: ">= 0.4" }
@@ -5188,10 +4920,10 @@ packages:
}
engines: { node: ">=10" }
- globby@14.0.0:
+ globby@14.1.0:
resolution:
{
- integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==,
+ integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==,
}
engines: { node: ">=18" }
@@ -5201,16 +4933,17 @@ packages:
integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==,
}
- gopd@1.0.1:
+ gopd@1.2.0:
resolution:
{
- integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==,
+ integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==,
}
+ engines: { node: ">= 0.4" }
- got@14.2.0:
+ got@14.4.7:
resolution:
{
- integrity: sha512-dBq2KkHcQl3AwPoIWsLsQScCPpUgRulz1qZVthjPYKYOPmYfBnekR3vxecjZbm91Vc3JUGnV9mqFX7B+Fe2quw==,
+ integrity: sha512-DI8zV1231tqiGzOiOzQWDhsBmncFW7oQDH6Zgy6pDPrqJuVZMtoSgPLLsBZQj8Jg4JFfwoOsDA8NGtLQLnIx2g==,
}
engines: { node: ">=20" }
@@ -5240,11 +4973,12 @@ packages:
engines: { node: ">=0.4.7" }
hasBin: true
- has-bigints@1.0.2:
+ has-bigints@1.1.0:
resolution:
{
- integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==,
+ integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==,
}
+ engines: { node: ">= 0.4" }
has-flag@3.0.0:
resolution:
@@ -5260,44 +4994,37 @@ 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.2.0:
resolution:
{
- integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==,
+ integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==,
}
engines: { node: ">= 0.4" }
- has-symbols@1.0.3:
+ has-symbols@1.1.0:
resolution:
{
- integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==,
+ integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==,
}
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" }
@@ -5321,17 +5048,23 @@ packages:
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
- hosted-git-info@7.0.1:
+ hookified@1.9.0:
resolution:
{
- integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==,
+ integrity: sha512-2yEEGqphImtKIe1NXWEhu6yD3hlFR4Mxk4Mtp3XEyScpSt4pQ4ymmXA1zzxZpj99QkFK+nN0nzjeb2+RUi/6CQ==,
+ }
+
+ hosted-git-info@7.0.2:
+ resolution:
+ {
+ integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==,
}
engines: { node: ^16.14.0 || >=18.0.0 }
- hosted-git-info@8.0.0:
+ hosted-git-info@8.1.0:
resolution:
{
- integrity: sha512-4nw3vOVR+vHUOT8+U4giwe2tcGv+R3pwwRidUe67DoMBTjhrfr6rZYJVVwdkBE+Um050SG+X9tf0Jo4fOpn01w==,
+ integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==,
}
engines: { node: ^18.17.0 || >=20.5.0 }
@@ -5349,16 +5082,23 @@ packages:
}
engines: { node: ">=8" }
- http-cache-semantics@4.1.1:
+ http-cache-semantics@4.2.0:
resolution:
{
- integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==,
+ integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==,
}
- http-proxy-agent@7.0.0:
+ http-errors@2.0.0:
resolution:
{
- integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==,
+ integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==,
+ }
+ engines: { node: ">= 0.8" }
+
+ http-proxy-agent@7.0.2:
+ resolution:
+ {
+ integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==,
}
engines: { node: ">= 14" }
@@ -5369,10 +5109,10 @@ packages:
}
engines: { node: ">=10.19.0" }
- https-proxy-agent@7.0.2:
+ https-proxy-agent@7.0.6:
resolution:
{
- integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==,
+ integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==,
}
engines: { node: ">= 14" }
@@ -5390,10 +5130,10 @@ packages:
}
engines: { node: ">=16.17.0" }
- human-signals@7.0.0:
+ human-signals@8.0.1:
resolution:
{
- integrity: sha512-74kytxOUSvNbjrT9KisAbaTZ/eJwD/LrbM/kh5j0IhPuJzwuA19dWvniFGwBzN9rVjg+O/e+F310PjObDXS+9Q==,
+ integrity: sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==,
}
engines: { node: ">=18.18.0" }
@@ -5438,27 +5178,20 @@ packages:
}
engines: { node: ">= 4" }
- ignore@6.0.2:
+ ignore@7.0.4:
resolution:
{
- integrity: sha512-InwqeHHN2XpumIkMvpl/DCJVrAHgCsG5+cn1XlnLWGwtZBm8QJfSusItfrwx81CTp5agNZqpKU2J/ccC5nGT4A==,
+ integrity: sha512-gJzzk+PQNznz8ysRrC0aOkBNVRBDtE1n53IqyqEf3PXrYwomFs5q4pGMizBMJF+ykh03insJ27hB8gSrD2Hn8A==,
}
engines: { node: ">= 4" }
- import-fresh@3.3.0:
+ import-fresh@3.3.1:
resolution:
{
- integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
+ integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==,
}
engines: { node: ">=6" }
- import-from-esm@1.3.3:
- resolution:
- {
- integrity: sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==,
- }
- engines: { node: ">=16.20" }
-
import-from-esm@2.0.0:
resolution:
{
@@ -5466,10 +5199,10 @@ packages:
}
engines: { node: ">=18.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:
@@ -5493,10 +5226,10 @@ packages:
}
engines: { node: ">=12" }
- index-to-position@0.1.2:
+ index-to-position@1.1.0:
resolution:
{
- integrity: sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==,
+ integrity: sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==,
}
engines: { node: ">=18" }
@@ -5540,10 +5273,10 @@ packages:
}
engines: { node: ">=12.0.0" }
- internal-slot@1.0.6:
+ internal-slot@1.1.0:
resolution:
{
- integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==,
+ integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==,
}
engines: { node: ">= 0.4" }
@@ -5561,18 +5294,26 @@ packages:
}
engines: { node: ">=12" }
- is-arguments@1.1.1:
+ ipaddr.js@1.9.1:
resolution:
{
- integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==,
+ integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==,
+ }
+ engines: { node: ">= 0.10" }
+
+ is-arguments@1.2.0:
+ resolution:
+ {
+ integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==,
}
engines: { node: ">= 0.4" }
- is-array-buffer@3.0.2:
+ is-array-buffer@3.0.5:
resolution:
{
- integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==,
+ integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==,
}
+ engines: { node: ">= 0.4" }
is-arrayish@0.2.1:
resolution:
@@ -5580,11 +5321,19 @@ packages:
integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
}
- is-bigint@1.0.4:
+ is-async-function@2.1.1:
resolution:
{
- integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==,
+ integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==,
}
+ engines: { node: ">= 0.4" }
+
+ is-bigint@1.1.0:
+ resolution:
+ {
+ integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==,
+ }
+ engines: { node: ">= 0.4" }
is-binary-path@2.1.0:
resolution:
@@ -5593,20 +5342,13 @@ packages:
}
engines: { node: ">=8" }
- is-boolean-object@1.1.2:
+ is-boolean-object@1.2.2:
resolution:
{
- integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==,
+ integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==,
}
engines: { node: ">= 0.4" }
- is-builtin-module@3.2.1:
- resolution:
- {
- integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==,
- }
- engines: { node: ">=6" }
-
is-callable@1.2.7:
resolution:
{
@@ -5621,16 +5363,24 @@ packages:
}
hasBin: true
- is-core-module@2.13.1:
+ is-core-module@2.16.1:
resolution:
{
- integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==,
+ integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==,
}
+ engines: { node: ">= 0.4" }
- is-date-object@1.0.5:
+ is-data-view@1.0.2:
resolution:
{
- integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==,
+ integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==,
+ }
+ engines: { node: ">= 0.4" }
+
+ is-date-object@1.1.0:
+ resolution:
+ {
+ integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==,
}
engines: { node: ">= 0.4" }
@@ -5641,6 +5391,13 @@ packages:
}
engines: { node: ">=0.10.0" }
+ is-finalizationregistry@1.1.1:
+ resolution:
+ {
+ integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==,
+ }
+ engines: { node: ">= 0.4" }
+
is-fullwidth-code-point@3.0.0:
resolution:
{
@@ -5662,6 +5419,13 @@ packages:
}
engines: { node: ">=18" }
+ is-generator-function@1.1.0:
+ resolution:
+ {
+ integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==,
+ }
+ engines: { node: ">= 0.4" }
+
is-glob@4.0.3:
resolution:
{
@@ -5676,23 +5440,23 @@ packages:
}
engines: { node: ">=8" }
+ is-map@2.0.3:
+ resolution:
+ {
+ integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==,
+ }
+ engines: { node: ">= 0.4" }
+
is-module@1.0.0:
resolution:
{
integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==,
}
- is-negative-zero@2.0.2:
+ is-number-object@1.1.1:
resolution:
{
- integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==,
- }
- engines: { node: ">= 0.4" }
-
- is-number-object@1.0.7:
- resolution:
- {
- integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==,
+ integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==,
}
engines: { node: ">= 0.4" }
@@ -5731,10 +5495,16 @@ packages:
}
engines: { node: ">=0.10.0" }
- is-regex@1.1.4:
+ is-promise@4.0.0:
resolution:
{
- integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==,
+ integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==,
+ }
+
+ is-regex@1.2.1:
+ resolution:
+ {
+ integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==,
}
engines: { node: ">= 0.4" }
@@ -5745,11 +5515,19 @@ packages:
}
engines: { node: ">=0.10.0" }
- is-shared-array-buffer@1.0.2:
+ is-set@2.0.3:
resolution:
{
- integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==,
+ integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==,
}
+ engines: { node: ">= 0.4" }
+
+ is-shared-array-buffer@1.0.4:
+ resolution:
+ {
+ integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==,
+ }
+ engines: { node: ">= 0.4" }
is-stream@2.0.1:
resolution:
@@ -5772,17 +5550,17 @@ packages:
}
engines: { node: ">=18" }
- is-string@1.0.7:
+ is-string@1.1.1:
resolution:
{
- integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==,
+ integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==,
}
engines: { node: ">= 0.4" }
- is-symbol@1.0.4:
+ is-symbol@1.1.1:
resolution:
{
- integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==,
+ integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==,
}
engines: { node: ">= 0.4" }
@@ -5793,10 +5571,10 @@ packages:
}
engines: { node: ">=8" }
- is-typed-array@1.1.12:
+ is-typed-array@1.1.15:
resolution:
{
- integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==,
+ integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==,
}
engines: { node: ">= 0.4" }
@@ -5807,10 +5585,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" }
@@ -5820,11 +5598,26 @@ packages:
integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==,
}
- is-weakref@1.0.2:
+ is-weakmap@2.0.2:
resolution:
{
- integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==,
+ integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==,
}
+ engines: { node: ">= 0.4" }
+
+ is-weakref@1.1.1:
+ resolution:
+ {
+ integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==,
+ }
+ engines: { node: ">= 0.4" }
+
+ is-weakset@2.0.4:
+ resolution:
+ {
+ integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==,
+ }
+ engines: { node: ">= 0.4" }
is-windows@1.0.2:
resolution:
@@ -5851,24 +5644,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
@@ -5880,13 +5672,6 @@ packages:
}
engines: { node: ">= 0.6.0" }
- jiti@1.21.0:
- resolution:
- {
- integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==,
- }
- hasBin: true
-
jiti@1.21.7:
resolution:
{
@@ -5901,6 +5686,12 @@ packages:
}
hasBin: true
+ jpeg-exif@1.1.4:
+ resolution:
+ {
+ integrity: sha512-a+bKEcCjtuW5WTdgeXFzswSrdqi0jk4XlEtZlx5A94wCoBpFjfFTbo/Tra5SpNCl/YFZPvcV1dJc+TAYeg6ROQ==,
+ }
+
js-tokens@4.0.0:
resolution:
{
@@ -5914,19 +5705,20 @@ packages:
}
hasBin: true
- jsesc@0.5.0:
+ jsesc@3.0.2:
resolution:
{
- integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==,
+ integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==,
}
+ engines: { node: ">=6" }
hasBin: true
- jsesc@2.5.2:
+ jsesc@3.1.0:
resolution:
{
- integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
+ integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==,
}
- engines: { node: ">=4" }
+ engines: { node: ">=6" }
hasBin: true
json-buffer@3.0.1:
@@ -6012,6 +5804,12 @@ packages:
integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==,
}
+ keyv@5.3.3:
+ resolution:
+ {
+ integrity: sha512-Rwu4+nXI9fqcxiEHtbkvoes2X+QfkTRo1TMkPfwzipGsJlJO/z69vqB4FNl9xJ3xCpAcbkvmEabZfPzrwN3+gQ==,
+ }
+
kind-of@6.0.3:
resolution:
{
@@ -6019,10 +5817,10 @@ packages:
}
engines: { node: ">=0.10.0" }
- known-css-properties@0.35.0:
+ known-css-properties@0.36.0:
resolution:
{
- integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==,
+ integrity: sha512-A+9jP+IUmuQsNdsLdcg6Yt7voiMF/D4K83ew0OpJtpu+l34ef7LaohWV0Rc6KNvzw6ZDizkqfyB5JznZnzuKQA==,
}
leaflet.markercluster@1.5.3:
@@ -6046,13 +5844,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:
{
@@ -6060,13 +5851,6 @@ packages:
}
engines: { node: ">= 0.8.0" }
- lilconfig@3.1.2:
- resolution:
- {
- integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==,
- }
- engines: { node: ">=14" }
-
lilconfig@3.1.3:
resolution:
{
@@ -6080,37 +5864,37 @@ packages:
integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
}
- lint-staged@15.3.0:
+ lint-staged@16.0.0:
resolution:
{
- integrity: sha512-vHFahytLoF2enJklgtOtCtIjZrKD/LoxlaUusd5nh7dWv/dkKQJY74ndFSzxCdv7g0ueGg1ORgTSt4Y9LPZn9A==,
+ integrity: sha512-sUCprePs6/rbx4vKC60Hez6X10HPkpDJaGcy3D1NdwR7g1RcNkWL8q9mJMreOqmHBTs+1sNFp+wOiX9fr+hoOQ==,
}
- engines: { node: ">=18.12.0" }
+ engines: { node: ">=20.18" }
hasBin: true
- listr2@8.2.5:
+ listr2@8.3.3:
resolution:
{
- integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==,
+ integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==,
}
engines: { node: ">=18.0.0" }
- lit-element@4.1.0:
+ lit-element@4.2.0:
resolution:
{
- integrity: sha512-gSejRUQJuMQjV2Z59KAS/D4iElUhwKpIyJvZ9w+DIagIQjfJnhR20h2Q5ddpzXGS+fF0tMZ/xEYGMnKmaI/iww==,
+ integrity: sha512-MGrXJVAI5x+Bfth/pU9Kst1iWID6GHDLEzFEnyULB/sFiRLgkd8NPK/PeeXxktA3T6EIIaq8U3KcbTU5XFcP2Q==,
}
- lit-html@3.2.0:
+ lit-html@3.3.0:
resolution:
{
- integrity: sha512-pwT/HwoxqI9FggTrYVarkBKFN9MlTUpLrDHubTmW4SrkL3kkqW5gxwbxMMUnbbRHBC0WTZnYHcjDSCM559VyfA==,
+ integrity: sha512-RHoswrFAxY2d8Cf2mm4OZ1DgzCoBKUKSPvA1fhtSELxUERq2aQQ2h05pO9j81gS1o7RIRJ+CePLogfyahwmynw==,
}
- lit@3.2.1:
+ lit@3.3.0:
resolution:
{
- integrity: sha512-1BBa1E/z0O9ye5fZprPtdqnc0BFzxIxTTOO/tQFmyC/hj1O3jL4TfmLBw0WEwjAokdLwpclkvGgDJwTIh0/22w==,
+ integrity: sha512-DGVsqsOIHBww2DqnuZzW7QsuCdahp50ojuDaBPC7jUDRpYoH0z7kHBBYZewRzer75FwtrkmkKk7iOAwSaWdBmw==,
}
load-json-file@4.0.0:
@@ -6302,12 +6086,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:
@@ -6315,33 +6098,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.3.0:
resolution:
{
- integrity: sha512-sNEx8nn9Ktcm6pL0TnRz8tnXq/mSS0Q1FRSwJOAqw4lAB4l49UeDf85Gm1n9RPFm5qurCPjwi1StAQT2XExhZw==,
+ integrity: sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==,
}
engines: { node: ">=16.0.0" }
peerDependencies:
- marked: ">=1 <13"
+ marked: ">=1 <16"
marked@12.0.2:
resolution:
@@ -6351,14 +6121,21 @@ packages:
engines: { node: ">= 18" }
hasBin: true
- marked@15.0.6:
+ marked@15.0.11:
resolution:
{
- integrity: sha512-Y07CUOE+HQXbVDCGl3LXggqJDbXDP2pArc2C1N1RRMN0ONiShoSsIInMd5Gsxupe7fKLpgimTV+HOJ9r7bA+pg==,
+ integrity: sha512-1BEXAU2euRCG3xwgLVT1y0xbJEld1XOrmRJpUwRCcy7rxhSCwMrmEu9LXoPhHSCJG41V7YcQ2mjKRr5BA3ITIA==,
}
engines: { node: ">= 18" }
hasBin: true
+ math-intrinsics@1.1.0:
+ resolution:
+ {
+ integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==,
+ }
+ engines: { node: ">= 0.4" }
+
mathml-tag-names@2.1.3:
resolution:
{
@@ -6383,6 +6160,13 @@ packages:
integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==,
}
+ media-typer@1.1.0:
+ resolution:
+ {
+ integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==,
+ }
+ engines: { node: ">= 0.8" }
+
meow@12.1.1:
resolution:
{
@@ -6397,11 +6181,12 @@ packages:
}
engines: { node: ">=18" }
- merge-source-map@1.0.4:
+ merge-descriptors@2.0.0:
resolution:
{
- integrity: sha512-PGSmS0kfnTnMJCzJ16BLLCEe6oeYCamKFFdQKshi4BmM6FUwipjVOcBFGxqtQtirtAG4iZvHlqST9CpZKqlRjA==,
+ integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==,
}
+ engines: { node: ">=18" }
merge-stream@2.0.0:
resolution:
@@ -6422,13 +6207,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.8:
resolution:
{
@@ -6436,10 +6214,24 @@ packages:
}
engines: { node: ">=8.6" }
- mime@4.0.1:
+ mime-db@1.54.0:
resolution:
{
- integrity: sha512-5lZ5tyrIfliMXzFtkYyekWbtRXObT9OWa8IwQ5uxTBDHucNNwniRqo0yInflj+iYi5CBa6qxadGzGarDfuEOxA==,
+ integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==,
+ }
+ engines: { node: ">= 0.6" }
+
+ mime-types@3.0.1:
+ resolution:
+ {
+ integrity: sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==,
+ }
+ engines: { node: ">= 0.6" }
+
+ mime@4.0.7:
+ resolution:
+ {
+ integrity: sha512-2OfDPL+e03E0LrXaGYOtTFIYhiuzep94NSsuhrNULq+stylcJedcHdzHtz0atMUuGwJfFYs0YL5xeC/Ca2x0eQ==,
}
engines: { node: ">=16" }
hasBin: true
@@ -6499,10 +6291,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" }
@@ -6518,10 +6310,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" }
@@ -6531,12 +6323,6 @@ packages:
integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==,
}
- ms@2.1.2:
- resolution:
- {
- integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
- }
-
ms@2.1.3:
resolution:
{
@@ -6555,10 +6341,17 @@ packages:
integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==,
}
- nanoid@3.3.7:
+ nano-spawn@1.0.1:
resolution:
{
- integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
+ integrity: sha512-BfcvzBlUTxSDWfT+oH7vd6CbUV+rThLLHCIym/QO6GGLBsyVXleZs00fto2i2jzC/wPiBYk5jyOmpXWg4YopiA==,
+ }
+ engines: { node: ">=20.18" }
+
+ nanoid@3.3.11:
+ resolution:
+ {
+ integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==,
}
engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
hasBin: true
@@ -6569,6 +6362,13 @@ packages:
integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==,
}
+ negotiator@1.0.0:
+ resolution:
+ {
+ integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==,
+ }
+ engines: { node: ">= 0.6" }
+
neo-async@2.6.2:
resolution:
{
@@ -6581,16 +6381,10 @@ packages:
integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==,
}
- next-tick@1.1.0:
+ node-emoji@2.2.0:
resolution:
{
- integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==,
- }
-
- node-emoji@2.1.3:
- resolution:
- {
- integrity: sha512-E2WEOVsgs7O16zsURJ/eH8BqhF029wGpEOnv7Urwdo2wmQanOACwJQh0devF9D9RhoZru0+9JXIS0dBXIAz+lA==,
+ integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==,
}
engines: { node: ">=18" }
@@ -6606,16 +6400,16 @@ packages:
encoding:
optional: true
- node-releases@2.0.18:
+ node-releases@2.0.19:
resolution:
{
- integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==,
+ integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==,
}
- 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 }
@@ -6633,10 +6427,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" }
@@ -6647,17 +6441,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.9.2:
+ resolution:
+ {
+ integrity: sha512-iriPEPIkoMYUy3F6f3wwSZAU93E0Eg6cHwIR6jzzOXWSy+SD/rOODEs74cVONHKSx2obXtuUoyidVEhISrisgQ==,
}
engines: { node: ^18.17.0 || >=20.5.0 }
hasBin: true
@@ -6678,8 +6479,6 @@ packages:
- chalk
- ci-info
- cli-columns
- - cli-table3
- - columnify
- fastest-levenshtein
- fs-minipass
- glob
@@ -6715,7 +6514,6 @@ packages:
- npm-profile
- npm-registry-fetch
- npm-user-validate
- - npmlog
- p-map
- pacote
- parse-conflict-json
@@ -6754,16 +6552,17 @@ packages:
}
engines: { node: ">= 6" }
- object-inspect@1.13.1:
+ object-inspect@1.13.4:
resolution:
{
- integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==,
+ integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==,
}
+ 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" }
@@ -6774,13 +6573,20 @@ packages:
}
engines: { node: ">= 0.4" }
- object.assign@4.1.5:
+ object.assign@4.1.7:
resolution:
{
- integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==,
+ integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==,
}
engines: { node: ">= 0.4" }
+ on-finished@2.4.1:
+ resolution:
+ {
+ integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==,
+ }
+ engines: { node: ">= 0.8" }
+
once@1.4.0:
resolution:
{
@@ -6808,17 +6614,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" }
@@ -6836,6 +6635,13 @@ packages:
}
engines: { node: ">=0.10.0" }
+ own-keys@1.0.1:
+ resolution:
+ {
+ integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==,
+ }
+ engines: { node: ">= 0.4" }
+
p-cancelable@4.0.1:
resolution:
{
@@ -6920,10 +6726,10 @@ packages:
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
- p-map@7.0.1:
+ p-map@7.0.3:
resolution:
{
- integrity: sha512-2wnaR0XL/FDOj+TgpDuRb2KTjLnu3Fma6b1ZUwGY7LcqenMcvP/YFpjpbPKY6WVGsbuJZRuoUz8iPrt8ORnAFw==,
+ integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==,
}
engines: { node: ">=18" }
@@ -6955,6 +6761,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:
{
@@ -6982,10 +6794,10 @@ packages:
}
engines: { node: ">=8" }
- parse-json@8.1.0:
+ parse-json@8.3.0:
resolution:
{
- integrity: sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==,
+ integrity: sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==,
}
engines: { node: ">=18" }
@@ -7003,16 +6815,16 @@ packages:
}
engines: { node: ">=0.10.0" }
- parse-path@7.0.0:
+ parse-path@7.1.0:
resolution:
{
- integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==,
+ integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==,
}
- 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" }
@@ -7034,6 +6846,13 @@ packages:
integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==,
}
+ parseurl@1.3.3:
+ resolution:
+ {
+ integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==,
+ }
+ engines: { node: ">= 0.8" }
+
path-exists@3.0.0:
resolution:
{
@@ -7082,12 +6901,19 @@ 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-to-regexp@8.2.0:
+ resolution:
+ {
+ integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==,
+ }
+ engines: { node: ">=16" }
path-type@4.0.0:
resolution:
@@ -7096,19 +6922,19 @@ packages:
}
engines: { node: ">=8" }
- path-type@5.0.0:
+ path-type@6.0.0:
resolution:
{
- integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==,
+ integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==,
}
- engines: { node: ">=12" }
+ engines: { node: ">=18" }
- pdfmake@0.2.8:
+ pdfmake@0.2.20:
resolution:
{
- integrity: sha512-lI+amfIaUL8CrPhndxFdhIgMj9JB49Sj4DARltKC1gLm/5NsPohZqfB+D+II8HymtPB6eugUFD5oBxmzO57qHA==,
+ integrity: sha512-bGbxbGFP5p8PWNT3Phsu1ZcRLnRfF6jmnuKTkgmt6i5PZzSdX6JaB+NeTz9q+aocfW8SE9GUjL3o/5GroBqGcQ==,
}
- engines: { node: ">=12" }
+ engines: { node: ">=18" }
pegjs@0.10.0:
resolution:
@@ -7124,24 +6950,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:
- {
- integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==,
- }
-
picocolors@1.1.1:
resolution:
{
@@ -7191,13 +6999,20 @@ packages:
}
engines: { node: ">=10" }
- pirates@4.0.6:
+ pirates@4.0.7:
resolution:
{
- integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==,
+ integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==,
}
engines: { node: ">= 6" }
+ pkce-challenge@5.0.0:
+ resolution:
+ {
+ integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==,
+ }
+ engines: { node: ">=16.20.0" }
+
pkg-conf@2.1.0:
resolution:
{
@@ -7217,6 +7032,13 @@ packages:
integrity: sha512-bxaGcA40sL3d6M4hH72Z4NdLqxpXRsCFk8AITYg6x1rn1Ei3izf00UMLklerBZTO49aPA3CYrIwVulx2Bce2pA==,
}
+ possible-typed-array-names@1.1.0:
+ resolution:
+ {
+ integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==,
+ }
+ engines: { node: ">= 0.4" }
+
postcss-attribute-case-insensitive@7.0.1:
resolution:
{
@@ -7226,10 +7048,10 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-calc@10.0.2:
+ postcss-calc@10.1.1:
resolution:
{
- integrity: sha512-DT/Wwm6fCKgpYVI7ZEWuPJ4az8hiEHtCUeYjZXqU7Ou4QqYh1Df2yCQ7Ca6N7xqKPFkxN3fhf+u9KSoOCJNAjg==,
+ integrity: sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==,
}
engines: { node: ^18.12 || ^20.9 || >=22.0 }
peerDependencies:
@@ -7244,10 +7066,10 @@ packages:
peerDependencies:
postcss: ^8.4.6
- postcss-color-functional-notation@7.0.7:
+ postcss-color-functional-notation@7.0.9:
resolution:
{
- integrity: sha512-EZvAHsvyASX63vXnyXOIynkxhaHRSsdb7z6yiXKIovGXAolW4cMZ3qoh7k3VdTsLBS6VGdksGfIo3r6+waLoOw==,
+ integrity: sha512-WScwD3pSsIz+QP97sPkGCeJm7xUH0J18k6zV5o8O2a4cQJyv15vLUx/WFQajuJVgZhmJL5awDu8zHnqzAzm4lw==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -7271,23 +7093,23 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-colormin@7.0.2:
+ postcss-colormin@7.0.3:
resolution:
{
- integrity: sha512-YntRXNngcvEvDbEjTdRWGU606eZvB5prmHG4BF0yLmVpamXbpsRJzevyy6MZVyuecgzI2AWAlvFi8DAeCqwpvA==,
+ integrity: sha512-xZxQcSyIVZbSsl1vjoqZAcMYYdnJsIyG8OvqShuuqf12S88qQboxxEy0ohNCOLwVPXTU+hFHvJPACRL2B5ohTA==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-convert-values@7.0.4:
+ postcss-convert-values@7.0.5:
resolution:
{
- integrity: sha512-e2LSXPqEHVW6aoGbjV9RsSSNDO3A0rZLCBxN24zvxF25WknMPpX8Dm9UxxThyEbaytzggRuZxaGXqaOhxQ514Q==,
+ integrity: sha512-0VFhH8nElpIs3uXKnVtotDJJNX0OGYSZmdt4XfSfvOMrFw1jKfpwpZxfC4iN73CTM/MWakDEmsHQXkISYj4BXw==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-custom-media@11.0.5:
resolution:
@@ -7325,46 +7147,46 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-discard-comments@7.0.3:
+ postcss-discard-comments@7.0.4:
resolution:
{
- integrity: sha512-q6fjd4WU4afNhWOA2WltHgCbkRhZPgQe7cXF74fuVB/ge4QbM9HEaOIzGSiMvM+g/cOsNAUGdf2JDzqA2F8iLA==,
+ integrity: sha512-6tCUoql/ipWwKtVP/xYiFf1U9QgJ0PUvxN7pTcsQ8Ns3Fnwq1pU5D5s1MhT/XySeLq6GXNvn37U46Ded0TckWg==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-discard-duplicates@7.0.1:
+ postcss-discard-duplicates@7.0.2:
resolution:
{
- integrity: sha512-oZA+v8Jkpu1ct/xbbrntHRsfLGuzoP+cpt0nJe5ED2FQF8n8bJtn7Bo28jSmBYwqgqnqkuSXJfSUEE7if4nClQ==,
+ integrity: sha512-eTonaQvPZ/3i1ASDHOKkYwAybiM45zFIc7KXils4mQmHLqIswXD9XNOKEVxtTFnsmwYzF66u4LMgSr0abDlh5w==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-discard-empty@7.0.0:
+ postcss-discard-empty@7.0.1:
resolution:
{
- integrity: sha512-e+QzoReTZ8IAwhnSdp/++7gBZ/F+nBq9y6PomfwORfP7q9nBpK5AMP64kOt0bA+lShBFbBDcgpJ3X4etHg4lzA==,
+ integrity: sha512-cFrJKZvcg/uxB6Ijr4l6qmn3pXQBna9zyrPC+sK0zjbkDUZew+6xDltSF7OeB7rAtzaaMVYSdbod+sZOCWnMOg==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-discard-overridden@7.0.0:
+ postcss-discard-overridden@7.0.1:
resolution:
{
- integrity: sha512-GmNAzx88u3k2+sBTZrJSDauR0ccpE24omTQCVmaTTZFz1du6AasspjaUPMJ2ud4RslZpoFKyf+6MSPETLojc6w==,
+ integrity: sha512-7c3MMjjSZ/qYrx3uc1940GSOzN1Iqjtlqe8uoSg+qdVPYyRb0TILSqqmtlSFuE4mTDECwsm397Ya7iXGzfF7lg==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-double-position-gradients@6.0.0:
+ postcss-double-position-gradients@6.0.1:
resolution:
{
- integrity: sha512-JkIGah3RVbdSEIrcobqj4Gzq0h53GG4uqDPsho88SgY84WnpkTpI0k50MFK/sX7XqVisZ6OqUfFnoUO6m1WWdg==,
+ integrity: sha512-ZitCwmvOR4JzXmKw6sZblTgwV1dcfLvClcyjADuqZ5hU0Uk4SVNpvSN9w8NcJ7XuxhRYxVA8m8AB3gy+HNBQOA==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -7441,10 +7263,10 @@ packages:
peerDependencies:
postcss: ^8.4.21
- postcss-lab-function@7.0.7:
+ postcss-lab-function@7.0.9:
resolution:
{
- integrity: sha512-+ONj2bpOQfsCKZE2T9VGMyVVdGcGUpr7u3SVfvkJlvhTRmDCfY25k4Jc8fubB9DclAPR4+w8uVtDZmdRgdAHig==,
+ integrity: sha512-IGbsIXbqMDusymJAKYX+f9oakPo89wL9Pzd/qRBQOVf3EIQWT9hgvqC4Me6Dkzxp3KPuIBf6LPkjrLHe/6ZMIQ==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -7465,68 +7287,68 @@ packages:
ts-node:
optional: true
- postcss-logical@8.0.0:
+ postcss-logical@8.1.0:
resolution:
{
- integrity: sha512-HpIdsdieClTjXLOyYdUPAX/XQASNIwdKt5hoZW08ZOAiI+tbV0ta1oclkpVkW5ANU+xJvk3KkA0FejkjGLXUkg==,
+ integrity: sha512-pL1hXFQ2fEXNKiNiAgtfA005T9FBxky5zkX6s4GZM2D8RkVgRqz3f4g1JUoq925zXv495qk8UNldDwh8uGEDoA==,
}
engines: { node: ">=18" }
peerDependencies:
postcss: ^8.4
- postcss-merge-longhand@7.0.4:
+ postcss-merge-longhand@7.0.5:
resolution:
{
- integrity: sha512-zer1KoZA54Q8RVHKOY5vMke0cCdNxMP3KBfDerjH/BYHh4nCIh+1Yy0t1pAEQF18ac/4z3OFclO+ZVH8azjR4A==,
+ integrity: sha512-Kpu5v4Ys6QI59FxmxtNB/iHUVDn9Y9sYw66D6+SZoIk4QTz1prC4aYkhIESu+ieG1iylod1f8MILMs1Em3mmIw==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-merge-rules@7.0.4:
+ postcss-merge-rules@7.0.5:
resolution:
{
- integrity: sha512-ZsaamiMVu7uBYsIdGtKJ64PkcQt6Pcpep/uO90EpLS3dxJi6OXamIobTYcImyXGoW0Wpugh7DSD3XzxZS9JCPg==,
+ integrity: sha512-ZonhuSwEaWA3+xYbOdJoEReKIBs5eDiBVLAGpYZpNFPzXZcEE5VKR7/qBEQvTZpiwjqhhqEQ+ax5O3VShBj9Wg==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-font-values@7.0.0:
+ postcss-minify-font-values@7.0.1:
resolution:
{
- integrity: sha512-2ckkZtgT0zG8SMc5aoNwtm5234eUx1GGFJKf2b1bSp8UflqaeFzR50lid4PfqVI9NtGqJ2J4Y7fwvnP/u1cQog==,
+ integrity: sha512-2m1uiuJeTplll+tq4ENOQSzB8LRnSUChBv7oSyFLsJRtUgAAJGP6LLz0/8lkinTgxrmJSPOEhgY1bMXOQ4ZXhQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-gradients@7.0.0:
+ postcss-minify-gradients@7.0.1:
resolution:
{
- integrity: sha512-pdUIIdj/C93ryCHew0UgBnL2DtUS3hfFa5XtERrs4x+hmpMYGhbzo6l/Ir5de41O0GaKVpK1ZbDNXSY6GkXvtg==,
+ integrity: sha512-X9JjaysZJwlqNkJbUDgOclyG3jZEpAMOfof6PUZjPnPrePnPG62pS17CjdM32uT1Uq1jFvNSff9l7kNbmMSL2A==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-params@7.0.2:
+ postcss-minify-params@7.0.3:
resolution:
{
- integrity: sha512-nyqVLu4MFl9df32zTsdcLqCFfE/z2+f8GE1KHPxWOAmegSo6lpV2GNy5XQvrzwbLmiU7d+fYay4cwto1oNdAaQ==,
+ integrity: sha512-vUKV2+f5mtjewYieanLX0xemxIp1t0W0H/D11u+kQV/MWdygOO7xPMkbK+r9P6Lhms8MgzKARF/g5OPXhb8tgg==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-minify-selectors@7.0.4:
+ postcss-minify-selectors@7.0.5:
resolution:
{
- integrity: sha512-JG55VADcNb4xFCf75hXkzc1rNeURhlo7ugf6JjiiKRfMsKlDzN9CXHZDyiG6x/zGchpjQS+UAgb1d4nqXqOpmA==,
+ integrity: sha512-x2/IvofHcdIrAm9Q+p06ZD1h6FPcQ32WtCRVodJLDR+WMn8EVHI1kvLxZuGKz/9EY5nAmI6lIQIrpo4tBy5+ug==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-nested@5.0.6:
resolution:
@@ -7555,86 +7377,86 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-normalize-charset@7.0.0:
+ postcss-normalize-charset@7.0.1:
resolution:
{
- integrity: sha512-ABisNUXMeZeDNzCQxPxBCkXexvBrUHV+p7/BXOY+ulxkcjUZO0cp8ekGBwvIh2LbCwnWbyMPNJVtBSdyhM2zYQ==,
+ integrity: sha512-sn413ofhSQHlZFae//m9FTOfkmiZ+YQXsbosqOWRiVQncU2BA3daX3n0VF3cG6rGLSFVc5Di/yns0dFfh8NFgQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-display-values@7.0.0:
+ postcss-normalize-display-values@7.0.1:
resolution:
{
- integrity: sha512-lnFZzNPeDf5uGMPYgGOw7v0BfB45+irSRz9gHQStdkkhiM0gTfvWkWB5BMxpn0OqgOQuZG/mRlZyJxp0EImr2Q==,
+ integrity: sha512-E5nnB26XjSYz/mGITm6JgiDpAbVuAkzXwLzRZtts19jHDUBFxZ0BkXAehy0uimrOjYJbocby4FVswA/5noOxrQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-positions@7.0.0:
+ postcss-normalize-positions@7.0.1:
resolution:
{
- integrity: sha512-I0yt8wX529UKIGs2y/9Ybs2CelSvItfmvg/DBIjTnoUSrPxSV7Z0yZ8ShSVtKNaV/wAY+m7bgtyVQLhB00A1NQ==,
+ integrity: sha512-pB/SzrIP2l50ZIYu+yQZyMNmnAcwyYb9R1fVWPRxm4zcUFCY2ign7rcntGFuMXDdd9L2pPNUgoODDk91PzRZuQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-repeat-style@7.0.0:
+ postcss-normalize-repeat-style@7.0.1:
resolution:
{
- integrity: sha512-o3uSGYH+2q30ieM3ppu9GTjSXIzOrRdCUn8UOMGNw7Af61bmurHTWI87hRybrP6xDHvOe5WlAj3XzN6vEO8jLw==,
+ integrity: sha512-NsSQJ8zj8TIDiF0ig44Byo3Jk9e4gNt9x2VIlJudnQQ5DhWAHJPF4Tr1ITwyHio2BUi/I6Iv0HRO7beHYOloYQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-string@7.0.0:
+ postcss-normalize-string@7.0.1:
resolution:
{
- integrity: sha512-w/qzL212DFVOpMy3UGyxrND+Kb0fvCiBBujiaONIihq7VvtC7bswjWgKQU/w4VcRyDD8gpfqUiBQ4DUOwEJ6Qg==,
+ integrity: sha512-QByrI7hAhsoze992kpbMlJSbZ8FuCEc1OT9EFbZ6HldXNpsdpZr+YXC5di3UEv0+jeZlHbZcoCADgb7a+lPmmQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-timing-functions@7.0.0:
+ postcss-normalize-timing-functions@7.0.1:
resolution:
{
- integrity: sha512-tNgw3YV0LYoRwg43N3lTe3AEWZ66W7Dh7lVEpJbHoKOuHc1sLrzMLMFjP8SNULHaykzsonUEDbKedv8C+7ej6g==,
+ integrity: sha512-bHifyuuSNdKKsnNJ0s8fmfLMlvsQwYVxIoUBnowIVl2ZAdrkYQNGVB4RxjfpvkMjipqvbz0u7feBZybkl/6NJg==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-unicode@7.0.2:
+ postcss-normalize-unicode@7.0.3:
resolution:
{
- integrity: sha512-ztisabK5C/+ZWBdYC+Y9JCkp3M9qBv/XFvDtSw0d/XwfT3UaKeW/YTm/MD/QrPNxuecia46vkfEhewjwcYFjkg==,
+ integrity: sha512-EcoA29LvG3F+EpOh03iqu+tJY3uYYKzArqKJHxDhUYLa2u58aqGq16K6/AOsXD9yqLN8O6y9mmePKN5cx6krOw==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-url@7.0.0:
+ postcss-normalize-url@7.0.1:
resolution:
{
- integrity: sha512-+d7+PpE+jyPX1hDQZYG+NaFD+Nd2ris6r8fPTBAjE8z/U41n/bib3vze8x7rKs5H1uEw5ppe9IojewouHk0klQ==,
+ integrity: sha512-sUcD2cWtyK1AOL/82Fwy1aIVm/wwj5SdZkgZ3QiUzSzQQofrbq15jWJ3BA7Z+yVRwamCjJgZJN0I9IS7c6tgeQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-normalize-whitespace@7.0.0:
+ postcss-normalize-whitespace@7.0.1:
resolution:
{
- integrity: sha512-37/toN4wwZErqohedXYqWgvcHUGlT8O/m2jVkAfAe9Bd4MzRqlBmXrJRePH0e9Wgnz2X7KymTgTOaaFizQe3AQ==,
+ integrity: sha512-vsbgFHMFQrJBJKrUFJNZ2pgBeBkC2IvvoHjz1to0/0Xk7sII24T0qFOiJzG6Fu3zJoq/0yI4rKWi7WhApW+EFA==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-opacity-percentage@3.0.0:
resolution:
@@ -7645,14 +7467,14 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-ordered-values@7.0.1:
+ postcss-ordered-values@7.0.2:
resolution:
{
- integrity: sha512-irWScWRL6nRzYmBOXReIKch75RRhNS86UPUAxXdmW/l0FcAsg0lvAXQCby/1lymxn/o0gVa6Rv/0f03eJOwHxw==,
+ integrity: sha512-AMJjt1ECBffF7CEON/Y0rekRLS6KsePU6PRP08UqYW4UGFRnTXNrByUzYK1h8AC7UWTZdQ9O3Oq9kFIhm0SFEw==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-overflow-shorthand@6.0.0:
resolution:
@@ -7680,10 +7502,10 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-preset-env@10.1.3:
+ postcss-preset-env@10.1.6:
resolution:
{
- integrity: sha512-9qzVhcMFU/MnwYHyYpJz4JhGku/4+xEiPTmhn0hj3IxnUYlEF9vbh7OC1KoLAnenS6Fgg43TKNp9xcuMeAi4Zw==,
+ integrity: sha512-1jRD7vttKLJ7o0mcmmYWKRLm7W14rI8K1I7Y41OeXUPEVc/CAzfTssNUeJ0zKbR+zMk4boqct/gwS/poIFF5Lg==,
}
engines: { node: ">=18" }
peerDependencies:
@@ -7698,23 +7520,23 @@ packages:
peerDependencies:
postcss: ^8.4
- postcss-reduce-initial@7.0.2:
+ postcss-reduce-initial@7.0.3:
resolution:
{
- integrity: sha512-pOnu9zqQww7dEKf62Nuju6JgsW2V0KRNBHxeKohU+JkHd/GAH5uvoObqFLqkeB2n20mr6yrlWDvo5UBU5GnkfA==,
+ integrity: sha512-RFvkZaqiWtGMlVjlUHpaxGqEL27lgt+Q2Ixjf83CRAzqdo+TsDyGPtJUbPx2MuYIJ+sCQc2TrOvRnhcXQfgIVA==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-reduce-transforms@7.0.0:
+ postcss-reduce-transforms@7.0.1:
resolution:
{
- integrity: sha512-pnt1HKKZ07/idH8cpATX/ujMbtOGhUfE+m8gbqwJE05aTaNw8gbo34a2e3if0xc0dlu75sUOiqvwCGY3fzOHew==,
+ integrity: sha512-MhyEbfrm+Mlp/36hvZ9mT9DaO7dbncU0CvWI8V93LRkY6IYlu38OPg3FObnuKTUxJ4qA8HpurdQOo5CyqqO76g==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-replace-overflow-wrap@4.0.0:
resolution:
@@ -7764,13 +7586,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.2:
resolution:
{
@@ -7778,30 +7593,30 @@ packages:
}
engines: { node: ">=4" }
- postcss-selector-parser@7.0.0:
+ postcss-selector-parser@7.1.0:
resolution:
{
- integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==,
+ integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==,
}
engines: { node: ">=4" }
- postcss-svgo@7.0.1:
+ postcss-svgo@7.0.2:
resolution:
{
- integrity: sha512-0WBUlSL4lhD9rA5k1e5D8EN5wCEyZD6HJk0jIvRxl+FDVOMlJ7DePHYWGGVc5QRqrJ3/06FTXM0bxjmJpmTPSA==,
+ integrity: sha512-5Dzy66JlnRM6pkdOTF8+cGsB1fnERTE8Nc+Eed++fOWo1hdsBptCsbG8UuJkgtZt75bRtMJIrPeZmtfANixdFA==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >= 18 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
- postcss-unique-selectors@7.0.3:
+ postcss-unique-selectors@7.0.4:
resolution:
{
- integrity: sha512-J+58u5Ic5T1QjP/LDV9g3Cx4CNOgB5vz+kM6+OxHHhFACdcDeKhBXjQmB7fnIZM12YSTvsL0Opwco83DmacW2g==,
+ integrity: sha512-pmlZjsmEAG7cHd7uK3ZiNSW6otSZ13RHuZ/4cDN/bVglS5EpF2r2oxY99SuOHa8m7AWoBCelTS3JPpzsIs8skQ==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
postcss-value-parser@4.2.0:
resolution:
@@ -7809,20 +7624,13 @@ packages:
integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==,
}
- postcss@8.4.49:
+ postcss@8.5.3:
resolution:
{
- integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==,
+ integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==,
}
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:
{
@@ -7858,10 +7666,10 @@ packages:
engines: { node: ">=10.13.0" }
hasBin: true
- prettier@3.4.2:
+ prettier@3.5.3:
resolution:
{
- integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==,
+ integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==,
}
engines: { node: ">=14" }
hasBin: true
@@ -7880,10 +7688,10 @@ packages:
}
engines: { node: ^14.13.1 || >=16.0.0 }
- pretty-ms@9.0.0:
+ pretty-ms@9.2.0:
resolution:
{
- integrity: sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==,
+ integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==,
}
engines: { node: ">=18" }
@@ -7899,12 +7707,19 @@ packages:
integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==,
}
- protocols@2.0.1:
+ protocols@2.0.2:
resolution:
{
- integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==,
+ integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==,
}
+ proxy-addr@2.0.7:
+ resolution:
+ {
+ integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==,
+ }
+ engines: { node: ">= 0.10" }
+
punycode@2.3.1:
resolution:
{
@@ -7912,6 +7727,13 @@ packages:
}
engines: { node: ">=6" }
+ qs@6.14.0:
+ resolution:
+ {
+ integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==,
+ }
+ engines: { node: ">=0.6" }
+
queue-microtask@1.2.3:
resolution:
{
@@ -7925,13 +7747,6 @@ packages:
}
engines: { node: ">=10" }
- quote-stream@1.0.2:
- resolution:
- {
- integrity: sha512-kKr2uQ2AokadPjvTyKJQad9xELbZwYzWlNfI3Uz2j/ib5u6H9lDP7fUUR//rMycd0gv4Z5P1qXMfXR8YpIxrjQ==,
- }
- hasBin: true
-
raf@3.4.1:
resolution:
{
@@ -7944,6 +7759,20 @@ packages:
integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==,
}
+ range-parser@1.2.1:
+ resolution:
+ {
+ integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==,
+ }
+ engines: { node: ">= 0.6" }
+
+ raw-body@3.0.0:
+ resolution:
+ {
+ integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==,
+ }
+ engines: { node: ">= 0.8" }
+
rc@1.2.8:
resolution:
{
@@ -7997,10 +7826,17 @@ packages:
integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==,
}
- regenerate-unicode-properties@10.1.1:
+ reflect.getprototypeof@1.0.10:
resolution:
{
- integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==,
+ integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==,
+ }
+ engines: { node: ">= 0.4" }
+
+ regenerate-unicode-properties@10.2.0:
+ resolution:
+ {
+ integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==,
}
engines: { node: ">=4" }
@@ -8010,43 +7846,37 @@ packages:
integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==,
}
- regenerator-runtime@0.14.1:
+ regexp.prototype.flags@1.5.4:
resolution:
{
- integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==,
- }
-
- regenerator-transform@0.15.2:
- resolution:
- {
- integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==,
- }
-
- regexp.prototype.flags@1.5.1:
- resolution:
- {
- integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==,
+ integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==,
}
engines: { node: ">= 0.4" }
- regexpu-core@5.3.2:
+ regexpu-core@6.2.0:
resolution:
{
- integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==,
+ integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==,
}
engines: { node: ">=4" }
- registry-auth-token@5.0.2:
+ registry-auth-token@5.1.0:
resolution:
{
- integrity: sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==,
+ integrity: sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==,
}
engines: { node: ">=14" }
- regjsparser@0.9.1:
+ regjsgen@0.8.0:
resolution:
{
- integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==,
+ integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==,
+ }
+
+ regjsparser@0.12.0:
+ resolution:
+ {
+ integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==,
}
hasBin: true
@@ -8103,24 +7933,12 @@ packages:
}
engines: { node: ">=8" }
- resolve-global@1.0.0:
+ resolve@1.22.10:
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:
- {
- integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
+ integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==,
}
+ engines: { node: ">= 0.4" }
hasBin: true
responselike@3.0.0:
@@ -8144,10 +7962,10 @@ packages:
}
engines: { node: ">=18" }
- reusify@1.0.4:
+ reusify@1.1.0:
resolution:
{
- integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==,
+ integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==,
}
engines: { iojs: ">=1.0.0", node: ">=0.10.0" }
@@ -8164,22 +7982,29 @@ packages:
}
engines: { node: ">= 0.8.15" }
- rollup@2.79.1:
+ rollup@2.79.2:
resolution:
{
- integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==,
+ integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==,
}
engines: { node: ">=10.0.0" }
hasBin: true
- rollup@4.30.1:
+ rollup@4.40.2:
resolution:
{
- integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==,
+ integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==,
}
engines: { node: ">=18.0.0", npm: ">=8.0.0" }
hasBin: true
+ router@2.2.0:
+ resolution:
+ {
+ integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==,
+ }
+ engines: { node: ">= 18" }
+
run-async@2.4.1:
resolution:
{
@@ -8200,16 +8025,16 @@ packages:
}
engines: { npm: ">=2.0.0" }
- rxjs@7.8.1:
+ rxjs@7.8.2:
resolution:
{
- integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==,
+ integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==,
}
- safe-array-concat@1.0.1:
+ safe-array-concat@1.1.3:
resolution:
{
- integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==,
+ integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==,
}
engines: { node: ">=0.4" }
@@ -8225,11 +8050,19 @@ packages:
integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==,
}
- safe-regex-test@1.0.0:
+ safe-push-apply@1.0.0:
resolution:
{
- integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==,
+ integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==,
}
+ engines: { node: ">= 0.4" }
+
+ safe-regex-test@1.1.0:
+ resolution:
+ {
+ integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==,
+ }
+ engines: { node: ">= 0.4" }
safer-buffer@2.1.2:
resolution:
@@ -8237,22 +8070,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.2.3:
resolution:
{
- integrity: sha512-5cfCmsTYV/wPaRIItNxatw02ua/MThdIUNnUOCYp+3LSEJvnG804ANw2VLaavNILIfWXF1D1G2KNANkBBvInwQ==,
- }
-
- semantic-release@24.2.1:
- resolution:
- {
- integrity: sha512-z0/3cutKNkLQ4Oy0HTi3lubnjTsdjjgOqmxdPjeYWe6lhFqUPfwslZxRHv3HDZlN4MhnZitb9SLihDkZNxOXfQ==,
+ integrity: sha512-KRhQG9cUazPavJiJEFIJ3XAMjgfd0fcK3B+T26qOl8L0UG5aZUjeRfREO0KM5InGtYwxqiiytkJrbcYoLDEv0A==,
}
engines: { node: ">=20.8.1" }
hasBin: true
@@ -8278,44 +8105,65 @@ packages:
}
hasBin: true
- semver@7.6.0:
+ semver@7.7.2:
resolution:
{
- integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==,
+ integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==,
}
engines: { node: ">=10" }
hasBin: true
+ send@1.2.0:
+ resolution:
+ {
+ integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==,
+ }
+ engines: { node: ">= 18" }
+
serialize-javascript@6.0.2:
resolution:
{
integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==,
}
+ serve-static@2.2.0:
+ resolution:
+ {
+ integrity: sha512-61g9pCh0Vnh7IutZjtLGGpTA355+OPn2TyDv/6ivP2h/AdAVX9azsoxmg2/M6nZeQZNYBEwIcsne1mJd9oQItQ==,
+ }
+ engines: { node: ">= 18" }
+
set-blocking@2.0.0:
resolution:
{
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:
+ set-proto@1.0.0:
resolution:
{
- integrity: sha512-b6i4ZpVuUxB9h5gfCxPiusKYkqTMOjEbBs4wMaFbkfia4yFv92UKZ6Df8WXcKbn08JNL/abvg3FnMAOfakDvUw==,
+ integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==,
+ }
+ engines: { node: ">= 0.4" }
+
+ setprototypeof@1.2.0:
+ resolution:
+ {
+ integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==,
}
shebang-command@2.0.0:
@@ -8332,11 +8180,33 @@ packages:
}
engines: { node: ">=8" }
- side-channel@1.0.4:
+ side-channel-list@1.0.0:
resolution:
{
- integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==,
+ integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==,
}
+ engines: { node: ">= 0.4" }
+
+ side-channel-map@1.0.1:
+ resolution:
+ {
+ integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==,
+ }
+ engines: { node: ">= 0.4" }
+
+ side-channel-weakmap@1.0.2:
+ resolution:
+ {
+ integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==,
+ }
+ engines: { node: ">= 0.4" }
+
+ side-channel@1.1.0:
+ resolution:
+ {
+ integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==,
+ }
+ engines: { node: ">= 0.4" }
signal-exit@3.0.7:
resolution:
@@ -8406,13 +8276,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:
{
@@ -8426,20 +8289,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:
{
@@ -8473,10 +8322,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:
@@ -8485,10 +8334,10 @@ packages:
integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==,
}
- spdx-license-ids@3.0.16:
+ spdx-license-ids@3.0.21:
resolution:
{
- integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==,
+ integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==,
}
split2@1.0.0:
@@ -8504,24 +8353,19 @@ 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:
+ statuses@2.0.1:
resolution:
{
- integrity: sha512-agtxZ/kWSsCkI5E4QifRwsaPs0P0JmZV6dkLz6ILYfFYQGn+5plctanRN+IC8dJRiFkyXHrwEE3W9Wmx67uDbw==,
- }
-
- static-module@3.0.4:
- resolution:
- {
- integrity: sha512-gb0v0rrgpBkifXCa3yZXxqVmXDVE+ETXj6YlC/jt5VzOnGXR2C15+++eXuMDUYsePnbhf+lwW0pE1UXyOLtGCw==,
+ integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==,
}
+ engines: { node: ">= 0.8" }
stencil-wormhole@3.4.1:
resolution:
@@ -8556,37 +8400,40 @@ 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.12:
resolution:
{
- integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==,
- }
-
- string.prototype.trim@1.2.8:
- resolution:
- {
- integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==,
+ integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==,
}
engines: { node: ">= 0.4" }
- string.prototype.trimend@1.0.7:
+ string.prototype.trim@1.2.10:
resolution:
{
- integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==,
+ integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==,
}
+ engines: { node: ">= 0.4" }
- string.prototype.trimstart@1.0.7:
+ string.prototype.trimend@1.0.9:
resolution:
{
- integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==,
+ integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==,
}
+ engines: { node: ">= 0.4" }
+
+ string.prototype.trimstart@1.0.8:
+ resolution:
+ {
+ integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==,
+ }
+ engines: { node: ">= 0.4" }
string_decoder@1.1.1:
resolution:
@@ -8677,20 +8524,20 @@ 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:
+ stylehacks@7.0.5:
resolution:
{
- integrity: sha512-i4zfNrGMt9SB4xRK9L83rlsFCgdGANfeDAYacO1pkqcE7cRHPdWHwnKZVz7WY17Veq/FvyYsRAU++Ga+qDFIww==,
+ integrity: sha512-5kNb7V37BNf0Q3w+1pxfa+oiNPS++/b4Jil9e/kPDgrk1zjEd6uR7SZeJiYaLYH6RRSC1XX2/37OTeU/4FvuIA==,
}
engines: { node: ^18.12.0 || ^20.9.0 || >=22.0 }
peerDependencies:
- postcss: ^8.4.31
+ postcss: ^8.4.32
stylelint-config-recommended@14.0.1:
resolution:
@@ -8710,10 +8557,10 @@ packages:
peerDependencies:
stylelint: ^16.1.0
- stylelint@16.12.0:
+ stylelint@16.19.1:
resolution:
{
- integrity: sha512-F8zZ3L/rBpuoBZRvI4JVT20ZanPLXfQLzMOZg1tzPflRVh9mKpOZ8qcSIhh1my3FjAjZWG4T2POwGnmn6a6hbg==,
+ integrity: sha512-C1SlPZNMKl+d/C867ZdCRthrS+6KuZ3AoGW113RZCOL0M8xOGpgx7G70wq7lFvqvm4dcfdGFVLB/mNaLFChRKw==,
}
engines: { node: ">=18.12.0" }
hasBin: true
@@ -8747,10 +8594,10 @@ packages:
}
engines: { node: ">=8" }
- supports-hyperlinks@3.1.0:
+ supports-hyperlinks@3.2.0:
resolution:
{
- integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==,
+ integrity: sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==,
}
engines: { node: ">=14.18" }
@@ -8775,10 +8622,10 @@ packages:
engines: { node: ">=14.0.0" }
hasBin: true
- synckit@0.9.1:
+ synckit@0.11.4:
resolution:
{
- integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==,
+ integrity: sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ==,
}
engines: { node: ^14.18.0 || >=16.0.0 }
@@ -8825,10 +8672,10 @@ packages:
}
engines: { node: ">=14.16" }
- terser@5.26.0:
+ terser@5.39.0:
resolution:
{
- integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==,
+ integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==,
}
engines: { node: ">=10" }
hasBin: true
@@ -8884,16 +8731,16 @@ packages:
integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==,
}
- tinyexec@0.3.0:
+ tinyexec@1.0.1:
resolution:
{
- integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==,
+ integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==,
}
- tinyglobby@0.2.10:
+ tinyglobby@0.2.13:
resolution:
{
- integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==,
+ integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==,
}
engines: { node: ">=12.0.0" }
@@ -8910,13 +8757,6 @@ packages:
}
engines: { node: ">=0.6.0" }
- to-fast-properties@2.0.0:
- resolution:
- {
- integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
- }
- engines: { node: ">=4" }
-
to-regex-range@5.0.1:
resolution:
{
@@ -8924,6 +8764,13 @@ packages:
}
engines: { node: ">=8.0" }
+ toidentifier@1.0.1:
+ resolution:
+ {
+ integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==,
+ }
+ engines: { node: ">=0.6" }
+
tr46@0.0.3:
resolution:
{
@@ -8943,10 +8790,10 @@ packages:
}
engines: { node: ">= 0.4" }
- ts-api-utils@2.0.0:
+ ts-api-utils@2.1.0:
resolution:
{
- integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==,
+ integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==,
}
engines: { node: ">=18.12" }
peerDependencies:
@@ -8964,19 +8811,12 @@ packages:
integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==,
}
- tslib@2.6.2:
+ tslib@2.8.1:
resolution:
{
- integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
+ integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==,
}
- type-check@0.3.2:
- resolution:
- {
- integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==,
- }
- engines: { node: ">= 0.8.0" }
-
type-check@0.4.0:
resolution:
{
@@ -9012,107 +8852,91 @@ packages:
}
engines: { node: ">=12.20" }
- type-fest@3.13.1:
+ type-fest@4.41.0:
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-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==,
}
engines: { node: ">=16" }
- type@1.2.0:
+ type-is@2.0.1:
resolution:
{
- integrity: sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==,
+ integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==,
}
+ engines: { node: ">= 0.6" }
- type@2.7.2:
+ typed-array-buffer@1.0.3:
resolution:
{
- integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==,
- }
-
- typed-array-buffer@1.0.0:
- resolution:
- {
- integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==,
+ integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==,
}
engines: { node: ">= 0.4" }
- typed-array-byte-length@1.0.0:
+ typed-array-byte-length@1.0.3:
resolution:
{
- integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==,
+ integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==,
}
engines: { node: ">= 0.4" }
- typed-array-byte-offset@1.0.0:
+ typed-array-byte-offset@1.0.4:
resolution:
{
- integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==,
+ integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==,
}
engines: { node: ">= 0.4" }
- typed-array-length@1.0.4:
+ typed-array-length@1.0.7:
resolution:
{
- integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==,
+ integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==,
}
+ engines: { node: ">= 0.4" }
- typedarray@0.0.6:
+ typescript-eslint@8.32.1:
resolution:
{
- integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==,
- }
-
- typescript-eslint@8.19.1:
- resolution:
- {
- integrity: sha512-LKPUQpdEMVOeKluHi8md7rwLcoXHhwvWp3x+sJkMuq3gGm9yaYJtPo8sRZSblMFJ5pcOGCAak/scKf1mvZDlQw==,
+ integrity: sha512-D7el+eaDHAmXvrZBy1zpzSNIRqnCOrkwTgZxTu3MUqRWk8k0q9m9Ho4+vPf7iHtgUfrK/o8IZaEApsxPlHTFCg==,
}
engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 }
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: ">=4.8.4 <5.8.0"
+ typescript: ">=4.8.4 <5.9.0"
- typescript@5.7.2:
+ typescript@5.7.3:
resolution:
{
- integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==,
+ integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==,
}
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
- unbox-primitive@1.0.2:
+ unbox-primitive@1.1.0:
resolution:
{
- integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==,
+ integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==,
+ }
+ engines: { node: ">= 0.4" }
+
+ undici-types@6.21.0:
+ resolution:
+ {
+ integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==,
}
- undici-types@5.26.5:
+ unicode-canonical-property-names-ecmascript@2.0.1:
resolution:
{
- integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
- }
-
- unicode-canonical-property-names-ecmascript@2.0.0:
- resolution:
- {
- integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==,
+ integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==,
}
engines: { node: ">=4" }
@@ -9130,10 +8954,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" }
@@ -9163,6 +8987,13 @@ packages:
}
engines: { node: ">=18" }
+ unicorn-magic@0.3.0:
+ resolution:
+ {
+ integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==,
+ }
+ engines: { node: ">=18" }
+
unique-string@2.0.0:
resolution:
{
@@ -9177,10 +9008,10 @@ packages:
}
engines: { node: ">=12" }
- universal-user-agent@7.0.2:
+ universal-user-agent@7.0.3:
resolution:
{
- integrity: sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==,
+ integrity: sha512-TmnEAEAsBJVZM/AADELsK76llnwcf9vMKuPz8JflO1frO8Lchitr0fNaN9d+Ap0BjKtqWqd/J17qeDnXh8CL2A==,
}
universalify@2.0.1:
@@ -9190,6 +9021,13 @@ packages:
}
engines: { node: ">= 10.0.0" }
+ unpipe@1.0.0:
+ resolution:
+ {
+ integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==,
+ }
+ engines: { node: ">= 0.8" }
+
upath@1.2.0:
resolution:
{
@@ -9197,10 +9035,10 @@ packages:
}
engines: { node: ">=4" }
- update-browserslist-db@1.1.0:
+ update-browserslist-db@1.1.3:
resolution:
{
- integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==,
+ integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==,
}
hasBin: true
peerDependencies:
@@ -9237,14 +9075,21 @@ packages:
integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==,
}
- vite-plugin-pwa@0.21.1:
+ vary@1.1.2:
resolution:
{
- integrity: sha512-rkTbKFbd232WdiRJ9R3u+hZmf5SfQljX1b45NF6oLA6DSktEKpYllgTo1l2lkiZWMWV78pABJtFjNXfBef3/3Q==,
+ integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==,
+ }
+ engines: { node: ">= 0.8" }
+
+ vite-plugin-pwa@1.0.0:
+ resolution:
+ {
+ integrity: sha512-X77jo0AOd5OcxmWj3WnVti8n7Kw2tBgV1c8MCXFclrSlDV23ePzv2eTDIALXI2Qo6nJ5pZJeZAuX0AawvRfoeA==,
}
engines: { node: ">=16.0.0" }
peerDependencies:
- "@vite-pwa/assets-generator": ^0.2.6
+ "@vite-pwa/assets-generator": ^1.0.0
vite: ^3.1.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
workbox-build: ^7.3.0
workbox-window: ^7.3.0
@@ -9252,10 +9097,10 @@ packages:
"@vite-pwa/assets-generator":
optional: true
- vite@6.0.7:
+ vite@6.3.5:
resolution:
{
- integrity: sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==,
+ integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==,
}
engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
hasBin: true
@@ -9301,10 +9146,10 @@ packages:
integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==,
}
- wavesurfer.js@7.8.15:
+ wavesurfer.js@7.9.5:
resolution:
{
- integrity: sha512-fWNnQt5BEGzuoJ7HRxfvpT1rOEI1AmCGPZ/+7QDkDVN/m2vIBeLVQ+5vENRMz1YwvZ/u1No0UV492/o8G++KXQ==,
+ integrity: sha512-ioOG9chuAn0bF2NYYKkZtaxjcQK/hFskLg8ViLYbJHhWPk1N5wWtuqVhqeh2ZWT2SK3t0E8UkD7lLDLuZQQaSA==,
}
wcwidth@1.0.1:
@@ -9337,11 +9182,26 @@ packages:
integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==,
}
- which-boxed-primitive@1.0.2:
+ which-boxed-primitive@1.1.1:
resolution:
{
- integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==,
+ integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==,
}
+ engines: { node: ">= 0.4" }
+
+ which-builtin-type@1.2.1:
+ resolution:
+ {
+ integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==,
+ }
+ engines: { node: ">= 0.4" }
+
+ which-collection@1.0.2:
+ resolution:
+ {
+ integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==,
+ }
+ engines: { node: ">= 0.4" }
which-module@2.0.1:
resolution:
@@ -9349,10 +9209,10 @@ packages:
integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==,
}
- which-typed-array@1.1.13:
+ which-typed-array@1.1.19:
resolution:
{
- integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==,
+ integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==,
}
engines: { node: ">= 0.4" }
@@ -9522,25 +9382,26 @@ packages:
}
engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 }
- xml-formatter@3.6.3:
+ xml-formatter@3.6.6:
resolution:
{
- integrity: sha512-++x1TlRO1FRlQ82AZ4WnoCSufaI/PT/sycn4K8nRl4gnrNC1uYY2VV/67aALZ2m0Q4Q/BLj/L69K360Itw9NNg==,
+ integrity: sha512-yfofQht42x2sN1YThT6Er6GFXiQinfDAsMTNvMPi2uZw5/Vtc2PYHfvALR8U+b2oN2ekBxLd2tGWV06rAM8nQA==,
}
engines: { node: ">= 16" }
- xml-parser-xo@4.1.2:
+ xml-parser-xo@4.1.4:
resolution:
{
- integrity: sha512-Z/DRB0ZAKj5vAQg++XsfQQKfT73Vfj5n5lKIVXobBDQEva6NHWUTxOA6OohJmEcpoy8AEqBmSGkXXAnFwt5qAA==,
+ integrity: sha512-wo+yWDNeMwd1ctzH4CsiGXaAappDsxuR+VnmPewOzHk/zvefksT2ZlcWpAePl11THOWgnIZM4GjvumevurNWZw==,
}
engines: { node: ">= 16" }
- xmldoc@1.3.0:
+ xmldoc@2.0.1:
resolution:
{
- integrity: sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==,
+ integrity: sha512-sOOqgsjl3PU6iBw+fBUGAkTCE+JFK+sBaOL3pnZgzqk2/yvOD7RlFmZtDRJAEBzdpOYxSXyOQH4mjubdfs3MSg==,
}
+ engines: { node: ">=12.0.0" }
xtend@4.0.2:
resolution:
@@ -9568,24 +9429,10 @@ packages:
integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
}
- yallist@4.0.0:
+ yaml@2.7.1:
resolution:
{
- integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
- }
-
- yaml@2.5.1:
- resolution:
- {
- integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==,
- }
- engines: { node: ">= 14" }
- hasBin: true
-
- yaml@2.6.1:
- resolution:
- {
- integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==,
+ integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==,
}
engines: { node: ">= 14" }
hasBin: true
@@ -9639,915 +9486,822 @@ packages:
}
engines: { node: ">=10" }
- yocto-queue@1.0.0:
+ yocto-queue@1.2.1:
resolution:
{
- integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==,
+ integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==,
}
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": {}
+ zod-to-json-schema@3.24.5:
+ resolution:
+ {
+ integrity: sha512-/AuWwMP+YqiPbsJx5D6TfgRTc4kTLjsh5SOcd4bLsfUg2RcEXrFMJl1DGgdHy2aCfsIA/cr/1JM0xcB2GZji8g==,
+ }
+ peerDependencies:
+ zod: ^3.24.1
+ zod@3.24.4:
+ resolution:
+ {
+ integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==,
+ }
+
+snapshots:
"@alloc/quick-lru@5.2.0": {}
"@amcharts/amcharts4-geodata@4.1.30": {}
- "@amcharts/amcharts4@4.10.39":
+ "@amcharts/amcharts4@4.10.40":
dependencies:
- "@babel/runtime": 7.23.6
- core-js: 3.35.0
+ "@babel/runtime": 7.27.1
+ core-js: 3.42.0
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.20
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.8.1
- "@ampproject/remapping@2.2.1":
+ "@ampproject/remapping@2.3.0":
dependencies:
- "@jridgewell/gen-mapping": 0.3.5
+ "@jridgewell/gen-mapping": 0.3.8
"@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.27.1":
dependencies:
- "@babel/highlight": 7.23.4
- chalk: 2.4.2
+ "@babel/helper-validator-identifier": 7.27.1
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- "@babel/code-frame@7.24.2":
+ "@babel/compat-data@7.27.2": {}
+
+ "@babel/core@7.27.1":
dependencies:
- "@babel/highlight": 7.24.2
- picocolors: 1.1.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.27.1
+ "@babel/generator": 7.27.1
+ "@babel/helper-compilation-targets": 7.27.2
+ "@babel/helper-module-transforms": 7.27.1(@babel/core@7.27.1)
+ "@babel/helpers": 7.27.1
+ "@babel/parser": 7.27.2
+ "@babel/template": 7.27.2
+ "@babel/traverse": 7.27.1
+ "@babel/types": 7.27.1
convert-source-map: 2.0.0
- debug: 4.3.6
+ debug: 4.4.0
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.27.1":
dependencies:
- "@babel/types": 7.24.0
- "@jridgewell/gen-mapping": 0.3.5
+ "@babel/parser": 7.27.2
+ "@babel/types": 7.27.1
+ "@jridgewell/gen-mapping": 0.3.8
"@jridgewell/trace-mapping": 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.1.0
- "@babel/helper-annotate-as-pure@7.22.5":
+ "@babel/helper-annotate-as-pure@7.27.1":
dependencies:
- "@babel/types": 7.24.0
+ "@babel/types": 7.27.1
- "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15":
+ "@babel/helper-compilation-targets@7.27.2":
dependencies:
- "@babel/types": 7.24.0
-
- "@babel/helper-compilation-targets@7.23.6":
- dependencies:
- "@babel/compat-data": 7.23.5
- "@babel/helper-validator-option": 7.23.5
- browserslist: 4.23.3
+ "@babel/compat-data": 7.27.2
+ "@babel/helper-validator-option": 7.27.1
+ browserslist: 4.24.5
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.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-annotate-as-pure": 7.27.1
+ "@babel/helper-member-expression-to-functions": 7.27.1
+ "@babel/helper-optimise-call-expression": 7.27.1
+ "@babel/helper-replace-supers": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-skip-transparent-expression-wrappers": 7.27.1
+ "@babel/traverse": 7.27.1
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ "@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.1)":
+ dependencies:
+ "@babel/core": 7.27.1
+ "@babel/helper-annotate-as-pure": 7.27.1
+ regexpu-core: 6.2.0
semver: 6.3.1
- "@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)":
+ "@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-annotate-as-pure": 7.22.5
- regexpu-core: 5.3.2
- semver: 6.3.1
-
- "@babel/helper-define-polyfill-provider@0.4.4(@babel/core@7.24.4)":
- dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-compilation-targets": 7.23.6
- "@babel/helper-plugin-utils": 7.22.5
- debug: 4.3.6
+ "@babel/core": 7.27.1
+ "@babel/helper-compilation-targets": 7.27.2
+ "@babel/helper-plugin-utils": 7.27.1
+ debug: 4.4.0
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- "@babel/helper-environment-visitor@7.22.20": {}
-
- "@babel/helper-function-name@7.23.0":
+ "@babel/helper-member-expression-to-functions@7.27.1":
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.27.1
+ "@babel/types": 7.27.1
transitivePeerDependencies:
- supports-color
- "@babel/highlight@7.23.4":
+ "@babel/helper-module-imports@7.27.1":
dependencies:
- "@babel/helper-validator-identifier": 7.22.20
- chalk: 2.4.2
- js-tokens: 4.0.0
+ "@babel/traverse": 7.27.1
+ "@babel/types": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/highlight@7.24.2":
+ "@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/helper-validator-identifier": 7.22.20
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.0
+ "@babel/core": 7.27.1
+ "@babel/helper-module-imports": 7.27.1
+ "@babel/helper-validator-identifier": 7.27.1
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/parser@7.24.4":
+ "@babel/helper-optimise-call-expression@7.27.1":
dependencies:
- "@babel/types": 7.24.0
+ "@babel/types": 7.27.1
- "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.24.4)":
- dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/helper-plugin-utils@7.27.1": {}
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.24.4)":
+ "@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-annotate-as-pure": 7.27.1
+ "@babel/helper-wrap-function": 7.27.1
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.24.4)":
+ "@babel/helper-replace-supers@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-environment-visitor": 7.22.20
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-member-expression-to-functions": 7.27.1
+ "@babel/helper-optimise-call-expression": 7.27.1
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)":
+ "@babel/helper-skip-transparent-expression-wrappers@7.27.1":
dependencies:
- "@babel/core": 7.24.4
+ "@babel/traverse": 7.27.1
+ "@babel/types": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)":
- dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/helper-string-parser@7.27.1": {}
- "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)":
- dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/helper-validator-identifier@7.27.1": {}
- "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)":
- dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/helper-validator-option@7.27.1": {}
- "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)":
+ "@babel/helper-wrap-function@7.27.1":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/template": 7.27.2
+ "@babel/traverse": 7.27.1
+ "@babel/types": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)":
+ "@babel/helpers@7.27.1":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/template": 7.27.2
+ "@babel/types": 7.27.1
- "@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.24.4)":
+ "@babel/parser@7.27.2":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/types": 7.27.1
- "@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)":
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)":
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)":
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": 7.27.1
+ "@babel/plugin-transform-optional-chaining": 7.27.1(@babel/core@7.27.1)
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)":
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)":
+ "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
- "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)":
+ "@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)":
+ "@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)":
+ "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)":
+ "@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)":
+ "@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-remap-async-to-generator": 7.27.1(@babel/core@7.27.1)
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)":
+ "@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-module-imports": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-remap-async-to-generator": 7.27.1(@babel/core@7.27.1)
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-block-scoping@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-create-class-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-create-class-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-classes@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
-
- "@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.24.4)":
- 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-transform-class-static-block@7.23.4(@babel/core@7.24.4)":
- 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/plugin-transform-classes@7.23.5(@babel/core@7.24.4)":
- 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.27.1
+ "@babel/helper-annotate-as-pure": 7.27.1
+ "@babel/helper-compilation-targets": 7.27.2
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-replace-supers": 7.27.1(@babel/core@7.27.1)
+ "@babel/traverse": 7.27.1
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.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
- "@babel/template": 7.24.0
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/template": 7.27.2
- "@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-destructuring@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-for-of@7.23.6(@babel/core@7.24.4)":
+ "@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-function-name@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-compilation-targets": 7.27.2
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-literals@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-module-transforms": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-module-transforms": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-module-transforms": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-validator-identifier": 7.27.1
+ "@babel/traverse": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)":
+ "@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-module-transforms": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-new-target@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-object-super@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-object-rest-spread@7.27.2(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-compilation-targets": 7.27.2
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/plugin-transform-destructuring": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-parameters": 7.27.1(@babel/core@7.27.1)
- "@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-replace-supers": 7.27.1(@babel/core@7.27.1)
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-parameters@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-parameters@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.24.4)":
+ "@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-create-class-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-annotate-as-pure": 7.27.1
+ "@babel/helper-create-class-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
- regenerator-transform: 0.15.2
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-regenerator@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-spread@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-skip-transparent-expression-wrappers": 7.27.1
+ transitivePeerDependencies:
+ - supports-color
- "@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.24.4)":
+ "@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.1)":
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.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
- "@babel/preset-env@7.23.6(@babel/core@7.24.4)":
+ "@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.1)":
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/core": 7.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+
+ "@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.1)":
+ dependencies:
+ "@babel/core": 7.27.1
+ "@babel/helper-create-regexp-features-plugin": 7.27.1(@babel/core@7.27.1)
+ "@babel/helper-plugin-utils": 7.27.1
+
+ "@babel/preset-env@7.27.2(@babel/core@7.27.1)":
+ dependencies:
+ "@babel/compat-data": 7.27.2
+ "@babel/core": 7.27.1
+ "@babel/helper-compilation-targets": 7.27.2
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/helper-validator-option": 7.27.1
+ "@babel/plugin-bugfix-firefox-class-in-computed-class-key": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-bugfix-safari-class-field-initializer-scope": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.1)
+ "@babel/plugin-syntax-import-assertions": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-syntax-import-attributes": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.27.1)
+ "@babel/plugin-transform-arrow-functions": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-async-generator-functions": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-async-to-generator": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-block-scoped-functions": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-block-scoping": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-class-properties": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-class-static-block": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-classes": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-computed-properties": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-destructuring": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-dotall-regex": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-duplicate-keys": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-duplicate-named-capturing-groups-regex": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-dynamic-import": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-exponentiation-operator": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-export-namespace-from": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-for-of": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-function-name": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-json-strings": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-literals": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-logical-assignment-operators": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-member-expression-literals": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-modules-amd": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-modules-commonjs": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-modules-systemjs": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-modules-umd": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-named-capturing-groups-regex": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-new-target": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-nullish-coalescing-operator": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-numeric-separator": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-object-rest-spread": 7.27.2(@babel/core@7.27.1)
+ "@babel/plugin-transform-object-super": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-optional-catch-binding": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-optional-chaining": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-parameters": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-private-methods": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-private-property-in-object": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-property-literals": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-regenerator": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-regexp-modifiers": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-reserved-words": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-shorthand-properties": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-spread": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-sticky-regex": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-template-literals": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-typeof-symbol": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-unicode-escapes": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-unicode-property-regex": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-unicode-regex": 7.27.1(@babel/core@7.27.1)
+ "@babel/plugin-transform-unicode-sets-regex": 7.27.1(@babel/core@7.27.1)
+ "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.27.1)
+ babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.27.1)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.1)
+ babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.27.1)
+ core-js-compat: 3.42.0
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.27.1)":
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-plugin-utils": 7.22.5
- "@babel/types": 7.24.0
+ "@babel/core": 7.27.1
+ "@babel/helper-plugin-utils": 7.27.1
+ "@babel/types": 7.27.1
esutils: 2.0.3
- "@babel/regjsgen@0.8.0": {}
+ "@babel/runtime@7.27.1": {}
- "@babel/runtime@7.23.6":
+ "@babel/template@7.27.2":
dependencies:
- regenerator-runtime: 0.14.1
+ "@babel/code-frame": 7.27.1
+ "@babel/parser": 7.27.2
+ "@babel/types": 7.27.1
- "@babel/template@7.24.0":
+ "@babel/traverse@7.27.1":
dependencies:
- "@babel/code-frame": 7.24.2
- "@babel/parser": 7.24.4
- "@babel/types": 7.24.0
-
- "@babel/traverse@7.24.1":
- 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.6
+ "@babel/code-frame": 7.27.1
+ "@babel/generator": 7.27.1
+ "@babel/parser": 7.27.2
+ "@babel/template": 7.27.2
+ "@babel/types": 7.27.1
+ debug: 4.4.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- "@babel/types@7.24.0":
+ "@babel/types@7.27.1":
dependencies:
- "@babel/helper-string-parser": 7.23.4
- "@babel/helper-validator-identifier": 7.22.20
- to-fast-properties: 2.0.0
+ "@babel/helper-string-parser": 7.27.1
+ "@babel/helper-validator-identifier": 7.27.1
- "@codemirror/autocomplete@6.11.1(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.0)":
+ "@codemirror/autocomplete@6.18.6":
dependencies:
- "@codemirror/language": 6.10.8
- "@codemirror/state": 6.5.0
- "@codemirror/view": 6.36.1
- "@lezer/common": 1.2.0
+ "@codemirror/language": 6.11.0
+ "@codemirror/state": 6.5.2
+ "@codemirror/view": 6.36.8
+ "@lezer/common": 1.2.3
- "@codemirror/commands@6.7.1":
+ "@codemirror/commands@6.8.1":
dependencies:
- "@codemirror/language": 6.10.8
- "@codemirror/state": 6.5.0
- "@codemirror/view": 6.36.1
- "@lezer/common": 1.2.0
+ "@codemirror/language": 6.11.0
+ "@codemirror/state": 6.5.2
+ "@codemirror/view": 6.36.8
+ "@lezer/common": 1.2.3
"@codemirror/lang-xml@6.1.0":
dependencies:
- "@codemirror/autocomplete": 6.11.1(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.0)
- "@codemirror/language": 6.10.8
- "@codemirror/state": 6.5.0
- "@codemirror/view": 6.36.1
- "@lezer/common": 1.2.0
- "@lezer/xml": 1.0.4
+ "@codemirror/autocomplete": 6.18.6
+ "@codemirror/language": 6.11.0
+ "@codemirror/state": 6.5.2
+ "@codemirror/view": 6.36.8
+ "@lezer/common": 1.2.3
+ "@lezer/xml": 1.0.6
- "@codemirror/language@6.10.8":
+ "@codemirror/language@6.11.0":
dependencies:
- "@codemirror/state": 6.5.0
- "@codemirror/view": 6.36.1
- "@lezer/common": 1.2.0
- "@lezer/highlight": 1.2.0
- "@lezer/lr": 1.3.14
- style-mod: 4.1.0
+ "@codemirror/state": 6.5.2
+ "@codemirror/view": 6.36.8
+ "@lezer/common": 1.2.3
+ "@lezer/highlight": 1.2.1
+ "@lezer/lr": 1.4.2
+ style-mod: 4.1.2
- "@codemirror/lint@6.4.2":
+ "@codemirror/lint@6.8.5":
dependencies:
- "@codemirror/state": 6.5.0
- "@codemirror/view": 6.36.1
+ "@codemirror/state": 6.5.2
+ "@codemirror/view": 6.36.8
crelt: 1.0.6
- "@codemirror/search@6.5.5":
+ "@codemirror/search@6.5.10":
dependencies:
- "@codemirror/state": 6.5.0
- "@codemirror/view": 6.36.1
+ "@codemirror/state": 6.5.2
+ "@codemirror/view": 6.36.8
crelt: 1.0.6
- "@codemirror/state@6.5.0":
+ "@codemirror/state@6.5.2":
dependencies:
"@marijn/find-cluster-break": 1.0.2
- "@codemirror/view@6.36.1":
+ "@codemirror/view@6.36.8":
dependencies:
- "@codemirror/state": 6.5.0
- style-mod: 4.1.0
+ "@codemirror/state": 6.5.2
+ style-mod: 4.1.2
w3c-keyname: 2.2.8
"@colors/colors@1.5.0":
optional: true
- "@commitlint/cli@19.6.1(@types/node@20.10.5)(typescript@5.7.2)":
+ "@commitlint/cli@19.8.1(@types/node@22.15.17)(typescript@5.7.3)":
dependencies:
- "@commitlint/format": 19.5.0
- "@commitlint/lint": 19.6.0
- "@commitlint/load": 19.6.1(@types/node@20.10.5)(typescript@5.7.2)
- "@commitlint/read": 19.5.0
- "@commitlint/types": 19.5.0
- tinyexec: 0.3.0
+ "@commitlint/format": 19.8.1
+ "@commitlint/lint": 19.8.1
+ "@commitlint/load": 19.8.1(@types/node@22.15.17)(typescript@5.7.3)
+ "@commitlint/read": 19.8.1
+ "@commitlint/types": 19.8.1
+ tinyexec: 1.0.1
yargs: 17.7.2
transitivePeerDependencies:
- "@types/node"
- typescript
- "@commitlint/config-conventional@19.6.0":
+ "@commitlint/config-conventional@19.8.1":
dependencies:
- "@commitlint/types": 19.5.0
+ "@commitlint/types": 19.8.1
conventional-changelog-conventionalcommits: 7.0.2
- "@commitlint/config-validator@18.6.1":
+ "@commitlint/config-validator@19.8.1":
dependencies:
- "@commitlint/types": 18.6.1
- ajv: 8.12.0
- optional: true
+ "@commitlint/types": 19.8.1
+ ajv: 8.17.1
- "@commitlint/config-validator@19.5.0":
+ "@commitlint/ensure@19.8.1":
dependencies:
- "@commitlint/types": 19.5.0
- ajv: 8.12.0
-
- "@commitlint/ensure@19.5.0":
- dependencies:
- "@commitlint/types": 19.5.0
+ "@commitlint/types": 19.8.1
lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
lodash.snakecase: 4.1.1
lodash.startcase: 4.4.0
lodash.upperfirst: 4.3.1
- "@commitlint/execute-rule@18.6.1":
- optional: true
+ "@commitlint/execute-rule@19.8.1": {}
- "@commitlint/execute-rule@19.5.0": {}
-
- "@commitlint/format@19.5.0":
+ "@commitlint/format@19.8.1":
dependencies:
- "@commitlint/types": 19.5.0
- chalk: 5.3.0
+ "@commitlint/types": 19.8.1
+ chalk: 5.4.1
- "@commitlint/is-ignored@19.6.0":
+ "@commitlint/is-ignored@19.8.1":
dependencies:
- "@commitlint/types": 19.5.0
- semver: 7.6.0
+ "@commitlint/types": 19.8.1
+ semver: 7.7.2
- "@commitlint/lint@19.6.0":
+ "@commitlint/lint@19.8.1":
dependencies:
- "@commitlint/is-ignored": 19.6.0
- "@commitlint/parse": 19.5.0
- "@commitlint/rules": 19.6.0
- "@commitlint/types": 19.5.0
+ "@commitlint/is-ignored": 19.8.1
+ "@commitlint/parse": 19.8.1
+ "@commitlint/rules": 19.8.1
+ "@commitlint/types": 19.8.1
- "@commitlint/load@18.6.1(@types/node@20.10.5)(typescript@5.7.2)":
+ "@commitlint/load@19.8.1(@types/node@22.15.17)(typescript@5.7.3)":
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.7.2)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@20.10.5)(cosmiconfig@8.3.6(typescript@5.7.2))(typescript@5.7.2)
- 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.6.1(@types/node@20.10.5)(typescript@5.7.2)":
- dependencies:
- "@commitlint/config-validator": 19.5.0
- "@commitlint/execute-rule": 19.5.0
- "@commitlint/resolve-extends": 19.5.0
- "@commitlint/types": 19.5.0
- chalk: 5.3.0
- cosmiconfig: 9.0.0(typescript@5.7.2)
- cosmiconfig-typescript-loader: 6.1.0(@types/node@20.10.5)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2)
+ "@commitlint/config-validator": 19.8.1
+ "@commitlint/execute-rule": 19.8.1
+ "@commitlint/resolve-extends": 19.8.1
+ "@commitlint/types": 19.8.1
+ chalk: 5.4.1
+ cosmiconfig: 9.0.0(typescript@5.7.3)
+ cosmiconfig-typescript-loader: 6.1.0(@types/node@22.15.17)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -10555,80 +10309,65 @@ snapshots:
- "@types/node"
- typescript
- "@commitlint/message@19.5.0": {}
+ "@commitlint/message@19.8.1": {}
- "@commitlint/parse@19.5.0":
+ "@commitlint/parse@19.8.1":
dependencies:
- "@commitlint/types": 19.5.0
+ "@commitlint/types": 19.8.1
conventional-changelog-angular: 7.0.0
conventional-commits-parser: 5.0.0
- "@commitlint/read@19.5.0":
+ "@commitlint/read@19.8.1":
dependencies:
- "@commitlint/top-level": 19.5.0
- "@commitlint/types": 19.5.0
+ "@commitlint/top-level": 19.8.1
+ "@commitlint/types": 19.8.1
git-raw-commits: 4.0.0
minimist: 1.2.8
- tinyexec: 0.3.0
+ tinyexec: 1.0.1
- "@commitlint/resolve-extends@18.6.1":
+ "@commitlint/resolve-extends@19.8.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
+ "@commitlint/config-validator": 19.8.1
+ "@commitlint/types": 19.8.1
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
- "@commitlint/rules@19.6.0":
+ "@commitlint/rules@19.8.1":
dependencies:
- "@commitlint/ensure": 19.5.0
- "@commitlint/message": 19.5.0
- "@commitlint/to-lines": 19.5.0
- "@commitlint/types": 19.5.0
+ "@commitlint/ensure": 19.8.1
+ "@commitlint/message": 19.8.1
+ "@commitlint/to-lines": 19.8.1
+ "@commitlint/types": 19.8.1
- "@commitlint/to-lines@19.5.0": {}
+ "@commitlint/to-lines@19.8.1": {}
- "@commitlint/top-level@19.5.0":
+ "@commitlint/top-level@19.8.1":
dependencies:
find-up: 7.0.0
- "@commitlint/types@18.6.1":
+ "@commitlint/types@19.8.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
+ "@types/conventional-commits-parser": 5.0.1
+ chalk: 5.4.1
"@csstools/cascade-layer-name-parser@2.0.4(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
dependencies:
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/color-helpers@5.0.1": {}
+ "@csstools/color-helpers@5.0.2": {}
- "@csstools/css-calc@2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
+ "@csstools/css-calc@2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
dependencies:
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/css-color-parser@3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
+ "@csstools/css-color-parser@3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)":
dependencies:
- "@csstools/color-helpers": 5.0.1
- "@csstools/css-calc": 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/color-helpers": 5.0.2
+ "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
@@ -10643,365 +10382,364 @@ snapshots:
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-cascade-layers@5.0.1(postcss@8.4.49)":
+ "@csstools/postcss-cascade-layers@5.0.1(postcss@8.5.3)":
dependencies:
- "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.0.0)
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.1.0)
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- "@csstools/postcss-color-function@4.0.7(postcss@8.4.49)":
+ "@csstools/postcss-color-function@4.0.9(postcss@8.5.3)":
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-color-mix-function@3.0.7(postcss@8.4.49)":
+ "@csstools/postcss-color-mix-function@3.0.9(postcss@8.5.3)":
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-content-alt-text@2.0.4(postcss@8.4.49)":
+ "@csstools/postcss-content-alt-text@2.0.5(postcss@8.5.3)":
dependencies:
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-exponential-functions@2.0.6(postcss@8.4.49)":
+ "@csstools/postcss-exponential-functions@2.0.8(postcss@8.5.3)":
dependencies:
- "@csstools/css-calc": 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-font-format-keywords@4.0.0(postcss@8.4.49)":
+ "@csstools/postcss-font-format-keywords@4.0.0(postcss@8.5.3)":
dependencies:
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- "@csstools/postcss-gamut-mapping@2.0.7(postcss@8.4.49)":
+ "@csstools/postcss-gamut-mapping@2.0.9(postcss@8.5.3)":
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-gradients-interpolation-method@5.0.7(postcss@8.4.49)":
+ "@csstools/postcss-gradients-interpolation-method@5.0.9(postcss@8.5.3)":
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-hwb-function@4.0.7(postcss@8.4.49)":
+ "@csstools/postcss-hwb-function@4.0.9(postcss@8.5.3)":
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-ic-unit@4.0.0(postcss@8.4.49)":
+ "@csstools/postcss-ic-unit@4.0.1(postcss@8.5.3)":
dependencies:
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- "@csstools/postcss-initial@2.0.0(postcss@8.4.49)":
+ "@csstools/postcss-initial@2.0.1(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-is-pseudo-class@5.0.1(postcss@8.4.49)":
+ "@csstools/postcss-is-pseudo-class@5.0.1(postcss@8.5.3)":
dependencies:
- "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.0.0)
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.1.0)
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- "@csstools/postcss-light-dark-function@2.0.7(postcss@8.4.49)":
+ "@csstools/postcss-light-dark-function@2.0.8(postcss@8.5.3)":
dependencies:
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.4.49)":
+ "@csstools/postcss-logical-float-and-clear@3.0.0(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-logical-overflow@2.0.0(postcss@8.4.49)":
+ "@csstools/postcss-logical-overflow@2.0.0(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.4.49)":
+ "@csstools/postcss-logical-overscroll-behavior@2.0.0(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-logical-resize@3.0.0(postcss@8.4.49)":
+ "@csstools/postcss-logical-resize@3.0.0(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- "@csstools/postcss-logical-viewport-units@3.0.3(postcss@8.4.49)":
+ "@csstools/postcss-logical-viewport-units@3.0.3(postcss@8.5.3)":
dependencies:
"@csstools/css-tokenizer": 3.0.3
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-media-minmax@2.0.6(postcss@8.4.49)":
+ "@csstools/postcss-media-minmax@2.0.8(postcss@8.5.3)":
dependencies:
- "@csstools/css-calc": 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
"@csstools/media-query-list-parser": 4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.4(postcss@8.4.49)":
+ "@csstools/postcss-media-queries-aspect-ratio-number-values@3.0.4(postcss@8.5.3)":
dependencies:
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
"@csstools/media-query-list-parser": 4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-nested-calc@4.0.0(postcss@8.4.49)":
+ "@csstools/postcss-nested-calc@4.0.0(postcss@8.5.3)":
dependencies:
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- "@csstools/postcss-normalize-display-values@4.0.0(postcss@8.4.49)":
+ "@csstools/postcss-normalize-display-values@4.0.0(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- "@csstools/postcss-oklab-function@4.0.7(postcss@8.4.49)":
+ "@csstools/postcss-oklab-function@4.0.9(postcss@8.5.3)":
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-progressive-custom-properties@4.0.0(postcss@8.4.49)":
+ "@csstools/postcss-progressive-custom-properties@4.0.1(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- "@csstools/postcss-random-function@1.0.2(postcss@8.4.49)":
+ "@csstools/postcss-random-function@2.0.0(postcss@8.5.3)":
dependencies:
- "@csstools/css-calc": 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-relative-color-syntax@3.0.7(postcss@8.4.49)":
+ "@csstools/postcss-relative-color-syntax@3.0.9(postcss@8.5.3)":
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- "@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.4.49)":
+ "@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- "@csstools/postcss-sign-functions@1.1.1(postcss@8.4.49)":
+ "@csstools/postcss-sign-functions@1.1.3(postcss@8.5.3)":
dependencies:
- "@csstools/css-calc": 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-stepped-value-functions@4.0.6(postcss@8.4.49)":
+ "@csstools/postcss-stepped-value-functions@4.0.8(postcss@8.5.3)":
dependencies:
- "@csstools/css-calc": 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-text-decoration-shorthand@4.0.1(postcss@8.4.49)":
+ "@csstools/postcss-text-decoration-shorthand@4.0.2(postcss@8.5.3)":
dependencies:
- "@csstools/color-helpers": 5.0.1
- postcss: 8.4.49
+ "@csstools/color-helpers": 5.0.2
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- "@csstools/postcss-trigonometric-functions@4.0.6(postcss@8.4.49)":
+ "@csstools/postcss-trigonometric-functions@4.0.8(postcss@8.5.3)":
dependencies:
- "@csstools/css-calc": 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-calc": 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/postcss-unset-value@4.0.0(postcss@8.4.49)":
+ "@csstools/postcss-unset-value@4.0.0(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- "@csstools/selector-resolve-nested@3.0.0(postcss-selector-parser@7.0.0)":
+ "@csstools/selector-resolve-nested@3.0.0(postcss-selector-parser@7.1.0)":
dependencies:
- postcss-selector-parser: 7.0.0
+ postcss-selector-parser: 7.1.0
- "@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.0.0)":
+ "@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.0)":
dependencies:
- postcss-selector-parser: 7.0.0
+ postcss-selector-parser: 7.1.0
- "@csstools/utilities@2.0.0(postcss@8.4.49)":
+ "@csstools/utilities@2.0.0(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
"@dual-bundle/import-meta-resolve@4.1.0": {}
- "@esbuild/aix-ppc64@0.24.2":
+ "@esbuild/aix-ppc64@0.25.4":
optional: true
- "@esbuild/android-arm64@0.24.2":
+ "@esbuild/android-arm64@0.25.4":
optional: true
- "@esbuild/android-arm@0.24.2":
+ "@esbuild/android-arm@0.25.4":
optional: true
- "@esbuild/android-x64@0.24.2":
+ "@esbuild/android-x64@0.25.4":
optional: true
- "@esbuild/darwin-arm64@0.24.2":
+ "@esbuild/darwin-arm64@0.25.4":
optional: true
- "@esbuild/darwin-x64@0.24.2":
+ "@esbuild/darwin-x64@0.25.4":
optional: true
- "@esbuild/freebsd-arm64@0.24.2":
+ "@esbuild/freebsd-arm64@0.25.4":
optional: true
- "@esbuild/freebsd-x64@0.24.2":
+ "@esbuild/freebsd-x64@0.25.4":
optional: true
- "@esbuild/linux-arm64@0.24.2":
+ "@esbuild/linux-arm64@0.25.4":
optional: true
- "@esbuild/linux-arm@0.24.2":
+ "@esbuild/linux-arm@0.25.4":
optional: true
- "@esbuild/linux-ia32@0.24.2":
+ "@esbuild/linux-ia32@0.25.4":
optional: true
- "@esbuild/linux-loong64@0.24.2":
+ "@esbuild/linux-loong64@0.25.4":
optional: true
- "@esbuild/linux-mips64el@0.24.2":
+ "@esbuild/linux-mips64el@0.25.4":
optional: true
- "@esbuild/linux-ppc64@0.24.2":
+ "@esbuild/linux-ppc64@0.25.4":
optional: true
- "@esbuild/linux-riscv64@0.24.2":
+ "@esbuild/linux-riscv64@0.25.4":
optional: true
- "@esbuild/linux-s390x@0.24.2":
+ "@esbuild/linux-s390x@0.25.4":
optional: true
- "@esbuild/linux-x64@0.24.2":
+ "@esbuild/linux-x64@0.25.4":
optional: true
- "@esbuild/netbsd-arm64@0.24.2":
+ "@esbuild/netbsd-arm64@0.25.4":
optional: true
- "@esbuild/netbsd-x64@0.24.2":
+ "@esbuild/netbsd-x64@0.25.4":
optional: true
- "@esbuild/openbsd-arm64@0.24.2":
+ "@esbuild/openbsd-arm64@0.25.4":
optional: true
- "@esbuild/openbsd-x64@0.24.2":
+ "@esbuild/openbsd-x64@0.25.4":
optional: true
- "@esbuild/sunos-x64@0.24.2":
+ "@esbuild/sunos-x64@0.25.4":
optional: true
- "@esbuild/win32-arm64@0.24.2":
+ "@esbuild/win32-arm64@0.25.4":
optional: true
- "@esbuild/win32-ia32@0.24.2":
+ "@esbuild/win32-ia32@0.25.4":
optional: true
- "@esbuild/win32-x64@0.24.2":
+ "@esbuild/win32-x64@0.25.4":
optional: true
- "@eslint-community/eslint-utils@4.4.0(eslint@9.17.0(jiti@2.4.2))":
+ "@eslint-community/eslint-utils@4.7.0(eslint@9.26.0(jiti@2.4.2))":
dependencies:
- eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.26.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
- "@eslint-community/regexpp@4.10.0": {}
-
"@eslint-community/regexpp@4.12.1": {}
- "@eslint/config-array@0.19.1":
+ "@eslint/config-array@0.20.0":
dependencies:
- "@eslint/object-schema": 2.1.5
- debug: 4.3.6
+ "@eslint/object-schema": 2.1.6
+ debug: 4.4.0
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- "@eslint/core@0.9.1":
+ "@eslint/config-helpers@0.2.2": {}
+
+ "@eslint/core@0.13.0":
dependencies:
"@types/json-schema": 7.0.15
- "@eslint/eslintrc@3.2.0":
+ "@eslint/eslintrc@3.3.1":
dependencies:
ajv: 6.12.6
- debug: 4.3.6
+ debug: 4.4.0
espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- "@eslint/js@9.17.0": {}
+ "@eslint/js@9.26.0": {}
- "@eslint/object-schema@2.1.5": {}
+ "@eslint/object-schema@2.1.6": {}
- "@eslint/plugin-kit@0.2.4":
+ "@eslint/plugin-kit@0.2.8":
dependencies:
+ "@eslint/core": 0.13.0
levn: 0.4.1
- "@floating-ui/core@1.6.4":
+ "@floating-ui/core@1.7.0":
dependencies:
"@floating-ui/utils": 0.2.9
- "@floating-ui/dom@1.6.13":
+ "@floating-ui/dom@1.7.0":
dependencies:
- "@floating-ui/core": 1.6.4
+ "@floating-ui/core": 1.7.0
"@floating-ui/utils": 0.2.9
"@floating-ui/utils@0.2.9": {}
- "@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
@@ -11009,17 +10747,17 @@ 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":
+ "@foliojs-fork/pdfkit@0.15.3":
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
+ jpeg-exif: 1.1.4
png-js: 1.0.0
"@foliojs-fork/restructure@2.0.2": {}
@@ -11030,7 +10768,7 @@ snapshots:
"@github/markdown-toolbar-element@2.2.3": {}
- "@github/relative-time-element@4.4.4": {}
+ "@github/relative-time-element@4.4.8": {}
"@humanfs/core@0.19.1": {}
@@ -11043,7 +10781,7 @@ snapshots:
"@humanwhocodes/retry@0.3.1": {}
- "@humanwhocodes/retry@0.4.1": {}
+ "@humanwhocodes/retry@0.4.3": {}
"@isaacs/cliui@8.0.2":
dependencies:
@@ -11054,52 +10792,71 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- "@jridgewell/gen-mapping@0.3.5":
+ "@jridgewell/gen-mapping@0.3.8":
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/gen-mapping": 0.3.8
"@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/highlight@1.2.0":
+ "@keyv/serialize@1.0.3":
dependencies:
- "@lezer/common": 1.2.0
+ buffer: 6.0.3
- "@lezer/lr@1.3.14":
+ "@lezer/common@1.2.3": {}
+
+ "@lezer/highlight@1.2.1":
dependencies:
- "@lezer/common": 1.2.0
+ "@lezer/common": 1.2.3
- "@lezer/xml@1.0.4":
+ "@lezer/lr@1.4.2":
dependencies:
- "@lezer/common": 1.2.0
- "@lezer/highlight": 1.2.0
- "@lezer/lr": 1.3.14
+ "@lezer/common": 1.2.3
- "@lit-labs/ssr-dom-shim@1.2.0": {}
-
- "@lit/reactive-element@2.0.4":
+ "@lezer/xml@1.0.6":
dependencies:
- "@lit-labs/ssr-dom-shim": 1.2.0
+ "@lezer/common": 1.2.3
+ "@lezer/highlight": 1.2.1
+ "@lezer/lr": 1.4.2
+
+ "@lit-labs/ssr-dom-shim@1.3.0": {}
+
+ "@lit/reactive-element@2.1.0":
+ dependencies:
+ "@lit-labs/ssr-dom-shim": 1.3.0
"@marijn/find-cluster-break@1.0.2": {}
+ "@modelcontextprotocol/sdk@1.11.2":
+ dependencies:
+ content-type: 1.0.5
+ cors: 2.8.5
+ cross-spawn: 7.0.6
+ eventsource: 3.0.7
+ express: 5.1.0
+ express-rate-limit: 7.5.0(express@5.1.0)
+ pkce-challenge: 5.0.0
+ raw-body: 3.0.0
+ zod: 3.24.4
+ zod-to-json-schema: 3.24.5(zod@3.24.4)
+ transitivePeerDependencies:
+ - supports-color
+
"@nodelib/fs.scandir@2.1.5":
dependencies:
"@nodelib/fs.stat": 2.0.5
@@ -11110,70 +10867,71 @@ snapshots:
"@nodelib/fs.walk@1.2.8":
dependencies:
"@nodelib/fs.scandir": 2.1.5
- fastq: 1.16.0
+ fastq: 1.19.1
- "@octokit/auth-token@5.1.1": {}
+ "@octokit/auth-token@5.1.2": {}
- "@octokit/core@6.1.2":
+ "@octokit/core@6.1.5":
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/auth-token": 5.1.2
+ "@octokit/graphql": 8.2.2
+ "@octokit/request": 9.2.3
+ "@octokit/request-error": 6.1.8
+ "@octokit/types": 14.0.0
before-after-hook: 3.0.2
- universal-user-agent: 7.0.2
+ universal-user-agent: 7.0.3
- "@octokit/endpoint@10.1.1":
+ "@octokit/endpoint@10.1.4":
dependencies:
- "@octokit/types": 13.4.1
- universal-user-agent: 7.0.2
+ "@octokit/types": 14.0.0
+ universal-user-agent: 7.0.3
- "@octokit/graphql@8.1.1":
+ "@octokit/graphql@8.2.2":
dependencies:
- "@octokit/request": 9.1.1
- "@octokit/types": 13.4.1
- universal-user-agent: 7.0.2
+ "@octokit/request": 9.2.3
+ "@octokit/types": 14.0.0
+ universal-user-agent: 7.0.3
- "@octokit/openapi-types@22.1.0": {}
+ "@octokit/openapi-types@25.0.0": {}
- "@octokit/plugin-paginate-rest@11.2.0(@octokit/core@6.1.2)":
+ "@octokit/plugin-paginate-rest@12.0.0(@octokit/core@6.1.5)":
dependencies:
- "@octokit/core": 6.1.2
- "@octokit/types": 13.4.1
+ "@octokit/core": 6.1.5
+ "@octokit/types": 14.0.0
- "@octokit/plugin-retry@7.1.1(@octokit/core@6.1.2)":
+ "@octokit/plugin-retry@7.2.1(@octokit/core@6.1.5)":
dependencies:
- "@octokit/core": 6.1.2
- "@octokit/request-error": 6.1.1
- "@octokit/types": 13.4.1
+ "@octokit/core": 6.1.5
+ "@octokit/request-error": 6.1.8
+ "@octokit/types": 14.0.0
bottleneck: 2.19.5
- "@octokit/plugin-throttling@9.2.1(@octokit/core@6.1.2)":
+ "@octokit/plugin-throttling@10.0.0(@octokit/core@6.1.5)":
dependencies:
- "@octokit/core": 6.1.2
- "@octokit/types": 13.4.1
+ "@octokit/core": 6.1.5
+ "@octokit/types": 14.0.0
bottleneck: 2.19.5
- "@octokit/request-error@6.1.1":
+ "@octokit/request-error@6.1.8":
dependencies:
- "@octokit/types": 13.4.1
+ "@octokit/types": 14.0.0
- "@octokit/request@9.1.1":
+ "@octokit/request@9.2.3":
dependencies:
- "@octokit/endpoint": 10.1.1
- "@octokit/request-error": 6.1.1
- "@octokit/types": 13.4.1
- universal-user-agent: 7.0.2
+ "@octokit/endpoint": 10.1.4
+ "@octokit/request-error": 6.1.8
+ "@octokit/types": 14.0.0
+ fast-content-type-parse: 2.0.1
+ universal-user-agent: 7.0.3
- "@octokit/types@13.4.1":
+ "@octokit/types@14.0.0":
dependencies:
- "@octokit/openapi-types": 22.1.0
+ "@octokit/openapi-types": 25.0.0
"@pkgjs/parseargs@0.11.0":
optional: true
- "@pkgr/core@0.1.1": {}
+ "@pkgr/core@0.2.4": {}
"@pnpm/config.env-replace@1.1.0": {}
@@ -11181,137 +10939,141 @@ 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.27.1)(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.27.1
+ "@babel/helper-module-imports": 7.27.1
+ "@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.1(rollup@2.79.2)":
dependencies:
- "@rollup/pluginutils": 5.1.0(rollup@2.79.1)
+ "@rollup/pluginutils": 5.1.4(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
+ resolve: 1.22.10
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.39.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.4(rollup@2.79.2)":
dependencies:
- "@types/estree": 1.0.5
+ "@types/estree": 1.0.7
estree-walker: 2.0.2
- picomatch: 2.3.1
+ picomatch: 4.0.2
optionalDependencies:
- rollup: 2.79.1
+ rollup: 2.79.2
- "@rollup/rollup-android-arm-eabi@4.30.1":
+ "@rollup/rollup-android-arm-eabi@4.40.2":
optional: true
- "@rollup/rollup-android-arm64@4.30.1":
+ "@rollup/rollup-android-arm64@4.40.2":
optional: true
- "@rollup/rollup-darwin-arm64@4.30.1":
+ "@rollup/rollup-darwin-arm64@4.40.2":
optional: true
- "@rollup/rollup-darwin-x64@4.30.1":
+ "@rollup/rollup-darwin-x64@4.40.2":
optional: true
- "@rollup/rollup-freebsd-arm64@4.30.1":
+ "@rollup/rollup-freebsd-arm64@4.40.2":
optional: true
- "@rollup/rollup-freebsd-x64@4.30.1":
+ "@rollup/rollup-freebsd-x64@4.40.2":
optional: true
- "@rollup/rollup-linux-arm-gnueabihf@4.30.1":
+ "@rollup/rollup-linux-arm-gnueabihf@4.40.2":
optional: true
- "@rollup/rollup-linux-arm-musleabihf@4.30.1":
+ "@rollup/rollup-linux-arm-musleabihf@4.40.2":
optional: true
- "@rollup/rollup-linux-arm64-gnu@4.30.1":
+ "@rollup/rollup-linux-arm64-gnu@4.40.2":
optional: true
- "@rollup/rollup-linux-arm64-musl@4.30.1":
+ "@rollup/rollup-linux-arm64-musl@4.40.2":
optional: true
- "@rollup/rollup-linux-loongarch64-gnu@4.30.1":
+ "@rollup/rollup-linux-loongarch64-gnu@4.40.2":
optional: true
- "@rollup/rollup-linux-powerpc64le-gnu@4.30.1":
+ "@rollup/rollup-linux-powerpc64le-gnu@4.40.2":
optional: true
- "@rollup/rollup-linux-riscv64-gnu@4.30.1":
+ "@rollup/rollup-linux-riscv64-gnu@4.40.2":
optional: true
- "@rollup/rollup-linux-s390x-gnu@4.30.1":
+ "@rollup/rollup-linux-riscv64-musl@4.40.2":
optional: true
- "@rollup/rollup-linux-x64-gnu@4.30.1":
+ "@rollup/rollup-linux-s390x-gnu@4.40.2":
optional: true
- "@rollup/rollup-linux-x64-musl@4.30.1":
+ "@rollup/rollup-linux-x64-gnu@4.40.2":
optional: true
- "@rollup/rollup-win32-arm64-msvc@4.30.1":
+ "@rollup/rollup-linux-x64-musl@4.40.2":
optional: true
- "@rollup/rollup-win32-ia32-msvc@4.30.1":
+ "@rollup/rollup-win32-arm64-msvc@4.40.2":
optional: true
- "@rollup/rollup-win32-x64-msvc@4.30.1":
+ "@rollup/rollup-win32-ia32-msvc@4.40.2":
+ optional: true
+
+ "@rollup/rollup-win32-x64-msvc@4.40.2":
optional: true
"@sec-ant/readable-stream@0.4.1": {}
- "@semantic-release/changelog@6.0.3(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/changelog@6.0.3(semantic-release@24.2.3(typescript@5.7.3))":
dependencies:
"@semantic-release/error": 3.0.0
aggregate-error: 3.1.0
- fs-extra: 11.2.0
+ fs-extra: 11.3.0
lodash: 4.17.21
- semantic-release: 24.2.1(typescript@5.7.2)
+ semantic-release: 24.2.3(typescript@5.7.3)
- "@semantic-release/commit-analyzer@13.0.0(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/commit-analyzer@13.0.1(semantic-release@24.2.3(typescript@5.7.3))":
dependencies:
conventional-changelog-angular: 8.0.0
- conventional-changelog-writer: 8.0.0
+ conventional-changelog-writer: 8.0.1
conventional-commits-filter: 5.0.0
- conventional-commits-parser: 6.0.0
- debug: 4.3.6
- import-from-esm: 1.3.3
+ conventional-commits-parser: 6.1.0
+ debug: 4.4.0
+ import-from-esm: 2.0.0
lodash-es: 4.17.21
micromatch: 4.0.8
- semantic-release: 24.2.1(typescript@5.7.2)
+ semantic-release: 24.2.3(typescript@5.7.3)
transitivePeerDependencies:
- supports-color
@@ -11319,111 +11081,111 @@ snapshots:
"@semantic-release/error@4.0.0": {}
- "@semantic-release/exec@6.0.3(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/exec@7.1.0(semantic-release@24.2.3(typescript@5.7.3))":
dependencies:
- "@semantic-release/error": 3.0.0
+ "@semantic-release/error": 4.0.0
aggregate-error: 3.1.0
- debug: 4.3.4
- execa: 5.1.1
- lodash: 4.17.21
- parse-json: 5.2.0
- semantic-release: 24.2.1(typescript@5.7.2)
+ debug: 4.4.0
+ execa: 9.5.3
+ lodash-es: 4.17.21
+ parse-json: 8.3.0
+ semantic-release: 24.2.3(typescript@5.7.3)
transitivePeerDependencies:
- supports-color
- "@semantic-release/git@10.0.1(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/git@10.0.1(semantic-release@24.2.3(typescript@5.7.3))":
dependencies:
"@semantic-release/error": 3.0.0
aggregate-error: 3.1.0
- debug: 4.3.4
+ debug: 4.4.0
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.2.1(typescript@5.7.2)
+ semantic-release: 24.2.3(typescript@5.7.3)
transitivePeerDependencies:
- supports-color
- "@semantic-release/github@11.0.1(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/github@11.0.2(semantic-release@24.2.3(typescript@5.7.3))":
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/core": 6.1.5
+ "@octokit/plugin-paginate-rest": 12.0.0(@octokit/core@6.1.5)
+ "@octokit/plugin-retry": 7.2.1(@octokit/core@6.1.5)
+ "@octokit/plugin-throttling": 10.0.0(@octokit/core@6.1.5)
"@semantic-release/error": 4.0.0
aggregate-error: 5.0.0
- debug: 4.3.6
+ debug: 4.4.0
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.1.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
+ issue-parser: 7.0.1
lodash-es: 4.17.21
- mime: 4.0.1
+ mime: 4.0.7
p-filter: 4.1.0
- semantic-release: 24.2.1(typescript@5.7.2)
+ semantic-release: 24.2.3(typescript@5.7.3)
url-join: 5.0.0
transitivePeerDependencies:
- supports-color
- "@semantic-release/gitlab@13.2.3(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/gitlab@13.2.5(semantic-release@24.2.3(typescript@5.7.3))":
dependencies:
"@semantic-release/error": 4.0.0
aggregate-error: 5.0.0
- debug: 4.3.6
+ debug: 4.4.0
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
+ fs-extra: 11.3.0
+ globby: 14.1.0
+ got: 14.4.7
hpagent: 1.2.0
lodash-es: 4.17.21
- parse-url: 9.0.1
- semantic-release: 24.2.1(typescript@5.7.2)
+ parse-url: 9.2.0
+ semantic-release: 24.2.3(typescript@5.7.3)
url-join: 4.0.1
transitivePeerDependencies:
- supports-color
- "@semantic-release/npm@12.0.0(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/npm@12.0.1(semantic-release@24.2.3(typescript@5.7.3))":
dependencies:
"@semantic-release/error": 4.0.0
aggregate-error: 5.0.0
- execa: 8.0.1
- fs-extra: 11.2.0
+ execa: 9.5.3
+ fs-extra: 11.3.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.9.2
rc: 1.2.8
read-pkg: 9.0.1
- registry-auth-token: 5.0.2
- semantic-release: 24.2.1(typescript@5.7.2)
- semver: 7.6.0
+ registry-auth-token: 5.1.0
+ semantic-release: 24.2.3(typescript@5.7.3)
+ semver: 7.7.2
tempy: 3.1.0
- "@semantic-release/release-notes-generator@14.0.1(semantic-release@24.2.1(typescript@5.7.2))":
+ "@semantic-release/release-notes-generator@14.0.3(semantic-release@24.2.3(typescript@5.7.3))":
dependencies:
conventional-changelog-angular: 8.0.0
- conventional-changelog-writer: 8.0.0
+ conventional-changelog-writer: 8.0.1
conventional-commits-filter: 5.0.0
- conventional-commits-parser: 6.0.0
- debug: 4.3.6
+ conventional-commits-parser: 6.1.0
+ debug: 4.4.0
get-stream: 7.0.1
- import-from-esm: 1.3.3
+ import-from-esm: 2.0.0
into-stream: 7.0.0
lodash-es: 4.17.21
read-package-up: 11.0.0
- semantic-release: 24.2.1(typescript@5.7.2)
+ semantic-release: 24.2.3(typescript@5.7.3)
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": {}
@@ -11431,10 +11193,10 @@ 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.12
"@szmarczak/http-timer@5.0.1":
dependencies:
@@ -11445,10 +11207,10 @@ snapshots:
mini-svg-data-uri: 1.4.4
tailwindcss: 3.4.17
- "@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.4.49)":
+ "@tailwindcss/nesting@0.0.0-insiders.565cd3e(postcss@8.5.3)":
dependencies:
- postcss: 8.4.49
- postcss-nested: 5.0.6(postcss@8.4.49)
+ postcss: 8.5.3
+ postcss-nested: 5.0.6(postcss@8.5.3)
"@tailwindcss/typography@0.5.16(tailwindcss@3.4.17)":
dependencies:
@@ -11460,117 +11222,115 @@ snapshots:
"@trysound/sax@0.2.0": {}
- "@types/conventional-commits-parser@5.0.0":
+ "@types/conventional-commits-parser@5.0.1":
dependencies:
- "@types/node": 20.10.5
+ "@types/node": 22.15.17
"@types/estree@0.0.39": {}
- "@types/estree@1.0.5": {}
-
- "@types/estree@1.0.6": {}
+ "@types/estree@1.0.7": {}
"@types/fscreen@1.0.4": {}
- "@types/geojson@7946.0.13": {}
+ "@types/geojson@7946.0.16": {}
"@types/http-cache-semantics@4.0.4": {}
"@types/json-schema@7.0.15": {}
- "@types/leaflet@1.9.16":
+ "@types/leaflet@1.9.17":
dependencies:
- "@types/geojson": 7946.0.13
+ "@types/geojson": 7946.0.16
- "@types/node@20.10.5":
+ "@types/node@22.15.17":
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.21.0
"@types/normalize-package-data@2.4.4": {}
- "@types/parse-path@7.0.3": {}
+ "@types/parse-path@7.1.0":
+ dependencies:
+ parse-path: 7.1.0
"@types/resolve@1.20.2": {}
- "@types/semver@7.5.8": {}
-
"@types/trusted-types@2.0.7": {}
- "@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)":
+ "@typescript-eslint/eslint-plugin@8.32.1(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
dependencies:
- "@eslint-community/regexpp": 4.10.0
- "@typescript-eslint/parser": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- "@typescript-eslint/scope-manager": 8.19.1
- "@typescript-eslint/type-utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- "@typescript-eslint/utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- "@typescript-eslint/visitor-keys": 8.19.1
- eslint: 9.17.0(jiti@2.4.2)
+ "@eslint-community/regexpp": 4.12.1
+ "@typescript-eslint/parser": 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ "@typescript-eslint/scope-manager": 8.32.1
+ "@typescript-eslint/type-utils": 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ "@typescript-eslint/utils": 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ "@typescript-eslint/visitor-keys": 8.32.1
+ eslint: 9.26.0(jiti@2.4.2)
graphemer: 1.4.0
- ignore: 5.3.2
+ ignore: 7.0.4
natural-compare: 1.4.0
- ts-api-utils: 2.0.0(typescript@5.7.2)
- typescript: 5.7.2
+ ts-api-utils: 2.1.0(typescript@5.7.3)
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)":
+ "@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
dependencies:
- "@typescript-eslint/scope-manager": 8.19.1
- "@typescript-eslint/types": 8.19.1
- "@typescript-eslint/typescript-estree": 8.19.1(typescript@5.7.2)
- "@typescript-eslint/visitor-keys": 8.19.1
- debug: 4.3.6
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.7.2
+ "@typescript-eslint/scope-manager": 8.32.1
+ "@typescript-eslint/types": 8.32.1
+ "@typescript-eslint/typescript-estree": 8.32.1(typescript@5.7.3)
+ "@typescript-eslint/visitor-keys": 8.32.1
+ debug: 4.4.0
+ eslint: 9.26.0(jiti@2.4.2)
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/scope-manager@8.19.1":
+ "@typescript-eslint/scope-manager@8.32.1":
dependencies:
- "@typescript-eslint/types": 8.19.1
- "@typescript-eslint/visitor-keys": 8.19.1
+ "@typescript-eslint/types": 8.32.1
+ "@typescript-eslint/visitor-keys": 8.32.1
- "@typescript-eslint/type-utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)":
+ "@typescript-eslint/type-utils@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
dependencies:
- "@typescript-eslint/typescript-estree": 8.19.1(typescript@5.7.2)
- "@typescript-eslint/utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- debug: 4.3.6
- eslint: 9.17.0(jiti@2.4.2)
- ts-api-utils: 2.0.0(typescript@5.7.2)
- typescript: 5.7.2
+ "@typescript-eslint/typescript-estree": 8.32.1(typescript@5.7.3)
+ "@typescript-eslint/utils": 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ debug: 4.4.0
+ eslint: 9.26.0(jiti@2.4.2)
+ ts-api-utils: 2.1.0(typescript@5.7.3)
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/types@8.19.1": {}
+ "@typescript-eslint/types@8.32.1": {}
- "@typescript-eslint/typescript-estree@8.19.1(typescript@5.7.2)":
+ "@typescript-eslint/typescript-estree@8.32.1(typescript@5.7.3)":
dependencies:
- "@typescript-eslint/types": 8.19.1
- "@typescript-eslint/visitor-keys": 8.19.1
- debug: 4.3.6
- fast-glob: 3.3.2
+ "@typescript-eslint/types": 8.32.1
+ "@typescript-eslint/visitor-keys": 8.32.1
+ debug: 4.4.0
+ fast-glob: 3.3.3
is-glob: 4.0.3
- minimatch: 9.0.4
- semver: 7.6.0
- ts-api-utils: 2.0.0(typescript@5.7.2)
- typescript: 5.7.2
+ minimatch: 9.0.5
+ semver: 7.7.2
+ ts-api-utils: 2.1.0(typescript@5.7.3)
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/utils@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)":
+ "@typescript-eslint/utils@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)":
dependencies:
- "@eslint-community/eslint-utils": 4.4.0(eslint@9.17.0(jiti@2.4.2))
- "@typescript-eslint/scope-manager": 8.19.1
- "@typescript-eslint/types": 8.19.1
- "@typescript-eslint/typescript-estree": 8.19.1(typescript@5.7.2)
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.7.2
+ "@eslint-community/eslint-utils": 4.7.0(eslint@9.26.0(jiti@2.4.2))
+ "@typescript-eslint/scope-manager": 8.32.1
+ "@typescript-eslint/types": 8.32.1
+ "@typescript-eslint/typescript-estree": 8.32.1(typescript@5.7.3)
+ eslint: 9.26.0(jiti@2.4.2)
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- "@typescript-eslint/visitor-keys@8.19.1":
+ "@typescript-eslint/visitor-keys@8.32.1":
dependencies:
- "@typescript-eslint/types": 8.19.1
+ "@typescript-eslint/types": 8.32.1
eslint-visitor-keys: 4.2.0
"@vime/core@5.4.1":
@@ -11586,29 +11346,18 @@ snapshots:
jsonparse: 1.3.1
through: 2.3.8
- acorn-jsx@5.3.2(acorn@8.14.0):
+ accepts@2.0.0:
dependencies:
- acorn: 8.14.0
+ mime-types: 3.0.1
+ negotiator: 1.0.0
- acorn-node@1.8.2:
+ acorn-jsx@5.3.2(acorn@8.14.1):
dependencies:
- acorn: 7.4.1
- acorn-walk: 7.2.0
- xtend: 4.0.2
+ acorn: 8.14.1
- acorn-walk@7.2.0: {}
+ acorn@8.14.1: {}
- acorn@7.4.1: {}
-
- acorn@8.12.0: {}
-
- acorn@8.14.0: {}
-
- agent-base@7.1.0:
- dependencies:
- debug: 4.3.6
- transitivePeerDependencies:
- - supports-color
+ agent-base@7.1.3: {}
aggregate-error@3.1.0:
dependencies:
@@ -11627,17 +11376,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.6
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.27.1
+ async: 3.2.6
chalk: 4.1.2
didyoumean: 1.2.2
inquirer: 7.3.3
@@ -11651,24 +11400,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:
@@ -11693,74 +11435,68 @@ snapshots:
argv-formatter@1.0.0: {}
- array-buffer-byte-length@1.0.0:
+ array-buffer-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.5
- is-array-buffer: 3.0.2
-
- array-from@2.1.1: {}
+ call-bound: 1.0.4
+ is-array-buffer: 3.0.5
array-ify@1.0.0: {}
array-union@2.1.0: {}
- arraybuffer.prototype.slice@1.0.2:
+ arraybuffer.prototype.slice@1.0.4:
dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.5
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
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.9
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ is-array-buffer: 3.0.5
astral-regex@2.0.0: {}
- async@3.2.5: {}
+ async-function@1.0.0: {}
+
+ async@3.2.6: {}
at-least-node@1.0.0: {}
- autoprefixer@10.4.19(postcss@8.4.49):
+ autoprefixer@10.4.21(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
- caniuse-lite: 1.0.30001663
+ browserslist: 4.24.5
+ caniuse-lite: 1.0.30001718
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.1.0
- postcss: 8.4.49
+ picocolors: 1.1.1
+ postcss: 8.5.3
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.1.0
+
+ babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.27.1):
+ dependencies:
+ "@babel/compat-data": 7.27.2
+ "@babel/core": 7.27.1
+ "@babel/helper-define-polyfill-provider": 0.6.4(@babel/core@7.27.1)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.8.7(@babel/core@7.24.4):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.1):
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.27.1
+ "@babel/helper-define-polyfill-provider": 0.6.4(@babel/core@7.27.1)
+ core-js-compat: 3.42.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.5.4(@babel/core@7.24.4):
+ babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.27.1):
dependencies:
- "@babel/core": 7.24.4
- "@babel/helper-define-polyfill-provider": 0.4.4(@babel/core@7.24.4)
+ "@babel/core": 7.27.1
+ "@babel/helper-define-polyfill-provider": 0.6.4(@babel/core@7.27.1)
transitivePeerDependencies:
- supports-color
@@ -11774,7 +11510,7 @@ snapshots:
before-after-hook@3.0.2: {}
- binary-extensions@2.2.0: {}
+ binary-extensions@2.3.0: {}
bl@4.1.0:
dependencies:
@@ -11782,6 +11518,20 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
+ body-parser@2.2.0:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 1.0.5
+ debug: 4.4.0
+ http-errors: 2.0.0
+ iconv-lite: 0.6.3
+ on-finished: 2.4.1
+ qs: 6.14.0
+ raw-body: 3.0.0
+ type-is: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
boolbase@1.0.0: {}
bottleneck@2.19.5: {}
@@ -11795,43 +11545,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.5:
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.3:
- dependencies:
- caniuse-lite: 1.0.30001663
- electron-to-chromium: 1.5.28
- node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.3)
-
- buffer-equal@0.0.1: {}
+ caniuse-lite: 1.0.30001718
+ electron-to-chromium: 1.5.152
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.24.5)
buffer-from@1.1.2: {}
@@ -11840,27 +11567,48 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-modules@3.3.0: {}
+ buffer@6.0.3:
+ dependencies:
+ base64-js: 1.5.1
+ ieee754: 1.2.1
+
+ bytes@3.1.2: {}
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
- http-cache-semantics: 4.1.1
+ get-stream: 9.0.1
+ http-cache-semantics: 4.2.0
keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.0
+ normalize-url: 8.0.1
responselike: 3.0.0
+ cacheable@1.9.0:
+ dependencies:
+ hookified: 1.9.0
+ keyv: 5.3.3
+
cachedir@2.3.0: {}
- call-bind@1.0.5:
+ call-bind-apply-helpers@1.0.2:
dependencies:
+ es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.2
- set-function-length: 1.1.1
+
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ get-intrinsic: 1.3.0
+ set-function-length: 1.2.2
+
+ call-bound@1.0.4:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
callsites@3.1.0: {}
@@ -11870,14 +11618,12 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.23.3
- caniuse-lite: 1.0.30001639
+ browserslist: 4.24.5
+ caniuse-lite: 1.0.30001718
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001639: {}
-
- caniuse-lite@1.0.30001663: {}
+ caniuse-lite@1.0.30001718: {}
chalk@2.4.2:
dependencies:
@@ -11890,8 +11636,6 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.3.0: {}
-
chalk@5.4.1: {}
char-regex@1.0.2: {}
@@ -11916,7 +11660,7 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- ci-info@4.1.0: {}
+ ci-info@4.2.0: {}
clean-stack@2.2.0: {}
@@ -11943,7 +11687,7 @@ snapshots:
cli-spinners@2.9.2: {}
- cli-table3@0.6.3:
+ cli-table3@0.6.5:
dependencies:
string-width: 4.2.3
optionalDependencies:
@@ -11952,7 +11696,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: {}
@@ -11976,17 +11720,15 @@ snapshots:
clone@1.0.4: {}
- codemirror@6.0.1(@lezer/common@1.2.0):
+ codemirror@6.0.1:
dependencies:
- "@codemirror/autocomplete": 6.11.1(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.0)
- "@codemirror/commands": 6.7.1
- "@codemirror/language": 6.10.8
- "@codemirror/lint": 6.4.2
- "@codemirror/search": 6.5.5
- "@codemirror/state": 6.5.0
- "@codemirror/view": 6.36.1
- transitivePeerDependencies:
- - "@lezer/common"
+ "@codemirror/autocomplete": 6.18.6
+ "@codemirror/commands": 6.8.1
+ "@codemirror/language": 6.11.0
+ "@codemirror/lint": 6.8.5
+ "@codemirror/search": 6.5.10
+ "@codemirror/state": 6.5.2
+ "@codemirror/view": 6.36.8
color-convert@1.9.3:
dependencies:
@@ -12004,7 +11746,7 @@ snapshots:
colorette@2.0.20: {}
- commander@12.1.0: {}
+ commander@13.1.0: {}
commander@2.20.3: {}
@@ -12012,10 +11754,10 @@ snapshots:
commander@7.2.0: {}
- commitizen@4.3.1(@types/node@20.10.5)(typescript@5.7.2):
+ commitizen@4.3.1(@types/node@22.15.17)(typescript@5.7.3):
dependencies:
cachedir: 2.3.0
- cz-conventional-changelog: 3.3.0(@types/node@20.10.5)(typescript@5.7.2)
+ cz-conventional-changelog: 3.3.0(@types/node@22.15.17)(typescript@5.7.3)
dedent: 0.7.0
detect-indent: 6.1.0
find-node-modules: 2.1.3
@@ -12041,18 +11783,17 @@ 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
proto-list: 1.2.4
+ content-disposition@1.0.0:
+ dependencies:
+ safe-buffer: 5.2.1
+
+ content-type@1.0.5: {}
+
conventional-changelog-angular@7.0.0:
dependencies:
compare-func: 2.0.0
@@ -12065,13 +11806,12 @@ snapshots:
dependencies:
compare-func: 2.0.0
- conventional-changelog-writer@8.0.0:
+ conventional-changelog-writer@8.0.1:
dependencies:
- "@types/semver": 7.5.8
conventional-commits-filter: 5.0.0
handlebars: 4.7.8
meow: 13.2.0
- semver: 7.6.0
+ semver: 7.7.2
conventional-commit-types@3.0.0: {}
@@ -12084,69 +11824,52 @@ snapshots:
meow: 12.1.1
split2: 4.2.0
- conventional-commits-parser@6.0.0:
+ conventional-commits-parser@6.1.0:
dependencies:
meow: 13.2.0
convert-hrtime@5.0.0: {}
- convert-source-map@1.9.0: {}
-
convert-source-map@2.0.0: {}
- core-js-compat@3.35.0:
- dependencies:
- browserslist: 4.23.3
+ cookie-signature@1.2.2: {}
- core-js@3.35.0: {}
+ cookie@0.7.2: {}
+
+ core-js-compat@3.42.0:
+ dependencies:
+ browserslist: 4.24.5
+
+ core-js@3.42.0: {}
core-util-is@1.0.3: {}
- cosmiconfig-typescript-loader@5.0.0(@types/node@20.10.5)(cosmiconfig@8.3.6(typescript@5.7.2))(typescript@5.7.2):
+ cors@2.8.5:
dependencies:
- "@types/node": 20.10.5
- cosmiconfig: 8.3.6(typescript@5.7.2)
- jiti: 1.21.0
- typescript: 5.7.2
- optional: true
+ object-assign: 4.1.1
+ vary: 1.1.2
- cosmiconfig-typescript-loader@6.1.0(@types/node@20.10.5)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2):
+ cosmiconfig-typescript-loader@6.1.0(@types/node@22.15.17)(cosmiconfig@9.0.0(typescript@5.7.3))(typescript@5.7.3):
dependencies:
- "@types/node": 20.10.5
- cosmiconfig: 9.0.0(typescript@5.7.2)
+ "@types/node": 22.15.17
+ cosmiconfig: 9.0.0(typescript@5.7.3)
jiti: 2.4.2
- typescript: 5.7.2
+ typescript: 5.7.3
- cosmiconfig@8.3.6(typescript@5.7.2):
- dependencies:
- import-fresh: 3.3.0
- js-yaml: 4.1.0
- parse-json: 5.2.0
- path-type: 4.0.0
- optionalDependencies:
- typescript: 5.7.2
- optional: true
-
- cosmiconfig@9.0.0(typescript@5.7.2):
+ cosmiconfig@9.0.0(typescript@5.7.3):
dependencies:
env-paths: 2.2.1
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.7.2
+ typescript: 5.7.3
crelt@1.0.6: {}
cross-env@7.0.3:
dependencies:
- cross-spawn: 7.0.3
-
- cross-spawn@7.0.3:
- dependencies:
- path-key: 3.1.1
- shebang-command: 2.0.0
- which: 2.0.2
+ cross-spawn: 7.0.6
cross-spawn@7.0.6:
dependencies:
@@ -12162,45 +11885,45 @@ snapshots:
dependencies:
type-fest: 1.4.0
- css-blank-pseudo@7.0.1(postcss@8.4.49):
+ css-blank-pseudo@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- css-declaration-sorter@7.2.0(postcss@8.4.49):
+ css-declaration-sorter@7.2.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
css-functions-list@3.2.3: {}
- css-has-pseudo@7.0.2(postcss@8.4.49):
+ css-has-pseudo@7.0.2(postcss@8.5.3):
dependencies:
- "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.0.0)
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.1.0)
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- css-prefers-color-scheme@10.0.0(postcss@8.4.49):
+ css-prefers-color-scheme@10.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
css-select@5.1.0:
dependencies:
boolbase: 1.0.0
css-what: 6.1.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
nth-check: 2.1.1
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.1.0:
dependencies:
@@ -12209,68 +11932,68 @@ snapshots:
css-what@6.1.0: {}
- cssdb@8.2.3: {}
+ cssdb@8.2.5: {}
cssesc@3.0.0: {}
- cssnano-preset-default@7.0.6(postcss@8.4.49):
+ cssnano-preset-default@7.0.7(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
- css-declaration-sorter: 7.2.0(postcss@8.4.49)
- cssnano-utils: 5.0.0(postcss@8.4.49)
- postcss: 8.4.49
- postcss-calc: 10.0.2(postcss@8.4.49)
- postcss-colormin: 7.0.2(postcss@8.4.49)
- postcss-convert-values: 7.0.4(postcss@8.4.49)
- postcss-discard-comments: 7.0.3(postcss@8.4.49)
- postcss-discard-duplicates: 7.0.1(postcss@8.4.49)
- postcss-discard-empty: 7.0.0(postcss@8.4.49)
- postcss-discard-overridden: 7.0.0(postcss@8.4.49)
- postcss-merge-longhand: 7.0.4(postcss@8.4.49)
- postcss-merge-rules: 7.0.4(postcss@8.4.49)
- postcss-minify-font-values: 7.0.0(postcss@8.4.49)
- postcss-minify-gradients: 7.0.0(postcss@8.4.49)
- postcss-minify-params: 7.0.2(postcss@8.4.49)
- postcss-minify-selectors: 7.0.4(postcss@8.4.49)
- postcss-normalize-charset: 7.0.0(postcss@8.4.49)
- postcss-normalize-display-values: 7.0.0(postcss@8.4.49)
- postcss-normalize-positions: 7.0.0(postcss@8.4.49)
- postcss-normalize-repeat-style: 7.0.0(postcss@8.4.49)
- postcss-normalize-string: 7.0.0(postcss@8.4.49)
- postcss-normalize-timing-functions: 7.0.0(postcss@8.4.49)
- postcss-normalize-unicode: 7.0.2(postcss@8.4.49)
- postcss-normalize-url: 7.0.0(postcss@8.4.49)
- postcss-normalize-whitespace: 7.0.0(postcss@8.4.49)
- postcss-ordered-values: 7.0.1(postcss@8.4.49)
- postcss-reduce-initial: 7.0.2(postcss@8.4.49)
- postcss-reduce-transforms: 7.0.0(postcss@8.4.49)
- postcss-svgo: 7.0.1(postcss@8.4.49)
- postcss-unique-selectors: 7.0.3(postcss@8.4.49)
+ browserslist: 4.24.5
+ css-declaration-sorter: 7.2.0(postcss@8.5.3)
+ cssnano-utils: 5.0.1(postcss@8.5.3)
+ postcss: 8.5.3
+ postcss-calc: 10.1.1(postcss@8.5.3)
+ postcss-colormin: 7.0.3(postcss@8.5.3)
+ postcss-convert-values: 7.0.5(postcss@8.5.3)
+ postcss-discard-comments: 7.0.4(postcss@8.5.3)
+ postcss-discard-duplicates: 7.0.2(postcss@8.5.3)
+ postcss-discard-empty: 7.0.1(postcss@8.5.3)
+ postcss-discard-overridden: 7.0.1(postcss@8.5.3)
+ postcss-merge-longhand: 7.0.5(postcss@8.5.3)
+ postcss-merge-rules: 7.0.5(postcss@8.5.3)
+ postcss-minify-font-values: 7.0.1(postcss@8.5.3)
+ postcss-minify-gradients: 7.0.1(postcss@8.5.3)
+ postcss-minify-params: 7.0.3(postcss@8.5.3)
+ postcss-minify-selectors: 7.0.5(postcss@8.5.3)
+ postcss-normalize-charset: 7.0.1(postcss@8.5.3)
+ postcss-normalize-display-values: 7.0.1(postcss@8.5.3)
+ postcss-normalize-positions: 7.0.1(postcss@8.5.3)
+ postcss-normalize-repeat-style: 7.0.1(postcss@8.5.3)
+ postcss-normalize-string: 7.0.1(postcss@8.5.3)
+ postcss-normalize-timing-functions: 7.0.1(postcss@8.5.3)
+ postcss-normalize-unicode: 7.0.3(postcss@8.5.3)
+ postcss-normalize-url: 7.0.1(postcss@8.5.3)
+ postcss-normalize-whitespace: 7.0.1(postcss@8.5.3)
+ postcss-ordered-values: 7.0.2(postcss@8.5.3)
+ postcss-reduce-initial: 7.0.3(postcss@8.5.3)
+ postcss-reduce-transforms: 7.0.1(postcss@8.5.3)
+ postcss-svgo: 7.0.2(postcss@8.5.3)
+ postcss-unique-selectors: 7.0.4(postcss@8.5.3)
- cssnano-utils@5.0.0(postcss@8.4.49):
+ cssnano-utils@5.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- cssnano@7.0.6(postcss@8.4.49):
+ cssnano@7.0.7(postcss@8.5.3):
dependencies:
- cssnano-preset-default: 7.0.6(postcss@8.4.49)
- lilconfig: 3.1.2
- postcss: 8.4.49
+ cssnano-preset-default: 7.0.7(postcss@8.5.3)
+ lilconfig: 3.1.3
+ postcss: 8.5.3
csso@5.0.5:
dependencies:
css-tree: 2.2.1
- cz-conventional-changelog@3.3.0(@types/node@20.10.5)(typescript@5.7.2):
+ cz-conventional-changelog@3.3.0(@types/node@22.15.17)(typescript@5.7.3):
dependencies:
chalk: 2.4.2
- commitizen: 4.3.1(@types/node@20.10.5)(typescript@5.7.2)
+ commitizen: 4.3.1(@types/node@22.15.17)(typescript@5.7.3)
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.7.2)
+ "@commitlint/load": 19.8.1(@types/node@22.15.17)(typescript@5.7.3)
transitivePeerDependencies:
- "@types/node"
- typescript
@@ -12295,9 +12018,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
@@ -12320,22 +12043,25 @@ 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.2:
dependencies:
- ms: 2.1.2
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
- debug@4.3.6:
+ data-view-byte-length@1.0.2:
dependencies:
- ms: 2.1.2
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
+
+ data-view-byte-offset@1.0.1:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
debug@4.4.0:
dependencies:
@@ -12351,12 +12077,12 @@ snapshots:
deep-equal@1.1.2:
dependencies:
- is-arguments: 1.1.1
- is-date-object: 1.0.5
- is-regex: 1.1.4
- object-is: 1.1.5
+ is-arguments: 1.2.0
+ is-date-object: 1.1.0
+ is-regex: 1.2.1
+ object-is: 1.1.6
object-keys: 1.1.1
- regexp.prototype.flags: 1.5.1
+ regexp.prototype.flags: 1.5.4
deep-extend@0.6.0: {}
@@ -12370,18 +12096,20 @@ 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
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
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
+ depd@2.0.0: {}
+
detect-file@1.0.0: {}
detect-indent@6.1.0: {}
@@ -12408,7 +12136,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- domutils@3.1.0:
+ domutils@3.2.2:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
@@ -12418,19 +12146,27 @@ snapshots:
dependencies:
is-obj: 2.0.0
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
duplexer2@0.1.4:
dependencies:
readable-stream: 2.3.8
eastasianwidth@0.2.0: {}
- ejs@3.1.9:
+ ee-first@1.1.1: {}
+
+ ejs@3.1.10:
dependencies:
- jake: 10.8.7
+ jake: 10.9.2
- electron-to-chromium@1.5.28: {}
+ electron-to-chromium@1.5.152: {}
- emoji-regex@10.3.0: {}
+ emoji-regex@10.4.0: {}
emoji-regex@8.0.0: {}
@@ -12438,9 +12174,11 @@ snapshots:
emojilib@2.4.0: {}
+ encodeurl@2.0.0: {}
+
entities@4.5.0: {}
- env-ci@11.0.0:
+ env-ci@11.1.0:
dependencies:
execa: 8.0.1
java-properties: 1.0.2
@@ -12453,124 +12191,112 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.22.3:
+ es-abstract@1.23.9:
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
- 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
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
- internal-slot: 1.0.6
- is-array-buffer: 3.0.2
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
+ es-to-primitive: 1.3.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
+ globalthis: 1.0.4
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.12
- is-weakref: 1.0.2
- object-inspect: 1.13.1
+ is-data-view: 1.0.2
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.1
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.4
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
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.13
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
+ typed-array-length: 1.0.7
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.19
- es-set-tostringtag@2.0.2:
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
+
+ es-object-atoms@1.1.1:
dependencies:
- get-intrinsic: 1.2.2
- has-tostringtag: 1.0.0
- hasown: 2.0.0
+ es-errors: 1.3.0
- es-to-primitive@1.2.1:
+ es-set-tostringtag@2.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+
+ es-to-primitive@1.3.0:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
+ is-date-object: 1.1.0
+ is-symbol: 1.1.1
- 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.24.2:
+ esbuild@0.25.4:
optionalDependencies:
- "@esbuild/aix-ppc64": 0.24.2
- "@esbuild/android-arm": 0.24.2
- "@esbuild/android-arm64": 0.24.2
- "@esbuild/android-x64": 0.24.2
- "@esbuild/darwin-arm64": 0.24.2
- "@esbuild/darwin-x64": 0.24.2
- "@esbuild/freebsd-arm64": 0.24.2
- "@esbuild/freebsd-x64": 0.24.2
- "@esbuild/linux-arm": 0.24.2
- "@esbuild/linux-arm64": 0.24.2
- "@esbuild/linux-ia32": 0.24.2
- "@esbuild/linux-loong64": 0.24.2
- "@esbuild/linux-mips64el": 0.24.2
- "@esbuild/linux-ppc64": 0.24.2
- "@esbuild/linux-riscv64": 0.24.2
- "@esbuild/linux-s390x": 0.24.2
- "@esbuild/linux-x64": 0.24.2
- "@esbuild/netbsd-arm64": 0.24.2
- "@esbuild/netbsd-x64": 0.24.2
- "@esbuild/openbsd-arm64": 0.24.2
- "@esbuild/openbsd-x64": 0.24.2
- "@esbuild/sunos-x64": 0.24.2
- "@esbuild/win32-arm64": 0.24.2
- "@esbuild/win32-ia32": 0.24.2
- "@esbuild/win32-x64": 0.24.2
+ "@esbuild/aix-ppc64": 0.25.4
+ "@esbuild/android-arm": 0.25.4
+ "@esbuild/android-arm64": 0.25.4
+ "@esbuild/android-x64": 0.25.4
+ "@esbuild/darwin-arm64": 0.25.4
+ "@esbuild/darwin-x64": 0.25.4
+ "@esbuild/freebsd-arm64": 0.25.4
+ "@esbuild/freebsd-x64": 0.25.4
+ "@esbuild/linux-arm": 0.25.4
+ "@esbuild/linux-arm64": 0.25.4
+ "@esbuild/linux-ia32": 0.25.4
+ "@esbuild/linux-loong64": 0.25.4
+ "@esbuild/linux-mips64el": 0.25.4
+ "@esbuild/linux-ppc64": 0.25.4
+ "@esbuild/linux-riscv64": 0.25.4
+ "@esbuild/linux-s390x": 0.25.4
+ "@esbuild/linux-x64": 0.25.4
+ "@esbuild/netbsd-arm64": 0.25.4
+ "@esbuild/netbsd-x64": 0.25.4
+ "@esbuild/openbsd-arm64": 0.25.4
+ "@esbuild/openbsd-x64": 0.25.4
+ "@esbuild/sunos-x64": 0.25.4
+ "@esbuild/win32-arm64": 0.25.4
+ "@esbuild/win32-ia32": 0.25.4
+ "@esbuild/win32-x64": 0.25.4
- escalade@3.1.2: {}
+ escalade@3.2.0: {}
+
+ escape-html@1.0.3: {}
escape-string-regexp@1.0.5: {}
@@ -12578,37 +12304,20 @@ snapshots:
escape-string-regexp@5.0.0: {}
- escodegen@1.14.3:
+ eslint-config-prettier@10.1.5(eslint@9.26.0(jiti@2.4.2)):
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.26.0(jiti@2.4.2)
- escodegen@1.2.0:
+ eslint-plugin-prettier@5.4.0(eslint-config-prettier@10.1.5(eslint@9.26.0(jiti@2.4.2)))(eslint@9.26.0(jiti@2.4.2))(prettier@3.5.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@9.17.0(jiti@2.4.2)):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
-
- eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2):
- dependencies:
- eslint: 9.17.0(jiti@2.4.2)
- prettier: 3.4.2
+ eslint: 9.26.0(jiti@2.4.2)
+ prettier: 3.5.3
prettier-linter-helpers: 1.0.0
- synckit: 0.9.1
+ synckit: 0.11.4
optionalDependencies:
- eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-config-prettier: 10.1.5(eslint@9.26.0(jiti@2.4.2))
- eslint-scope@8.2.0:
+ eslint-scope@8.3.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
@@ -12617,29 +12326,31 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
- eslint@9.17.0(jiti@2.4.2):
+ eslint@9.26.0(jiti@2.4.2):
dependencies:
- "@eslint-community/eslint-utils": 4.4.0(eslint@9.17.0(jiti@2.4.2))
+ "@eslint-community/eslint-utils": 4.7.0(eslint@9.26.0(jiti@2.4.2))
"@eslint-community/regexpp": 4.12.1
- "@eslint/config-array": 0.19.1
- "@eslint/core": 0.9.1
- "@eslint/eslintrc": 3.2.0
- "@eslint/js": 9.17.0
- "@eslint/plugin-kit": 0.2.4
+ "@eslint/config-array": 0.20.0
+ "@eslint/config-helpers": 0.2.2
+ "@eslint/core": 0.13.0
+ "@eslint/eslintrc": 3.3.1
+ "@eslint/js": 9.26.0
+ "@eslint/plugin-kit": 0.2.8
"@humanfs/node": 0.16.6
"@humanwhocodes/module-importer": 1.0.1
- "@humanwhocodes/retry": 0.4.1
- "@types/estree": 1.0.6
+ "@humanwhocodes/retry": 0.4.3
+ "@modelcontextprotocol/sdk": 1.11.2
+ "@types/estree": 1.0.7
"@types/json-schema": 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.3.6
+ debug: 4.4.0
escape-string-regexp: 4.0.0
- eslint-scope: 8.2.0
+ eslint-scope: 8.3.0
eslint-visitor-keys: 4.2.0
espree: 10.3.0
- esquery: 1.5.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 8.0.0
@@ -12652,7 +12363,8 @@ snapshots:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
+ zod: 3.24.4
optionalDependencies:
jiti: 2.4.2
transitivePeerDependencies:
@@ -12660,15 +12372,11 @@ snapshots:
espree@10.3.0:
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn: 8.14.1
+ acorn-jsx: 5.3.2(acorn@8.14.1)
eslint-visitor-keys: 4.2.0
- esprima@1.0.4: {}
-
- esprima@4.0.1: {}
-
- esquery@1.5.0:
+ esquery@1.6.0:
dependencies:
estraverse: 5.3.0
@@ -12676,32 +12384,27 @@ 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
+ etag@1.8.1: {}
eventemitter3@5.0.1: {}
+ eventsource-parser@3.0.1: {}
+
+ eventsource@3.0.7:
+ dependencies:
+ eventsource-parser: 3.0.1
+
execa@5.1.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -12713,38 +12416,70 @@ snapshots:
execa@8.0.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 8.0.1
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.5.3:
dependencies:
"@sindresorhus/merge-streams": 4.0.0
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
figures: 6.1.0
get-stream: 9.0.1
- human-signals: 7.0.0
+ human-signals: 8.0.1
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.2.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:
+ express-rate-limit@7.5.0(express@5.1.0):
dependencies:
- type: 2.7.2
+ express: 5.1.0
+
+ express@5.1.0:
+ dependencies:
+ accepts: 2.0.0
+ body-parser: 2.2.0
+ content-disposition: 1.0.0
+ content-type: 1.0.5
+ cookie: 0.7.2
+ cookie-signature: 1.2.2
+ debug: 4.4.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 2.1.0
+ fresh: 2.0.0
+ http-errors: 2.0.0
+ merge-descriptors: 2.0.0
+ mime-types: 3.0.1
+ on-finished: 2.4.1
+ once: 1.4.0
+ parseurl: 1.3.3
+ proxy-addr: 2.0.7
+ qs: 6.14.0
+ range-parser: 1.2.1
+ router: 2.2.0
+ send: 1.2.0
+ serve-static: 2.2.0
+ statuses: 2.0.1
+ type-is: 2.0.1
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
external-editor@3.1.0:
dependencies:
@@ -12752,11 +12487,13 @@ snapshots:
iconv-lite: 0.4.24
tmp: 0.0.33
+ fast-content-type-parse@2.0.1: {}
+
fast-deep-equal@3.1.3: {}
fast-diff@1.3.0: {}
- fast-glob@3.3.2:
+ fast-glob@3.3.3:
dependencies:
"@nodelib/fs.stat": 2.0.5
"@nodelib/fs.walk": 1.2.8
@@ -12768,13 +12505,15 @@ snapshots:
fast-levenshtein@2.0.6: {}
+ fast-uri@3.0.6: {}
+
fastest-levenshtein@1.0.16: {}
- fastq@1.16.0:
+ fastq@1.19.1:
dependencies:
- reusify: 1.0.4
+ reusify: 1.1.0
- fdir@6.4.2(picomatch@4.0.2):
+ fdir@6.4.4(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -12788,28 +12527,35 @@ snapshots:
figures@6.1.0:
dependencies:
- is-unicode-supported: 2.0.0
+ is-unicode-supported: 2.1.0
+
+ file-entry-cache@10.1.0:
+ dependencies:
+ flat-cache: 6.1.9
file-entry-cache@8.0.0:
dependencies:
flat-cache: 4.0.1
- file-entry-cache@9.1.0:
- dependencies:
- flat-cache: 5.0.0
-
filelist@1.0.4:
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
+ finalhandler@2.1.0:
+ dependencies:
+ debug: 4.4.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
+
find-node-modules@2.1.3:
dependencies:
findup-sync: 4.0.0
@@ -12817,7 +12563,7 @@ snapshots:
find-root@1.1.0: {}
- find-up-simple@1.0.0: {}
+ find-up-simple@1.0.1: {}
find-up@2.1.0:
dependencies:
@@ -12853,39 +12599,44 @@ snapshots:
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.1
+ flatted: 3.3.3
keyv: 4.5.4
- flat-cache@5.0.0:
+ flat-cache@6.1.9:
dependencies:
- flatted: 3.3.1
- keyv: 4.5.4
+ cacheable: 1.9.0
+ flatted: 3.3.3
+ hookified: 1.9.0
flatpickr@4.6.13: {}
- flatted@3.3.1: {}
+ flatted@3.3.3: {}
- for-each@0.3.3:
+ for-each@0.3.5:
dependencies:
is-callable: 1.2.7
- foreground-child@3.1.1:
+ foreground-child@3.3.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
signal-exit: 4.1.0
form-data-encoder@4.0.2: {}
formdata-node@6.0.3: {}
+ forwarded@0.2.0: {}
+
fraction.js@4.3.7: {}
+ fresh@2.0.0: {}
+
from2@2.3.0:
dependencies:
inherits: 2.0.4
readable-stream: 2.3.8
- fs-extra@11.2.0:
+ fs-extra@11.3.0:
dependencies:
graceful-fs: 4.2.11
jsonfile: 6.1.0
@@ -12907,14 +12658,16 @@ snapshots:
function-bind@1.1.2: {}
- function-timeout@1.0.1: {}
+ function-timeout@1.0.2: {}
- function.prototype.name@1.1.6:
+ function.prototype.name@1.1.8:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.22.3
functions-have-names: 1.2.3
+ hasown: 2.0.2
+ is-callable: 1.2.7
functions-have-names@1.2.3: {}
@@ -12922,21 +12675,30 @@ snapshots:
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-east-asian-width@1.3.0: {}
- get-intrinsic@1.2.2:
+ get-intrinsic@1.3.0:
dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
function-bind: 1.1.2
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
get-own-enumerable-property-symbols@3.0.2: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
+
get-stream@6.0.1: {}
get-stream@7.0.1: {}
@@ -12948,12 +12710,13 @@ snapshots:
"@sec-ant/readable-stream": 0.4.1
is-stream: 4.0.1
- get-symbol-description@1.0.0:
+ get-symbol-description@1.1.0:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
- git-log-parser@1.2.0:
+ git-log-parser@1.2.1:
dependencies:
argv-formatter: 1.0.0
spawn-error-forwarder: 1.0.0
@@ -12976,13 +12739,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.1
+ 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:
@@ -12997,11 +12761,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
@@ -13030,49 +12789,48 @@ snapshots:
globals@14.0.0: {}
- globals@15.14.0: {}
+ globals@16.1.0: {}
- globalthis@1.0.3:
+ globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
+ gopd: 1.2.0
globby@11.1.0:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
- globby@14.0.0:
+ globby@14.1.0:
dependencies:
- "@sindresorhus/merge-streams": 1.0.0
- fast-glob: 3.3.2
- ignore: 5.3.2
- path-type: 5.0.0
+ "@sindresorhus/merge-streams": 2.3.0
+ fast-glob: 3.3.3
+ ignore: 7.0.4
+ path-type: 6.0.0
slash: 5.1.0
- unicorn-magic: 0.1.0
+ unicorn-magic: 0.3.0
globjoin@0.1.4: {}
- gopd@1.0.1:
- dependencies:
- get-intrinsic: 1.2.2
+ gopd@1.2.0: {}
- got@14.2.0:
+ got@14.4.7:
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.41.0
graceful-fs@4.2.10: {}
@@ -13087,29 +12845,29 @@ 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: {}
+ has-bigints@1.1.0: {}
has-flag@3.0.0: {}
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.1
- has-proto@1.0.1: {}
-
- has-symbols@1.0.3: {}
-
- has-tostringtag@1.0.0:
+ has-proto@1.2.0:
dependencies:
- has-symbols: 1.0.3
+ dunder-proto: 1.0.1
- has@1.0.4: {}
+ has-symbols@1.1.0: {}
- hasown@2.0.0:
+ has-tostringtag@1.0.2:
+ dependencies:
+ has-symbols: 1.1.0
+
+ hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -13121,24 +12879,34 @@ snapshots:
hook-std@3.0.0: {}
- hosted-git-info@7.0.1:
- dependencies:
- lru-cache: 10.1.0
+ hookified@1.9.0: {}
- hosted-git-info@8.0.0:
+ hosted-git-info@7.0.2:
dependencies:
- lru-cache: 10.1.0
+ lru-cache: 10.4.3
+
+ hosted-git-info@8.1.0:
+ dependencies:
+ lru-cache: 10.4.3
hpagent@1.2.0: {}
html-tags@3.3.1: {}
- http-cache-semantics@4.1.1: {}
+ http-cache-semantics@4.2.0: {}
- http-proxy-agent@7.0.0:
+ http-errors@2.0.0:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.1
+ toidentifier: 1.0.1
+
+ http-proxy-agent@7.0.2:
+ dependencies:
+ agent-base: 7.1.3
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -13147,10 +12915,10 @@ snapshots:
quick-lru: 5.1.1
resolve-alpn: 1.2.1
- https-proxy-agent@7.0.2:
+ https-proxy-agent@7.0.6:
dependencies:
- agent-base: 7.1.0
- debug: 4.3.6
+ agent-base: 7.1.3
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -13158,7 +12926,7 @@ snapshots:
human-signals@5.0.0: {}
- human-signals@7.0.0: {}
+ human-signals@8.0.1: {}
husky@9.1.7: {}
@@ -13176,28 +12944,21 @@ snapshots:
ignore@5.3.2: {}
- ignore@6.0.2: {}
+ ignore@7.0.4: {}
- import-fresh@3.3.0:
+ import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-from-esm@1.3.3:
- dependencies:
- debug: 4.3.6
- import-meta-resolve: 4.0.0
- transitivePeerDependencies:
- - supports-color
-
import-from-esm@2.0.0:
dependencies:
- debug: 4.3.6
- import-meta-resolve: 4.0.0
+ debug: 4.4.0
+ 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: {}
@@ -13205,7 +12966,7 @@ snapshots:
indent-string@5.0.0: {}
- index-to-position@0.1.2: {}
+ index-to-position@1.1.0: {}
inflight@1.0.6:
dependencies:
@@ -13246,17 +13007,17 @@ snapshots:
mute-stream: 0.0.8
ora: 5.4.1
run-async: 2.4.1
- rxjs: 7.8.1
+ rxjs: 7.8.2
string-width: 4.2.3
strip-ansi: 6.0.1
through: 2.3.8
wrap-ansi: 7.0.0
- internal-slot@1.0.6:
+ internal-slot@1.1.0:
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.1.0
internmap@2.0.3: {}
@@ -13265,59 +13026,83 @@ snapshots:
from2: 2.3.0
p-is-promise: 3.0.0
- is-arguments@1.1.1:
- dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
+ ipaddr.js@1.9.1: {}
- is-array-buffer@3.0.2:
+ is-arguments@1.2.0:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
+
+ is-array-buffer@3.0.5:
+ dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-arrayish@0.2.1: {}
- is-bigint@1.0.4:
+ is-async-function@2.1.1:
dependencies:
- has-bigints: 1.0.2
+ async-function: 1.0.0
+ call-bound: 1.0.4
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
+
+ is-bigint@1.1.0:
+ dependencies:
+ has-bigints: 1.1.0
is-binary-path@2.1.0:
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
- is-boolean-object@1.1.2:
+ is-boolean-object@1.2.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-bound: 1.0.4
+ has-tostringtag: 1.0.2
is-callable@1.2.7: {}
is-ci@4.1.0:
dependencies:
- ci-info: 4.1.0
+ ci-info: 4.2.0
- is-core-module@2.13.1:
+ is-core-module@2.16.1:
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.2
- is-date-object@1.0.5:
+ is-data-view@1.0.2:
dependencies:
- has-tostringtag: 1.0.0
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ is-typed-array: 1.1.15
+
+ is-date-object@1.1.0:
+ dependencies:
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
is-extglob@2.1.1: {}
+ is-finalizationregistry@1.1.1:
+ dependencies:
+ call-bound: 1.0.4
+
is-fullwidth-code-point@3.0.0: {}
is-fullwidth-code-point@4.0.0: {}
is-fullwidth-code-point@5.0.0:
dependencies:
- get-east-asian-width: 1.2.0
+ get-east-asian-width: 1.3.0
+
+ is-generator-function@1.1.0:
+ dependencies:
+ call-bound: 1.0.4
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
is-glob@4.0.3:
dependencies:
@@ -13325,13 +13110,14 @@ snapshots:
is-interactive@1.0.0: {}
+ is-map@2.0.3: {}
+
is-module@1.0.0: {}
- is-negative-zero@2.0.2: {}
-
- is-number-object@1.0.7:
+ is-number-object@1.1.1:
dependencies:
- has-tostringtag: 1.0.0
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -13343,16 +13129,22 @@ snapshots:
is-plain-object@5.0.0: {}
- is-regex@1.1.4:
+ is-promise@4.0.0: {}
+
+ is-regex@1.2.1:
dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
+ call-bound: 1.0.4
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
is-regexp@1.0.0: {}
- is-shared-array-buffer@1.0.2:
+ is-set@2.0.3: {}
+
+ is-shared-array-buffer@1.0.4:
dependencies:
- call-bind: 1.0.5
+ call-bound: 1.0.4
is-stream@2.0.1: {}
@@ -13360,31 +13152,41 @@ snapshots:
is-stream@4.0.1: {}
- is-string@1.0.7:
+ is-string@1.1.1:
dependencies:
- has-tostringtag: 1.0.0
+ call-bound: 1.0.4
+ has-tostringtag: 1.0.2
- is-symbol@1.0.4:
+ is-symbol@1.1.1:
dependencies:
- has-symbols: 1.0.3
+ call-bound: 1.0.4
+ has-symbols: 1.1.0
+ safe-regex-test: 1.1.0
is-text-path@2.0.0:
dependencies:
text-extensions: 2.4.0
- is-typed-array@1.1.12:
+ is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.13
+ which-typed-array: 1.1.19
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:
+ is-weakmap@2.0.2: {}
+
+ is-weakref@1.1.1:
dependencies:
- call-bind: 1.0.5
+ call-bound: 1.0.4
+
+ is-weakset@2.0.4:
+ dependencies:
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-windows@1.0.2: {}
@@ -13394,7 +13196,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
@@ -13402,43 +13204,42 @@ 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:
- optional: true
-
jiti@1.21.7: {}
jiti@2.4.2: {}
+ jpeg-exif@1.1.4: {}
+
js-tokens@4.0.0: {}
js-yaml@4.1.0:
dependencies:
argparse: 2.0.1
- jsesc@0.5.0: {}
+ jsesc@3.0.2: {}
- jsesc@2.5.2: {}
+ jsesc@3.1.0: {}
json-buffer@3.0.1: {}
json-fixer@1.6.15:
dependencies:
- "@babel/runtime": 7.23.6
+ "@babel/runtime": 7.27.1
chalk: 4.1.2
pegjs: 0.10.0
@@ -13470,9 +13271,13 @@ snapshots:
dependencies:
json-buffer: 3.0.1
+ keyv@5.3.3:
+ dependencies:
+ "@keyv/serialize": 1.0.3
+
kind-of@6.0.3: {}
- known-css-properties@0.35.0: {}
+ known-css-properties@0.36.0: {}
leaflet.markercluster@1.5.3(leaflet@1.9.4):
dependencies:
@@ -13482,38 +13287,31 @@ 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
type-check: 0.4.0
- lilconfig@3.1.2: {}
-
lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
- lint-staged@15.3.0:
+ lint-staged@16.0.0:
dependencies:
chalk: 5.4.1
- commander: 12.1.0
+ commander: 13.1.0
debug: 4.4.0
- execa: 8.0.1
lilconfig: 3.1.3
- listr2: 8.2.5
+ listr2: 8.3.3
micromatch: 4.0.8
+ nano-spawn: 1.0.1
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.6.1
+ yaml: 2.7.1
transitivePeerDependencies:
- supports-color
- listr2@8.2.5:
+ listr2@8.3.3:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -13522,21 +13320,21 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
- lit-element@4.1.0:
+ lit-element@4.2.0:
dependencies:
- "@lit-labs/ssr-dom-shim": 1.2.0
- "@lit/reactive-element": 2.0.4
- lit-html: 3.2.0
+ "@lit-labs/ssr-dom-shim": 1.3.0
+ "@lit/reactive-element": 2.1.0
+ lit-html: 3.3.0
- lit-html@3.2.0:
+ lit-html@3.3.0:
dependencies:
"@types/trusted-types": 2.0.7
- lit@3.2.1:
+ lit@3.3.0:
dependencies:
- "@lit/reactive-element": 2.0.4
- lit-element: 4.1.0
- lit-html: 3.2.0
+ "@lit/reactive-element": 2.1.0
+ lit-element: 4.2.0
+ lit-html: 3.3.0
load-json-file@4.0.0:
dependencies:
@@ -13621,37 +13419,32 @@ 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.3.0(marked@12.0.2):
dependencies:
- ansi-escapes: 6.2.0
- chalk: 5.3.0
+ ansi-escapes: 7.0.0
+ ansi-regex: 6.1.0
+ chalk: 5.4.1
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.1.0
+ node-emoji: 2.2.0
+ supports-hyperlinks: 3.2.0
marked@12.0.2: {}
- marked@15.0.6: {}
+ marked@15.0.11: {}
+
+ math-intrinsics@1.1.0: {}
mathml-tag-names@2.1.3: {}
@@ -13661,13 +13454,13 @@ snapshots:
mdn-data@2.12.2: {}
+ media-typer@1.1.0: {}
+
meow@12.1.1: {}
meow@13.2.0: {}
- merge-source-map@1.0.4:
- dependencies:
- source-map: 0.5.7
+ merge-descriptors@2.0.0: {}
merge-stream@2.0.0: {}
@@ -13675,17 +13468,18 @@ snapshots:
merge@2.1.1: {}
- micromatch@4.0.5:
- dependencies:
- braces: 3.0.2
- picomatch: 2.3.1
-
micromatch@4.0.8:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
- mime@4.0.1: {}
+ mime-db@1.54.0: {}
+
+ mime-types@3.0.1:
+ dependencies:
+ mime-db: 1.54.0
+
+ mime@4.0.7: {}
mimic-fn@2.1.0: {}
@@ -13707,7 +13501,7 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimatch@9.0.4:
+ minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.1
@@ -13715,12 +13509,10 @@ 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: {}
@@ -13731,17 +13523,19 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.7: {}
+ nano-spawn@1.0.1: {}
+
+ nanoid@3.3.11: {}
natural-compare@1.4.0: {}
+ negotiator@1.0.0: {}
+
neo-async@2.6.2: {}
nerf-dart@1.0.0: {}
- next-tick@1.1.0: {}
-
- node-emoji@2.1.3:
+ node-emoji@2.2.0:
dependencies:
"@sindresorhus/is": 4.6.0
char-regex: 1.0.2
@@ -13752,30 +13546,34 @@ snapshots:
dependencies:
whatwg-url: 5.0.0
- node-releases@2.0.18: {}
+ node-releases@2.0.19: {}
- 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.7.2
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.9.2: {}
nth-check@2.1.1:
dependencies:
@@ -13785,22 +13583,28 @@ snapshots:
object-hash@3.0.0: {}
- object-inspect@1.13.1: {}
+ object-inspect@1.13.4: {}
- object-is@1.1.5:
+ object-is@1.1.6:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
object-keys@1.1.1: {}
- object.assign@4.1.5:
+ object.assign@4.1.7:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- has-symbols: 1.0.3
+ es-object-atoms: 1.1.1
+ has-symbols: 1.1.0
object-keys: 1.1.1
+ on-finished@2.4.1:
+ dependencies:
+ ee-first: 1.1.1
+
once@1.4.0:
dependencies:
wrappy: 1.0.2
@@ -13817,23 +13621,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:
@@ -13849,13 +13644,19 @@ snapshots:
os-tmpdir@1.0.2: {}
+ own-keys@1.0.1:
+ dependencies:
+ get-intrinsic: 1.3.0
+ object-keys: 1.1.1
+ safe-push-apply: 1.0.0
+
p-cancelable@4.0.1: {}
p-each-series@3.0.0: {}
p-filter@4.1.0:
dependencies:
- p-map: 7.0.1
+ p-map: 7.0.3
p-is-promise@3.0.0: {}
@@ -13873,7 +13674,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.2.1
p-locate@2.0.0:
dependencies:
@@ -13891,7 +13692,7 @@ snapshots:
dependencies:
p-limit: 4.0.0
- p-map@7.0.1: {}
+ p-map@7.0.3: {}
p-reduce@2.1.0: {}
@@ -13901,6 +13702,8 @@ snapshots:
p-try@2.2.0: {}
+ package-json-from-dist@1.0.1: {}
+
pako@0.2.9: {}
parent-module@1.0.1:
@@ -13914,29 +13717,29 @@ snapshots:
parse-json@5.2.0:
dependencies:
- "@babel/code-frame": 7.23.5
+ "@babel/code-frame": 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse-json@8.1.0:
+ parse-json@8.3.0:
dependencies:
- "@babel/code-frame": 7.24.2
- index-to-position: 0.1.2
- type-fest: 4.9.0
+ "@babel/code-frame": 7.27.1
+ index-to-position: 1.1.0
+ type-fest: 4.41.0
parse-ms@4.0.0: {}
parse-passwd@1.0.0: {}
- parse-path@7.0.0:
+ parse-path@7.1.0:
dependencies:
- protocols: 2.0.1
+ protocols: 2.0.2
- parse-url@9.0.1:
+ parse-url@9.2.0:
dependencies:
- "@types/parse-path": 7.0.3
- parse-path: 7.0.0
+ "@types/parse-path": 7.1.0
+ parse-path: 7.1.0
parse5-htmlparser2-tree-adapter@6.0.1:
dependencies:
@@ -13946,6 +13749,8 @@ snapshots:
parse5@6.0.1: {}
+ parseurl@1.3.3: {}
+
path-exists@3.0.0: {}
path-exists@4.0.0: {}
@@ -13960,32 +13765,28 @@ 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-to-regexp@8.2.0: {}
path-type@4.0.0: {}
- path-type@5.0.0: {}
+ path-type@6.0.0: {}
- pdfmake@0.2.8:
+ pdfmake@0.2.20:
dependencies:
- "@foliojs-fork/linebreak": 1.1.1
- "@foliojs-fork/pdfkit": 0.14.0
+ "@foliojs-fork/linebreak": 1.1.2
+ "@foliojs-fork/pdfkit": 0.15.3
iconv-lite: 0.6.3
- xmldoc: 1.3.0
+ xmldoc: 2.0.1
pegjs@0.10.0: {}
performance-now@2.1.0: {}
- picocolors@1.0.0: {}
-
- picocolors@1.0.1: {}
-
- picocolors@1.1.0: {}
-
picocolors@1.1.1: {}
picomatch@2.3.1: {}
@@ -14000,7 +13801,9 @@ snapshots:
pify@5.0.0: {}
- pirates@4.0.6: {}
+ pirates@4.0.7: {}
+
+ pkce-challenge@5.0.0: {}
pkg-conf@2.1.0:
dependencies:
@@ -14013,466 +13816,461 @@ snapshots:
dependencies:
tinyqueue: 2.0.3
- postcss-attribute-case-insensitive@7.0.1(postcss@8.4.49):
- dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ possible-typed-array-names@1.1.0: {}
- postcss-calc@10.0.2(postcss@8.4.49):
+ postcss-attribute-case-insensitive@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 6.1.2
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
+
+ postcss-calc@10.1.1(postcss@8.5.3):
+ dependencies:
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-clamp@4.1.0(postcss@8.4.49):
+ postcss-clamp@4.1.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-color-functional-notation@7.0.7(postcss@8.4.49):
+ postcss-color-functional-notation@7.0.9(postcss@8.5.3):
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- postcss-color-hex-alpha@10.0.0(postcss@8.4.49):
+ postcss-color-hex-alpha@10.0.0(postcss@8.5.3):
dependencies:
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-color-rebeccapurple@10.0.0(postcss@8.4.49):
+ postcss-color-rebeccapurple@10.0.0(postcss@8.5.3):
dependencies:
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-colormin@7.0.2(postcss@8.4.49):
+ postcss-colormin@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.5
caniuse-api: 3.0.0
colord: 2.9.3
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.4(postcss@8.4.49):
+ postcss-convert-values@7.0.5(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
- postcss: 8.4.49
+ browserslist: 4.24.5
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-custom-media@11.0.5(postcss@8.4.49):
+ postcss-custom-media@11.0.5(postcss@8.5.3):
dependencies:
"@csstools/cascade-layer-name-parser": 2.0.4(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
"@csstools/media-query-list-parser": 4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-custom-properties@14.0.4(postcss@8.4.49):
+ postcss-custom-properties@14.0.4(postcss@8.5.3):
dependencies:
"@csstools/cascade-layer-name-parser": 2.0.4(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-custom-selectors@8.0.4(postcss@8.4.49):
+ postcss-custom-selectors@8.0.4(postcss@8.5.3):
dependencies:
"@csstools/cascade-layer-name-parser": 2.0.4(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-dir-pseudo-class@9.0.1(postcss@8.4.49):
+ postcss-dir-pseudo-class@9.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-discard-comments@7.0.3(postcss@8.4.49):
+ postcss-discard-comments@7.0.4(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 6.1.2
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-discard-duplicates@7.0.1(postcss@8.4.49):
+ postcss-discard-duplicates@7.0.2(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-discard-empty@7.0.0(postcss@8.4.49):
+ postcss-discard-empty@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-discard-overridden@7.0.0(postcss@8.4.49):
+ postcss-discard-overridden@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-double-position-gradients@6.0.0(postcss@8.4.49):
+ postcss-double-position-gradients@6.0.1(postcss@8.5.3):
dependencies:
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-focus-visible@10.0.1(postcss@8.4.49):
+ postcss-focus-visible@10.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-focus-within@9.0.1(postcss@8.4.49):
+ postcss-focus-within@9.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-font-variant@5.0.0(postcss@8.4.49):
+ postcss-font-variant@5.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-gap-properties@6.0.0(postcss@8.4.49):
+ postcss-gap-properties@6.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-image-set-function@7.0.0(postcss@8.4.49):
+ postcss-image-set-function@7.0.0(postcss@8.5.3):
dependencies:
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-import@15.1.0(postcss@8.4.49):
+ postcss-import@15.1.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.8
+ resolve: 1.22.10
- postcss-import@16.1.0(postcss@8.4.49):
+ postcss-import@16.1.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.8
+ resolve: 1.22.10
- postcss-js@4.0.1(postcss@8.4.49):
+ postcss-js@4.0.1(postcss@8.5.3):
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-lab-function@7.0.7(postcss@8.4.49):
+ postcss-lab-function@7.0.9(postcss@8.5.3):
dependencies:
- "@csstools/css-color-parser": 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ "@csstools/css-color-parser": 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/utilities": 2.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/utilities": 2.0.0(postcss@8.5.3)
+ postcss: 8.5.3
- postcss-load-config@4.0.2(postcss@8.4.49):
+ postcss-load-config@4.0.2(postcss@8.5.3):
dependencies:
lilconfig: 3.1.3
- yaml: 2.5.1
+ yaml: 2.7.1
optionalDependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-logical@8.0.0(postcss@8.4.49):
+ postcss-logical@8.1.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-merge-longhand@7.0.4(postcss@8.4.49):
+ postcss-merge-longhand@7.0.5(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- stylehacks: 7.0.4(postcss@8.4.49)
+ stylehacks: 7.0.5(postcss@8.5.3)
- postcss-merge-rules@7.0.4(postcss@8.4.49):
+ postcss-merge-rules@7.0.5(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.5
caniuse-api: 3.0.0
- cssnano-utils: 5.0.0(postcss@8.4.49)
- postcss: 8.4.49
- postcss-selector-parser: 6.1.2
+ cssnano-utils: 5.0.1(postcss@8.5.3)
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-minify-font-values@7.0.0(postcss@8.4.49):
+ postcss-minify-font-values@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-gradients@7.0.0(postcss@8.4.49):
+ postcss-minify-gradients@7.0.1(postcss@8.5.3):
dependencies:
colord: 2.9.3
- cssnano-utils: 5.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ cssnano-utils: 5.0.1(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-params@7.0.2(postcss@8.4.49):
+ postcss-minify-params@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
- cssnano-utils: 5.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ browserslist: 4.24.5
+ cssnano-utils: 5.0.1(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-minify-selectors@7.0.4(postcss@8.4.49):
+ postcss-minify-selectors@7.0.5(postcss@8.5.3):
dependencies:
cssesc: 3.0.0
- postcss: 8.4.49
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
+
+ postcss-nested@5.0.6(postcss@8.5.3):
+ dependencies:
+ postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-nested@5.0.6(postcss@8.4.49):
+ postcss-nested@6.2.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 6.0.14
-
- postcss-nested@6.2.0(postcss@8.4.49):
- dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-selector-parser: 6.1.2
- postcss-nesting@13.0.1(postcss@8.4.49):
+ postcss-nesting@13.0.1(postcss@8.5.3):
dependencies:
- "@csstools/selector-resolve-nested": 3.0.0(postcss-selector-parser@7.0.0)
- "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.0.0)
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ "@csstools/selector-resolve-nested": 3.0.0(postcss-selector-parser@7.1.0)
+ "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.1.0)
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-normalize-charset@7.0.0(postcss@8.4.49):
+ postcss-normalize-charset@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-normalize-display-values@7.0.0(postcss@8.4.49):
+ postcss-normalize-display-values@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-positions@7.0.0(postcss@8.4.49):
+ postcss-normalize-positions@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@7.0.0(postcss@8.4.49):
+ postcss-normalize-repeat-style@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-string@7.0.0(postcss@8.4.49):
+ postcss-normalize-string@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@7.0.0(postcss@8.4.49):
+ postcss-normalize-timing-functions@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@7.0.2(postcss@8.4.49):
+ postcss-normalize-unicode@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
- postcss: 8.4.49
+ browserslist: 4.24.5
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-url@7.0.0(postcss@8.4.49):
+ postcss-normalize-url@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@7.0.0(postcss@8.4.49):
+ postcss-normalize-whitespace@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-opacity-percentage@3.0.0(postcss@8.4.49):
+ postcss-opacity-percentage@3.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-ordered-values@7.0.1(postcss@8.4.49):
+ postcss-ordered-values@7.0.2(postcss@8.5.3):
dependencies:
- cssnano-utils: 5.0.0(postcss@8.4.49)
- postcss: 8.4.49
+ cssnano-utils: 5.0.1(postcss@8.5.3)
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-overflow-shorthand@6.0.0(postcss@8.4.49):
+ postcss-overflow-shorthand@6.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-page-break@3.0.4(postcss@8.4.49):
+ postcss-page-break@3.0.4(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-place@10.0.0(postcss@8.4.49):
+ postcss-place@10.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-preset-env@10.1.3(postcss@8.4.49):
+ postcss-preset-env@10.1.6(postcss@8.5.3):
dependencies:
- "@csstools/postcss-cascade-layers": 5.0.1(postcss@8.4.49)
- "@csstools/postcss-color-function": 4.0.7(postcss@8.4.49)
- "@csstools/postcss-color-mix-function": 3.0.7(postcss@8.4.49)
- "@csstools/postcss-content-alt-text": 2.0.4(postcss@8.4.49)
- "@csstools/postcss-exponential-functions": 2.0.6(postcss@8.4.49)
- "@csstools/postcss-font-format-keywords": 4.0.0(postcss@8.4.49)
- "@csstools/postcss-gamut-mapping": 2.0.7(postcss@8.4.49)
- "@csstools/postcss-gradients-interpolation-method": 5.0.7(postcss@8.4.49)
- "@csstools/postcss-hwb-function": 4.0.7(postcss@8.4.49)
- "@csstools/postcss-ic-unit": 4.0.0(postcss@8.4.49)
- "@csstools/postcss-initial": 2.0.0(postcss@8.4.49)
- "@csstools/postcss-is-pseudo-class": 5.0.1(postcss@8.4.49)
- "@csstools/postcss-light-dark-function": 2.0.7(postcss@8.4.49)
- "@csstools/postcss-logical-float-and-clear": 3.0.0(postcss@8.4.49)
- "@csstools/postcss-logical-overflow": 2.0.0(postcss@8.4.49)
- "@csstools/postcss-logical-overscroll-behavior": 2.0.0(postcss@8.4.49)
- "@csstools/postcss-logical-resize": 3.0.0(postcss@8.4.49)
- "@csstools/postcss-logical-viewport-units": 3.0.3(postcss@8.4.49)
- "@csstools/postcss-media-minmax": 2.0.6(postcss@8.4.49)
- "@csstools/postcss-media-queries-aspect-ratio-number-values": 3.0.4(postcss@8.4.49)
- "@csstools/postcss-nested-calc": 4.0.0(postcss@8.4.49)
- "@csstools/postcss-normalize-display-values": 4.0.0(postcss@8.4.49)
- "@csstools/postcss-oklab-function": 4.0.7(postcss@8.4.49)
- "@csstools/postcss-progressive-custom-properties": 4.0.0(postcss@8.4.49)
- "@csstools/postcss-random-function": 1.0.2(postcss@8.4.49)
- "@csstools/postcss-relative-color-syntax": 3.0.7(postcss@8.4.49)
- "@csstools/postcss-scope-pseudo-class": 4.0.1(postcss@8.4.49)
- "@csstools/postcss-sign-functions": 1.1.1(postcss@8.4.49)
- "@csstools/postcss-stepped-value-functions": 4.0.6(postcss@8.4.49)
- "@csstools/postcss-text-decoration-shorthand": 4.0.1(postcss@8.4.49)
- "@csstools/postcss-trigonometric-functions": 4.0.6(postcss@8.4.49)
- "@csstools/postcss-unset-value": 4.0.0(postcss@8.4.49)
- autoprefixer: 10.4.19(postcss@8.4.49)
- browserslist: 4.23.3
- css-blank-pseudo: 7.0.1(postcss@8.4.49)
- css-has-pseudo: 7.0.2(postcss@8.4.49)
- css-prefers-color-scheme: 10.0.0(postcss@8.4.49)
- cssdb: 8.2.3
- postcss: 8.4.49
- postcss-attribute-case-insensitive: 7.0.1(postcss@8.4.49)
- postcss-clamp: 4.1.0(postcss@8.4.49)
- postcss-color-functional-notation: 7.0.7(postcss@8.4.49)
- postcss-color-hex-alpha: 10.0.0(postcss@8.4.49)
- postcss-color-rebeccapurple: 10.0.0(postcss@8.4.49)
- postcss-custom-media: 11.0.5(postcss@8.4.49)
- postcss-custom-properties: 14.0.4(postcss@8.4.49)
- postcss-custom-selectors: 8.0.4(postcss@8.4.49)
- postcss-dir-pseudo-class: 9.0.1(postcss@8.4.49)
- postcss-double-position-gradients: 6.0.0(postcss@8.4.49)
- postcss-focus-visible: 10.0.1(postcss@8.4.49)
- postcss-focus-within: 9.0.1(postcss@8.4.49)
- postcss-font-variant: 5.0.0(postcss@8.4.49)
- postcss-gap-properties: 6.0.0(postcss@8.4.49)
- postcss-image-set-function: 7.0.0(postcss@8.4.49)
- postcss-lab-function: 7.0.7(postcss@8.4.49)
- postcss-logical: 8.0.0(postcss@8.4.49)
- postcss-nesting: 13.0.1(postcss@8.4.49)
- postcss-opacity-percentage: 3.0.0(postcss@8.4.49)
- postcss-overflow-shorthand: 6.0.0(postcss@8.4.49)
- postcss-page-break: 3.0.4(postcss@8.4.49)
- postcss-place: 10.0.0(postcss@8.4.49)
- postcss-pseudo-class-any-link: 10.0.1(postcss@8.4.49)
- postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.49)
- postcss-selector-not: 8.0.1(postcss@8.4.49)
+ "@csstools/postcss-cascade-layers": 5.0.1(postcss@8.5.3)
+ "@csstools/postcss-color-function": 4.0.9(postcss@8.5.3)
+ "@csstools/postcss-color-mix-function": 3.0.9(postcss@8.5.3)
+ "@csstools/postcss-content-alt-text": 2.0.5(postcss@8.5.3)
+ "@csstools/postcss-exponential-functions": 2.0.8(postcss@8.5.3)
+ "@csstools/postcss-font-format-keywords": 4.0.0(postcss@8.5.3)
+ "@csstools/postcss-gamut-mapping": 2.0.9(postcss@8.5.3)
+ "@csstools/postcss-gradients-interpolation-method": 5.0.9(postcss@8.5.3)
+ "@csstools/postcss-hwb-function": 4.0.9(postcss@8.5.3)
+ "@csstools/postcss-ic-unit": 4.0.1(postcss@8.5.3)
+ "@csstools/postcss-initial": 2.0.1(postcss@8.5.3)
+ "@csstools/postcss-is-pseudo-class": 5.0.1(postcss@8.5.3)
+ "@csstools/postcss-light-dark-function": 2.0.8(postcss@8.5.3)
+ "@csstools/postcss-logical-float-and-clear": 3.0.0(postcss@8.5.3)
+ "@csstools/postcss-logical-overflow": 2.0.0(postcss@8.5.3)
+ "@csstools/postcss-logical-overscroll-behavior": 2.0.0(postcss@8.5.3)
+ "@csstools/postcss-logical-resize": 3.0.0(postcss@8.5.3)
+ "@csstools/postcss-logical-viewport-units": 3.0.3(postcss@8.5.3)
+ "@csstools/postcss-media-minmax": 2.0.8(postcss@8.5.3)
+ "@csstools/postcss-media-queries-aspect-ratio-number-values": 3.0.4(postcss@8.5.3)
+ "@csstools/postcss-nested-calc": 4.0.0(postcss@8.5.3)
+ "@csstools/postcss-normalize-display-values": 4.0.0(postcss@8.5.3)
+ "@csstools/postcss-oklab-function": 4.0.9(postcss@8.5.3)
+ "@csstools/postcss-progressive-custom-properties": 4.0.1(postcss@8.5.3)
+ "@csstools/postcss-random-function": 2.0.0(postcss@8.5.3)
+ "@csstools/postcss-relative-color-syntax": 3.0.9(postcss@8.5.3)
+ "@csstools/postcss-scope-pseudo-class": 4.0.1(postcss@8.5.3)
+ "@csstools/postcss-sign-functions": 1.1.3(postcss@8.5.3)
+ "@csstools/postcss-stepped-value-functions": 4.0.8(postcss@8.5.3)
+ "@csstools/postcss-text-decoration-shorthand": 4.0.2(postcss@8.5.3)
+ "@csstools/postcss-trigonometric-functions": 4.0.8(postcss@8.5.3)
+ "@csstools/postcss-unset-value": 4.0.0(postcss@8.5.3)
+ autoprefixer: 10.4.21(postcss@8.5.3)
+ browserslist: 4.24.5
+ css-blank-pseudo: 7.0.1(postcss@8.5.3)
+ css-has-pseudo: 7.0.2(postcss@8.5.3)
+ css-prefers-color-scheme: 10.0.0(postcss@8.5.3)
+ cssdb: 8.2.5
+ postcss: 8.5.3
+ postcss-attribute-case-insensitive: 7.0.1(postcss@8.5.3)
+ postcss-clamp: 4.1.0(postcss@8.5.3)
+ postcss-color-functional-notation: 7.0.9(postcss@8.5.3)
+ postcss-color-hex-alpha: 10.0.0(postcss@8.5.3)
+ postcss-color-rebeccapurple: 10.0.0(postcss@8.5.3)
+ postcss-custom-media: 11.0.5(postcss@8.5.3)
+ postcss-custom-properties: 14.0.4(postcss@8.5.3)
+ postcss-custom-selectors: 8.0.4(postcss@8.5.3)
+ postcss-dir-pseudo-class: 9.0.1(postcss@8.5.3)
+ postcss-double-position-gradients: 6.0.1(postcss@8.5.3)
+ postcss-focus-visible: 10.0.1(postcss@8.5.3)
+ postcss-focus-within: 9.0.1(postcss@8.5.3)
+ postcss-font-variant: 5.0.0(postcss@8.5.3)
+ postcss-gap-properties: 6.0.0(postcss@8.5.3)
+ postcss-image-set-function: 7.0.0(postcss@8.5.3)
+ postcss-lab-function: 7.0.9(postcss@8.5.3)
+ postcss-logical: 8.1.0(postcss@8.5.3)
+ postcss-nesting: 13.0.1(postcss@8.5.3)
+ postcss-opacity-percentage: 3.0.0(postcss@8.5.3)
+ postcss-overflow-shorthand: 6.0.0(postcss@8.5.3)
+ postcss-page-break: 3.0.4(postcss@8.5.3)
+ postcss-place: 10.0.0(postcss@8.5.3)
+ postcss-pseudo-class-any-link: 10.0.1(postcss@8.5.3)
+ postcss-replace-overflow-wrap: 4.0.0(postcss@8.5.3)
+ postcss-selector-not: 8.0.1(postcss@8.5.3)
- postcss-pseudo-class-any-link@10.0.1(postcss@8.4.49):
+ postcss-pseudo-class-any-link@10.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- postcss-reduce-initial@7.0.2(postcss@8.4.49):
+ postcss-reduce-initial@7.0.3(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.5
caniuse-api: 3.0.0
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-reduce-transforms@7.0.0(postcss@8.4.49):
+ postcss-reduce-transforms@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
- postcss-replace-overflow-wrap@4.0.0(postcss@8.4.49):
+ postcss-replace-overflow-wrap@4.0.0(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-reporter@7.1.0(postcss@8.4.49):
+ postcss-reporter@7.1.0(postcss@8.5.3):
dependencies:
- picocolors: 1.0.0
- postcss: 8.4.49
+ picocolors: 1.1.1
+ postcss: 8.5.3
thenby: 1.3.4
postcss-resolve-nested-selector@0.1.6: {}
- postcss-safe-parser@7.0.1(postcss@8.4.49):
+ postcss-safe-parser@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
- postcss-selector-not@8.0.1(postcss@8.4.49):
+ postcss-selector-not@8.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 7.0.0
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
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.2:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-selector-parser@7.0.0:
+ postcss-selector-parser@7.1.0:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-svgo@7.0.1(postcss@8.4.49):
+ postcss-svgo@7.0.2(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-value-parser: 4.2.0
svgo: 3.3.2
- postcss-unique-selectors@7.0.3(postcss@8.4.49):
+ postcss-unique-selectors@7.0.4(postcss@8.5.3):
dependencies:
- postcss: 8.4.49
- postcss-selector-parser: 6.1.2
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
postcss-value-parser@4.2.0: {}
- postcss@8.4.49:
+ postcss@8.5.3:
dependencies:
- nanoid: 3.3.7
+ nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
- prelude-ls@1.1.2: {}
-
prelude-ls@1.2.1: {}
prettier-linter-helpers@1.0.0:
dependencies:
fast-diff: 1.3.0
- prettier-plugin-organize-imports@4.1.0(prettier@3.4.2)(typescript@5.7.2):
+ prettier-plugin-organize-imports@4.1.0(prettier@3.5.3)(typescript@5.7.3):
dependencies:
- prettier: 3.4.2
- typescript: 5.7.2
+ prettier: 3.5.3
+ typescript: 5.7.3
prettier@2.8.8:
optional: true
- prettier@3.4.2: {}
+ prettier@3.5.3: {}
pretty-bytes@5.6.0: {}
pretty-bytes@6.1.1: {}
- pretty-ms@9.0.0:
+ pretty-ms@9.2.0:
dependencies:
parse-ms: 4.0.0
@@ -14480,20 +14278,23 @@ snapshots:
proto-list@1.2.4: {}
- protocols@2.0.1: {}
+ protocols@2.0.2: {}
+
+ proxy-addr@2.0.7:
+ dependencies:
+ forwarded: 0.2.0
+ ipaddr.js: 1.9.1
punycode@2.3.1: {}
+ qs@6.14.0:
+ dependencies:
+ side-channel: 1.1.0
+
queue-microtask@1.2.3: {}
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
@@ -14502,6 +14303,15 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
+ range-parser@1.2.1: {}
+
+ raw-body@3.0.0:
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.0
+ iconv-lite: 0.6.3
+ unpipe: 1.0.0
+
rc@1.2.8:
dependencies:
deep-extend: 0.6.0
@@ -14515,16 +14325,16 @@ snapshots:
read-package-up@11.0.0:
dependencies:
- find-up-simple: 1.0.0
+ find-up-simple: 1.0.1
read-pkg: 9.0.1
- type-fest: 4.9.0
+ type-fest: 4.41.0
read-pkg@9.0.1:
dependencies:
"@types/normalize-package-data": 2.4.4
- normalize-package-data: 6.0.0
- parse-json: 8.1.0
- type-fest: 4.9.0
+ normalize-package-data: 6.0.2
+ parse-json: 8.3.0
+ type-fest: 4.41.0
unicorn-magic: 0.1.0
readable-stream@2.3.8:
@@ -14549,42 +14359,52 @@ snapshots:
redux@4.2.1:
dependencies:
- "@babel/runtime": 7.23.6
+ "@babel/runtime": 7.27.1
- regenerate-unicode-properties@10.1.1:
+ reflect.getprototypeof@1.0.10:
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ which-builtin-type: 1.2.1
+
+ regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
regenerate@1.4.2: {}
- regenerator-runtime@0.14.1: {}
-
- regenerator-transform@0.15.2:
+ regexp.prototype.flags@1.5.4:
dependencies:
- "@babel/runtime": 7.23.6
-
- regexp.prototype.flags@1.5.1:
- dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- set-function-name: 2.0.1
+ es-errors: 1.3.0
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ set-function-name: 2.0.2
- regexpu-core@5.3.2:
+ regexpu-core@6.2.0:
dependencies:
- "@babel/regjsgen": 0.8.0
regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.1
- regjsparser: 0.9.1
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.12.0
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:
+ registry-auth-token@5.1.0:
dependencies:
- "@pnpm/npm-conf": 2.2.2
+ "@pnpm/npm-conf": 2.3.1
- regjsparser@0.9.1:
+ regjsgen@0.8.0: {}
+
+ regjsparser@0.12.0:
dependencies:
- jsesc: 0.5.0
+ jsesc: 3.0.2
regression@2.0.1: {}
@@ -14605,16 +14425,9 @@ snapshots:
resolve-from@5.0.0: {}
- resolve-global@1.0.0:
+ resolve@1.22.10:
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.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -14632,41 +14445,52 @@ snapshots:
onetime: 7.0.0
signal-exit: 4.1.0
- reusify@1.0.4: {}
+ reusify@1.1.0: {}
rfdc@1.4.1: {}
rgbcolor@1.0.1: {}
- rollup@2.79.1:
+ rollup@2.79.2:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.30.1:
+ rollup@4.40.2:
dependencies:
- "@types/estree": 1.0.6
+ "@types/estree": 1.0.7
optionalDependencies:
- "@rollup/rollup-android-arm-eabi": 4.30.1
- "@rollup/rollup-android-arm64": 4.30.1
- "@rollup/rollup-darwin-arm64": 4.30.1
- "@rollup/rollup-darwin-x64": 4.30.1
- "@rollup/rollup-freebsd-arm64": 4.30.1
- "@rollup/rollup-freebsd-x64": 4.30.1
- "@rollup/rollup-linux-arm-gnueabihf": 4.30.1
- "@rollup/rollup-linux-arm-musleabihf": 4.30.1
- "@rollup/rollup-linux-arm64-gnu": 4.30.1
- "@rollup/rollup-linux-arm64-musl": 4.30.1
- "@rollup/rollup-linux-loongarch64-gnu": 4.30.1
- "@rollup/rollup-linux-powerpc64le-gnu": 4.30.1
- "@rollup/rollup-linux-riscv64-gnu": 4.30.1
- "@rollup/rollup-linux-s390x-gnu": 4.30.1
- "@rollup/rollup-linux-x64-gnu": 4.30.1
- "@rollup/rollup-linux-x64-musl": 4.30.1
- "@rollup/rollup-win32-arm64-msvc": 4.30.1
- "@rollup/rollup-win32-ia32-msvc": 4.30.1
- "@rollup/rollup-win32-x64-msvc": 4.30.1
+ "@rollup/rollup-android-arm-eabi": 4.40.2
+ "@rollup/rollup-android-arm64": 4.40.2
+ "@rollup/rollup-darwin-arm64": 4.40.2
+ "@rollup/rollup-darwin-x64": 4.40.2
+ "@rollup/rollup-freebsd-arm64": 4.40.2
+ "@rollup/rollup-freebsd-x64": 4.40.2
+ "@rollup/rollup-linux-arm-gnueabihf": 4.40.2
+ "@rollup/rollup-linux-arm-musleabihf": 4.40.2
+ "@rollup/rollup-linux-arm64-gnu": 4.40.2
+ "@rollup/rollup-linux-arm64-musl": 4.40.2
+ "@rollup/rollup-linux-loongarch64-gnu": 4.40.2
+ "@rollup/rollup-linux-powerpc64le-gnu": 4.40.2
+ "@rollup/rollup-linux-riscv64-gnu": 4.40.2
+ "@rollup/rollup-linux-riscv64-musl": 4.40.2
+ "@rollup/rollup-linux-s390x-gnu": 4.40.2
+ "@rollup/rollup-linux-x64-gnu": 4.40.2
+ "@rollup/rollup-linux-x64-musl": 4.40.2
+ "@rollup/rollup-win32-arm64-msvc": 4.40.2
+ "@rollup/rollup-win32-ia32-msvc": 4.40.2
+ "@rollup/rollup-win32-x64-msvc": 4.40.2
fsevents: 2.3.3
+ router@2.2.0:
+ dependencies:
+ debug: 4.4.0
+ depd: 2.0.0
+ is-promise: 4.0.0
+ parseurl: 1.3.3
+ path-to-regexp: 8.2.0
+ transitivePeerDependencies:
+ - supports-color
+
run-async@2.4.1: {}
run-parallel@1.2.0:
@@ -14677,69 +14501,65 @@ snapshots:
dependencies:
tslib: 1.14.1
- rxjs@7.8.1:
+ rxjs@7.8.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
- safe-array-concat@1.0.1:
+ safe-array-concat@1.1.3:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- has-symbols: 1.0.3
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
isarray: 2.0.5
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
- safe-regex-test@1.0.0:
+ safe-push-apply@1.0.0:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-regex: 1.1.4
+ es-errors: 1.3.0
+ isarray: 2.0.5
+
+ safe-regex-test@1.1.0:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-regex: 1.2.1
safer-buffer@2.1.2: {}
- sax@1.3.0: {}
+ sax@1.4.1: {}
- scope-analyzer@2.1.2:
+ semantic-release@24.2.3(typescript@5.7.3):
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.2.1(typescript@5.7.2):
- dependencies:
- "@semantic-release/commit-analyzer": 13.0.0(semantic-release@24.2.1(typescript@5.7.2))
+ "@semantic-release/commit-analyzer": 13.0.1(semantic-release@24.2.3(typescript@5.7.3))
"@semantic-release/error": 4.0.0
- "@semantic-release/github": 11.0.1(semantic-release@24.2.1(typescript@5.7.2))
- "@semantic-release/npm": 12.0.0(semantic-release@24.2.1(typescript@5.7.2))
- "@semantic-release/release-notes-generator": 14.0.1(semantic-release@24.2.1(typescript@5.7.2))
+ "@semantic-release/github": 11.0.2(semantic-release@24.2.3(typescript@5.7.3))
+ "@semantic-release/npm": 12.0.1(semantic-release@24.2.3(typescript@5.7.3))
+ "@semantic-release/release-notes-generator": 14.0.3(semantic-release@24.2.3(typescript@5.7.3))
aggregate-error: 5.0.0
- cosmiconfig: 9.0.0(typescript@5.7.2)
- debug: 4.3.6
- env-ci: 11.0.0
- execa: 9.3.0
+ cosmiconfig: 9.0.0(typescript@5.7.3)
+ debug: 4.4.0
+ env-ci: 11.1.0
+ execa: 9.5.3
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
+ hosted-git-info: 8.1.0
import-from-esm: 2.0.0
lodash-es: 4.17.21
marked: 12.0.2
- marked-terminal: 7.0.0(marked@12.0.2)
+ marked-terminal: 7.3.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.7.2
semver-diff: 4.0.0
signale: 1.4.0
yargs: 17.7.2
@@ -14749,36 +14569,68 @@ snapshots:
semver-diff@4.0.0:
dependencies:
- semver: 7.6.0
+ semver: 7.7.2
semver-regex@4.0.5: {}
semver@6.3.1: {}
- semver@7.6.0:
+ semver@7.7.2: {}
+
+ send@1.2.0:
dependencies:
- lru-cache: 6.0.0
+ debug: 4.4.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 2.0.0
+ http-errors: 2.0.0
+ mime-types: 3.0.1
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.1
+ transitivePeerDependencies:
+ - supports-color
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
+ serve-static@2.2.0:
+ dependencies:
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 1.2.0
+ transitivePeerDependencies:
+ - supports-color
+
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
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ 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
+ has-property-descriptors: 1.0.2
- shallow-copy@0.0.1: {}
+ set-proto@1.0.0:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+
+ setprototypeof@1.2.0: {}
shebang-command@2.0.0:
dependencies:
@@ -14786,11 +14638,33 @@ snapshots:
shebang-regex@3.0.0: {}
- side-channel@1.0.4:
+ side-channel-list@1.0.0:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- object-inspect: 1.13.1
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
signal-exit@3.0.7: {}
@@ -14828,8 +14702,6 @@ snapshots:
smob@1.5.0: {}
- source-map-js@1.2.0: {}
-
source-map-js@1.2.1: {}
source-map-support@0.5.21:
@@ -14837,13 +14709,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:
@@ -14857,16 +14722,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.21
- 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.21
- spdx-license-ids@3.0.16: {}
+ spdx-license-ids@3.0.21: {}
split2@1.0.0:
dependencies:
@@ -14874,28 +14739,9 @@ snapshots:
split2@4.2.0: {}
- stackblur-canvas@2.6.0: {}
+ stackblur-canvas@2.7.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
+ statuses@2.0.1: {}
stencil-wormhole@3.4.1: {}
@@ -14918,41 +14764,50 @@ 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
- get-east-asian-width: 1.2.0
+ emoji-regex: 10.4.0
+ get-east-asian-width: 1.3.0
strip-ansi: 7.1.0
- string.prototype.matchall@4.0.10:
+ string.prototype.matchall@4.0.12:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- 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
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ internal-slot: 1.1.0
+ regexp.prototype.flags: 1.5.4
+ set-function-name: 2.0.2
+ side-channel: 1.1.0
- string.prototype.trim@1.2.8:
+ string.prototype.trim@1.2.10:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-abstract: 1.23.9
+ es-object-atoms: 1.1.1
+ has-property-descriptors: 1.0.2
- string.prototype.trimend@1.0.7:
+ string.prototype.trimend@1.0.9:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-object-atoms: 1.1.1
- string.prototype.trimstart@1.0.7:
+ string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-object-atoms: 1.1.1
string_decoder@1.1.1:
dependencies:
@@ -14974,7 +14829,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom@3.0.0: {}
@@ -14992,60 +14847,60 @@ snapshots:
strip-json-comments@3.1.1: {}
- style-mod@4.1.0: {}
+ style-mod@4.1.2: {}
- stylehacks@7.0.4(postcss@8.4.49):
+ stylehacks@7.0.5(postcss@8.5.3):
dependencies:
- browserslist: 4.23.3
- postcss: 8.4.49
- postcss-selector-parser: 6.1.2
+ browserslist: 4.24.5
+ postcss: 8.5.3
+ postcss-selector-parser: 7.1.0
- stylelint-config-recommended@14.0.1(stylelint@16.12.0(typescript@5.7.2)):
+ stylelint-config-recommended@14.0.1(stylelint@16.19.1(typescript@5.7.3)):
dependencies:
- stylelint: 16.12.0(typescript@5.7.2)
+ stylelint: 16.19.1(typescript@5.7.3)
- stylelint-config-standard@36.0.1(stylelint@16.12.0(typescript@5.7.2)):
+ stylelint-config-standard@36.0.1(stylelint@16.19.1(typescript@5.7.3)):
dependencies:
- stylelint: 16.12.0(typescript@5.7.2)
- stylelint-config-recommended: 14.0.1(stylelint@16.12.0(typescript@5.7.2))
+ stylelint: 16.19.1(typescript@5.7.3)
+ stylelint-config-recommended: 14.0.1(stylelint@16.19.1(typescript@5.7.3))
- stylelint@16.12.0(typescript@5.7.2):
+ stylelint@16.19.1(typescript@5.7.3):
dependencies:
"@csstools/css-parser-algorithms": 3.0.4(@csstools/css-tokenizer@3.0.3)
"@csstools/css-tokenizer": 3.0.3
"@csstools/media-query-list-parser": 4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.0.0)
+ "@csstools/selector-specificity": 5.0.0(postcss-selector-parser@7.1.0)
"@dual-bundle/import-meta-resolve": 4.1.0
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 9.0.0(typescript@5.7.2)
+ cosmiconfig: 9.0.0(typescript@5.7.3)
css-functions-list: 3.2.3
css-tree: 3.1.0
debug: 4.4.0
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
fastest-levenshtein: 1.0.16
- file-entry-cache: 9.1.0
+ file-entry-cache: 10.1.0
global-modules: 2.0.0
globby: 11.1.0
globjoin: 0.1.4
html-tags: 3.3.1
- ignore: 6.0.2
+ ignore: 7.0.4
imurmurhash: 0.1.4
is-plain-object: 5.0.0
- known-css-properties: 0.35.0
+ known-css-properties: 0.36.0
mathml-tag-names: 2.1.3
meow: 13.2.0
micromatch: 4.0.8
normalize-path: 3.0.0
picocolors: 1.1.1
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-resolve-nested-selector: 0.1.6
- postcss-safe-parser: 7.0.1(postcss@8.4.49)
- postcss-selector-parser: 7.0.0
+ postcss-safe-parser: 7.0.1(postcss@8.5.3)
+ postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
- supports-hyperlinks: 3.1.0
+ supports-hyperlinks: 3.2.0
svg-tags: 1.0.0
table: 6.9.0
write-file-atomic: 5.0.1
@@ -15055,17 +14910,17 @@ snapshots:
sucrase@3.35.0:
dependencies:
- "@jridgewell/gen-mapping": 0.3.5
+ "@jridgewell/gen-mapping": 0.3.8
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
+ pirates: 4.0.7
ts-interface-checker: 0.1.13
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:
@@ -15076,7 +14931,7 @@ snapshots:
dependencies:
has-flag: 4.0.0
- supports-hyperlinks@3.1.0:
+ supports-hyperlinks@3.2.0:
dependencies:
has-flag: 4.0.0
supports-color: 7.2.0
@@ -15093,16 +14948,16 @@ snapshots:
css-tree: 2.3.1
css-what: 6.1.0
csso: 5.0.5
- picocolors: 1.0.0
+ picocolors: 1.1.1
- synckit@0.9.1:
+ synckit@0.11.4:
dependencies:
- "@pkgr/core": 0.1.1
- tslib: 2.6.2
+ "@pkgr/core": 0.2.4
+ tslib: 2.8.1
table@6.9.0:
dependencies:
- ajv: 8.12.0
+ ajv: 8.17.1
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -15115,7 +14970,7 @@ snapshots:
chokidar: 3.6.0
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
glob-parent: 6.0.2
is-glob: 4.0.3
jiti: 1.21.7
@@ -15124,13 +14979,13 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.1.1
- postcss: 8.4.49
- postcss-import: 15.1.0(postcss@8.4.49)
- postcss-js: 4.0.1(postcss@8.4.49)
- postcss-load-config: 4.0.2(postcss@8.4.49)
- postcss-nested: 6.2.0(postcss@8.4.49)
+ postcss: 8.5.3
+ postcss-import: 15.1.0(postcss@8.5.3)
+ postcss-js: 4.0.1(postcss@8.5.3)
+ postcss-load-config: 4.0.2(postcss@8.5.3)
+ postcss-nested: 6.2.0(postcss@8.5.3)
postcss-selector-parser: 6.1.2
- resolve: 1.22.8
+ resolve: 1.22.10
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
@@ -15153,10 +15008,10 @@ snapshots:
type-fest: 2.19.0
unique-string: 3.0.0
- terser@5.26.0:
+ terser@5.39.0:
dependencies:
- "@jridgewell/source-map": 0.3.5
- acorn: 8.12.0
+ "@jridgewell/source-map": 0.3.6
+ acorn: 8.14.1
commander: 2.20.3
source-map-support: 0.5.21
@@ -15185,11 +15040,11 @@ snapshots:
tiny-inflate@1.0.3: {}
- tinyexec@0.3.0: {}
+ tinyexec@1.0.1: {}
- tinyglobby@0.2.10:
+ tinyglobby@0.2.13:
dependencies:
- fdir: 6.4.2(picomatch@4.0.2)
+ fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
tinyqueue@2.0.3: {}
@@ -15198,12 +15053,12 @@ snapshots:
dependencies:
os-tmpdir: 1.0.2
- to-fast-properties@2.0.0: {}
-
to-regex-range@5.0.1:
dependencies:
is-number: 7.0.0
+ toidentifier@1.0.1: {}
+
tr46@0.0.3: {}
tr46@1.0.1:
@@ -15212,19 +15067,15 @@ snapshots:
traverse@0.6.8: {}
- ts-api-utils@2.0.0(typescript@5.7.2):
+ ts-api-utils@2.1.0(typescript@5.7.3):
dependencies:
- typescript: 5.7.2
+ typescript: 5.7.3
ts-interface-checker@0.1.13: {}
tslib@1.14.1: {}
- tslib@2.6.2: {}
-
- type-check@0.3.2:
- dependencies:
- prelude-ls: 1.1.2
+ tslib@2.8.1: {}
type-check@0.4.0:
dependencies:
@@ -15238,77 +15089,81 @@ snapshots:
type-fest@2.19.0: {}
- type-fest@3.13.1: {}
+ type-fest@4.41.0: {}
- type-fest@4.9.0: {}
-
- type@1.2.0: {}
-
- type@2.7.2: {}
-
- typed-array-buffer@1.0.0:
+ type-is@2.0.1:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ content-type: 1.0.5
+ media-typer: 1.1.0
+ mime-types: 3.0.1
- typed-array-byte-length@1.0.0:
+ typed-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-typed-array: 1.1.15
- typed-array-byte-offset@1.0.0:
+ typed-array-byte-length@1.0.3:
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
- typed-array-length@1.0.4:
+ typed-array-byte-offset@1.0.4:
dependencies:
- call-bind: 1.0.5
- for-each: 0.3.3
- is-typed-array: 1.1.12
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ reflect.getprototypeof: 1.0.10
- typedarray@0.0.6: {}
-
- typescript-eslint@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
+ typed-array-length@1.0.7:
dependencies:
- "@typescript-eslint/eslint-plugin": 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- "@typescript-eslint/parser": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- "@typescript-eslint/utils": 8.19.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- eslint: 9.17.0(jiti@2.4.2)
- typescript: 5.7.2
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ is-typed-array: 1.1.15
+ possible-typed-array-names: 1.1.0
+ reflect.getprototypeof: 1.0.10
+
+ typescript-eslint@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3):
+ dependencies:
+ "@typescript-eslint/eslint-plugin": 8.32.1(@typescript-eslint/parser@8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ "@typescript-eslint/parser": 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ "@typescript-eslint/utils": 8.32.1(eslint@9.26.0(jiti@2.4.2))(typescript@5.7.3)
+ eslint: 9.26.0(jiti@2.4.2)
+ typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- typescript@5.7.2: {}
+ typescript@5.7.3: {}
- uglify-js@3.17.4:
+ uglify-js@3.19.3:
optional: true
- unbox-primitive@1.0.2:
+ unbox-primitive@1.1.0:
dependencies:
- call-bind: 1.0.5
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
+ call-bound: 1.0.4
+ has-bigints: 1.1.0
+ has-symbols: 1.1.0
+ which-boxed-primitive: 1.1.1
- undici-types@5.26.5: {}
+ undici-types@6.21.0: {}
- 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:
@@ -15324,6 +15179,8 @@ snapshots:
unicorn-magic@0.1.0: {}
+ unicorn-magic@0.3.0: {}
+
unique-string@2.0.0:
dependencies:
crypto-random-string: 2.0.0
@@ -15332,17 +15189,19 @@ snapshots:
dependencies:
crypto-random-string: 4.0.0
- universal-user-agent@7.0.2: {}
+ universal-user-agent@7.0.3: {}
universalify@2.0.1: {}
+ unpipe@1.0.0: {}
+
upath@1.2.0: {}
- update-browserslist-db@1.1.0(browserslist@4.23.3):
+ update-browserslist-db@1.1.3(browserslist@4.24.5):
dependencies:
- browserslist: 4.23.3
- escalade: 3.1.2
- picocolors: 1.0.1
+ browserslist: 4.24.5
+ escalade: 3.2.0
+ picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
@@ -15359,32 +15218,37 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- vite-plugin-pwa@0.21.1(vite@6.0.7(@types/node@20.10.5)(jiti@2.4.2)(terser@5.26.0)(yaml@2.6.1))(workbox-build@7.3.0)(workbox-window@7.3.0):
+ vary@1.1.2: {}
+
+ vite-plugin-pwa@1.0.0(vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(terser@5.39.0)(yaml@2.7.1))(workbox-build@7.3.0)(workbox-window@7.3.0):
dependencies:
- debug: 4.3.6
+ debug: 4.4.0
pretty-bytes: 6.1.1
- tinyglobby: 0.2.10
- vite: 6.0.7(@types/node@20.10.5)(jiti@2.4.2)(terser@5.26.0)(yaml@2.6.1)
+ tinyglobby: 0.2.13
+ vite: 6.3.5(@types/node@22.15.17)(jiti@2.4.2)(terser@5.39.0)(yaml@2.7.1)
workbox-build: 7.3.0
workbox-window: 7.3.0
transitivePeerDependencies:
- supports-color
- vite@6.0.7(@types/node@20.10.5)(jiti@2.4.2)(terser@5.26.0)(yaml@2.6.1):
+ vite@6.3.5(@types/node@22.15.17)(jiti@2.4.2)(terser@5.39.0)(yaml@2.7.1):
dependencies:
- esbuild: 0.24.2
- postcss: 8.4.49
- rollup: 4.30.1
+ esbuild: 0.25.4
+ fdir: 6.4.4(picomatch@4.0.2)
+ picomatch: 4.0.2
+ postcss: 8.5.3
+ rollup: 4.40.2
+ tinyglobby: 0.2.13
optionalDependencies:
- "@types/node": 20.10.5
+ "@types/node": 22.15.17
fsevents: 2.3.3
jiti: 2.4.2
- terser: 5.26.0
- yaml: 2.6.1
+ terser: 5.39.0
+ yaml: 2.7.1
w3c-keyname@2.2.8: {}
- wavesurfer.js@7.8.15: {}
+ wavesurfer.js@7.9.5: {}
wcwidth@1.0.1:
dependencies:
@@ -15405,23 +15269,48 @@ snapshots:
tr46: 1.0.1
webidl-conversions: 4.0.2
- which-boxed-primitive@1.0.2:
+ which-boxed-primitive@1.1.1:
dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
- is-symbol: 1.0.4
+ is-bigint: 1.1.0
+ is-boolean-object: 1.2.2
+ is-number-object: 1.1.1
+ is-string: 1.1.1
+ is-symbol: 1.1.1
+
+ which-builtin-type@1.2.1:
+ dependencies:
+ call-bound: 1.0.4
+ function.prototype.name: 1.1.8
+ has-tostringtag: 1.0.2
+ is-async-function: 2.1.1
+ is-date-object: 1.1.0
+ is-finalizationregistry: 1.1.1
+ is-generator-function: 1.1.0
+ is-regex: 1.2.1
+ is-weakref: 1.1.1
+ isarray: 2.0.5
+ which-boxed-primitive: 1.1.1
+ which-collection: 1.0.2
+ which-typed-array: 1.1.19
+
+ which-collection@1.0.2:
+ dependencies:
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.4
which-module@2.0.1: {}
- which-typed-array@1.1.13:
+ which-typed-array@1.1.19:
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ for-each: 0.3.5
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
which@1.3.1:
dependencies:
@@ -15446,23 +15335,23 @@ snapshots:
workbox-build@7.3.0:
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.27.1
+ "@babel/preset-env": 7.27.2(@babel/core@7.27.1)
+ "@babel/runtime": 7.27.1
+ "@rollup/plugin-babel": 5.3.1(@babel/core@7.27.1)(rollup@2.79.2)
+ "@rollup/plugin-node-resolve": 15.3.1(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
@@ -15569,7 +15458,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: {}
@@ -15579,15 +15468,15 @@ snapshots:
imurmurhash: 0.1.4
signal-exit: 4.1.0
- xml-formatter@3.6.3:
+ xml-formatter@3.6.6:
dependencies:
- xml-parser-xo: 4.1.2
+ xml-parser-xo: 4.1.4
- xml-parser-xo@4.1.2: {}
+ xml-parser-xo@4.1.4: {}
- xmldoc@1.3.0:
+ xmldoc@2.0.1:
dependencies:
- sax: 1.3.0
+ sax: 1.4.1
xtend@4.0.2: {}
@@ -15597,11 +15486,7 @@ snapshots:
yallist@3.1.1: {}
- yallist@4.0.0: {}
-
- yaml@2.5.1: {}
-
- yaml@2.6.1: {}
+ yaml@2.7.1: {}
yargs-parser@18.1.3:
dependencies:
@@ -15629,7 +15514,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
@@ -15639,7 +15524,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
@@ -15648,6 +15533,12 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.2.1: {}
- yoctocolors@2.1.0: {}
+ yoctocolors@2.1.1: {}
+
+ zod-to-json-schema@3.24.5(zod@3.24.4):
+ dependencies:
+ zod: 3.24.4
+
+ zod@3.24.4: {}
diff --git a/themes/cp_app/episode/comment.php b/themes/cp_app/episode/comment.php
index 5628862c..462082d2 100644
--- a/themes/cp_app/episode/comment.php
+++ b/themes/cp_app/episode/comment.php
@@ -6,7 +6,9 @@
= icon(
'arrow-left-line',
- 'mr-2 text-lg',
+ [
+ 'class' => 'mr-2 text-lg',
+ ],
) . lang('Comment.back_to_comments') ?>
diff --git a/themes/cp_app/post/_partials/actions.php b/themes/cp_app/post/_partials/actions.php
index 3eb6334d..cab16515 100644
--- a/themes/cp_app/post/_partials/actions.php
+++ b/themes/cp_app/post/_partials/actions.php
@@ -14,14 +14,22 @@
]),
],
) ?>
-
+ is_private): ?>
+
+
+
+
diff --git a/themes/cp_app/post/_partials/reply.php b/themes/cp_app/post/_partials/reply.php
index fecee07a..6c3db6d5 100644
--- a/themes/cp_app/post/_partials/reply.php
+++ b/themes/cp_app/post/_partials/reply.php
@@ -11,7 +11,9 @@
->display_name) ?>@= esc($reply
->actor->username) .
($reply->actor->is_local ? '' : '@' . esc($reply->actor->domain)) ?>
- = relative_time($reply->published_at, 'flex-shrink-0 ml-auto text-xs text-skin-muted') ?>
+
+ = relative_time($reply->published_at) ?>= $reply->is_private ? icon('lock-fill') : icon('earth-fill') ?>
+
= $reply->message_html ?>
preview_card_id): ?>
diff --git a/themes/cp_app/post/_partials/reply_actions.php b/themes/cp_app/post/_partials/reply_actions.php
index 7077ddef..2ca35fc6 100644
--- a/themes/cp_app/post/_partials/reply_actions.php
+++ b/themes/cp_app/post/_partials/reply_actions.php
@@ -16,14 +16,22 @@ if (can_user_interact()): ?>
]),
],
) ?>
-
+ is_private): ?>
+
+
+
+