@@ -90,7 +90,7 @@ import XNavbarH from '@/ui/_common_/navbar-h.vue';
import XMobileFooterMenu from '@/ui/_common_/mobile-footer-menu.vue';
import XTitlebar from '@/ui/_common_/titlebar.vue';
import XPreferenceRestore from '@/ui/_common_/PreferenceRestore.vue';
-import XReloadSuggest from '@/ui/_common_/ReloadSuggest.vue';
+import XReloadSuggestion from '@/ui/_common_/ReloadSuggestion.vue';
import * as os from '@/os.js';
import { $i } from '@/i.js';
import { i18n } from '@/i18n.js';
diff --git a/packages/frontend/src/ui/universal.vue b/packages/frontend/src/ui/universal.vue
index 7529f21ffb..727fe08989 100644
--- a/packages/frontend/src/ui/universal.vue
+++ b/packages/frontend/src/ui/universal.vue
@@ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-
+
@@ -39,7 +39,7 @@ import XCommon from './_common_/common.vue';
import type { PageMetadata } from '@/page.js';
import XMobileFooterMenu from '@/ui/_common_/mobile-footer-menu.vue';
import XPreferenceRestore from '@/ui/_common_/PreferenceRestore.vue';
-import XReloadSuggest from '@/ui/_common_/ReloadSuggest.vue';
+import XReloadSuggestion from '@/ui/_common_/ReloadSuggestion.vue';
import XTitlebar from '@/ui/_common_/titlebar.vue';
import XSidebar from '@/ui/_common_/navbar.vue';
import * as os from '@/os.js';
diff --git a/packages/frontend/src/utility/admin-lookup.ts b/packages/frontend/src/utility/admin-lookup.ts
index 7405e229fe..eccc88d8a9 100644
--- a/packages/frontend/src/utility/admin-lookup.ts
+++ b/packages/frontend/src/utility/admin-lookup.ts
@@ -12,7 +12,7 @@ export async function lookupUser() {
const { canceled, result } = await os.inputText({
title: i18n.ts.usernameOrUserId,
});
- if (canceled) return;
+ if (canceled || result == null) return;
const show = (user) => {
os.pageWindow(`/admin/user/${user.id}`);
@@ -46,7 +46,7 @@ export async function lookupUserByEmail() {
title: i18n.ts.emailAddress,
type: 'email',
});
- if (canceled) return;
+ if (canceled || result == null) return;
try {
const user = await os.apiWithDialog('admin/accounts/find-by-email', { email: result });
diff --git a/packages/frontend/src/utility/chart-vline.ts b/packages/frontend/src/utility/chart-vline.ts
index 465ca591c6..2fe4bdb83b 100644
--- a/packages/frontend/src/utility/chart-vline.ts
+++ b/packages/frontend/src/utility/chart-vline.ts
@@ -8,9 +8,10 @@ import type { Plugin } from 'chart.js';
export const chartVLine = (vLineColor: string) => ({
id: 'vLine',
beforeDraw(chart, args, options) {
- if (chart.tooltip?._active?.length) {
+ const tooltip = chart.tooltip as any;
+ if (tooltip?._active?.length) {
const ctx = chart.ctx;
- const xs = chart.tooltip._active.map(a => a.element.x);
+ const xs = tooltip._active.map(a => a.element.x);
const x = xs.reduce((a, b) => a + b, 0) / xs.length;
const topY = chart.scales.y.top;
const bottomY = chart.scales.y.bottom;
diff --git a/packages/frontend/src/utility/get-note-menu.ts b/packages/frontend/src/utility/get-note-menu.ts
index 11c87dc653..f7b56040cc 100644
--- a/packages/frontend/src/utility/get-note-menu.ts
+++ b/packages/frontend/src/utility/get-note-menu.ts
@@ -179,7 +179,7 @@ export function getNoteMenu(props: {
translating: Ref;
currentClip?: Misskey.entities.Clip;
}) {
- const appearNote = getAppearNote(props.note);
+ const appearNote = getAppearNote(props.note) ?? props.note;
const link = appearNote.url ?? appearNote.uri;
const cleanups = [] as (() => void)[];
@@ -554,7 +554,7 @@ export function getRenoteMenu(props: {
renoteButton: ShallowRef;
mock?: boolean;
}) {
- const appearNote = getAppearNote(props.note);
+ const appearNote = getAppearNote(props.note) ?? props.note;
const channelRenoteItems: MenuItem[] = [];
const normalRenoteItems: MenuItem[] = [];
diff --git a/packages/frontend/src/utility/lookup.ts b/packages/frontend/src/utility/lookup.ts
index 47d0db125d..9baf40b731 100644
--- a/packages/frontend/src/utility/lookup.ts
+++ b/packages/frontend/src/utility/lookup.ts
@@ -8,6 +8,7 @@ import * as os from '@/os.js';
import { misskeyApi } from '@/utility/misskey-api.js';
import { i18n } from '@/i18n.js';
import { mainRouter } from '@/router.js';
+import { acct } from '@/filters/user';
export async function lookup(router?: Router) {
const _router = router ?? mainRouter;
@@ -38,7 +39,7 @@ export async function lookup(router?: Router) {
if (res.type === 'User') {
_router.push('/@:acct/:page?', {
params: {
- acct: `${res.object.username}@${res.object.host}`,
+ acct: acct(res.object),
},
});
} else if (res.type === 'Note') {
diff --git a/packages/frontend/src/utility/popout.ts b/packages/frontend/src/utility/popout.ts
index 5b141222e8..7e0222c459 100644
--- a/packages/frontend/src/utility/popout.ts
+++ b/packages/frontend/src/utility/popout.ts
@@ -20,8 +20,8 @@ export function popout(path: string, w?: HTMLElement) {
} else {
const width = 400;
const height = 500;
- const x = window.top.outerHeight / 2 + window.top.screenY - (height / 2);
- const y = window.top.outerWidth / 2 + window.top.screenX - (width / 2);
+ const x = window.top == null ? 0 : window.top.outerHeight / 2 + window.top.screenY - (height / 2);
+ const y = window.top == null ? 0 : window.top.outerWidth / 2 + window.top.screenX - (width / 2);
window.open(url, url,
`width=${width}, height=${height}, top=${x}, left=${y}`);
}
diff --git a/packages/frontend/src/utility/sticky-sidebar.ts b/packages/frontend/src/utility/sticky-sidebar.ts
index 867c9b8324..435555896f 100644
--- a/packages/frontend/src/utility/sticky-sidebar.ts
+++ b/packages/frontend/src/utility/sticky-sidebar.ts
@@ -3,6 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
+/*
export class StickySidebar {
private lastScrollTop = 0;
private container: HTMLElement;
@@ -53,3 +54,4 @@ export class StickySidebar {
this.lastScrollTop = scrollTop <= 0 ? 0 : scrollTop;
}
}
+*/
diff --git a/packages/frontend/test/aiscript/ui.test.ts b/packages/frontend/test/aiscript/ui.test.ts
index dc4041b135..44a50aaa62 100644
--- a/packages/frontend/test/aiscript/ui.test.ts
+++ b/packages/frontend/test/aiscript/ui.test.ts
@@ -316,7 +316,6 @@ describe('AiScript UI API', () => {
describe('textInput', () => {
test.concurrent('all options', async () => {
- // https://github.com/aiscript-dev/aiscript/pull/948
const { root, get, outputs } = await exe(`
let text_input = Ui:C:textInput({
onInput: print
@@ -357,7 +356,6 @@ describe('AiScript UI API', () => {
describe('textarea', () => {
test.concurrent('all options', async () => {
- // https://github.com/aiscript-dev/aiscript/pull/948
const { root, get, outputs } = await exe(`
let textarea = Ui:C:textarea({
onInput: print
@@ -398,7 +396,6 @@ describe('AiScript UI API', () => {
describe('numberInput', () => {
test.concurrent('all options', async () => {
- // https://github.com/aiscript-dev/aiscript/pull/948
const { root, get, outputs } = await exe(`
let number_input = Ui:C:numberInput({
onInput: print
@@ -560,7 +557,6 @@ describe('AiScript UI API', () => {
describe('switch', () => {
test.concurrent('all options', async () => {
- // https://github.com/aiscript-dev/aiscript/pull/948
const { root, get, outputs } = await exe(`
let switch = Ui:C:switch({
onChange: print
@@ -601,7 +597,6 @@ describe('AiScript UI API', () => {
describe('select', () => {
test.concurrent('all options', async () => {
- // https://github.com/aiscript-dev/aiscript/pull/948
const { root, get, outputs } = await exe(`
let select = Ui:C:select({
items: [
diff --git a/packages/icons-subsetter/package.json b/packages/icons-subsetter/package.json
index a8dcb50708..fb536991fb 100644
--- a/packages/icons-subsetter/package.json
+++ b/packages/icons-subsetter/package.json
@@ -11,16 +11,16 @@
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
- "@types/node": "22.17.0",
+ "@types/node": "22.17.2",
"@types/wawoff2": "1.0.2",
- "@typescript-eslint/eslint-plugin": "8.38.0",
- "@typescript-eslint/parser": "8.38.0"
+ "@typescript-eslint/eslint-plugin": "8.40.0",
+ "@typescript-eslint/parser": "8.40.0"
},
"dependencies": {
"@tabler/icons-webfont": "3.34.1",
- "harfbuzzjs": "0.4.8",
+ "harfbuzzjs": "0.4.9",
"tiny-glob": "0.2.9",
- "tsx": "4.20.3",
+ "tsx": "4.20.4",
"typescript": "5.9.2",
"wawoff2": "2.0.1"
},
diff --git a/packages/misskey-bubble-game/package.json b/packages/misskey-bubble-game/package.json
index 8533cdd6a8..2f445e7d4a 100644
--- a/packages/misskey-bubble-game/package.json
+++ b/packages/misskey-bubble-game/package.json
@@ -22,15 +22,15 @@
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
- "@types/matter-js": "0.19.8",
+ "@types/matter-js": "0.20.0",
"@types/seedrandom": "3.0.8",
- "@types/node": "22.17.0",
- "@typescript-eslint/eslint-plugin": "8.38.0",
- "@typescript-eslint/parser": "8.38.0",
+ "@types/node": "22.17.2",
+ "@typescript-eslint/eslint-plugin": "8.40.0",
+ "@typescript-eslint/parser": "8.40.0",
"nodemon": "3.1.10",
"execa": "9.6.0",
"typescript": "5.9.2",
- "esbuild": "0.25.8",
+ "esbuild": "0.25.9",
"glob": "11.0.3"
},
"files": [
diff --git a/packages/misskey-bubble-game/src/game.ts b/packages/misskey-bubble-game/src/game.ts
index 7f230e39cb..33a753b87e 100644
--- a/packages/misskey-bubble-game/src/game.ts
+++ b/packages/misskey-bubble-game/src/game.ts
@@ -186,7 +186,7 @@ export class DropAndFusionGame extends EventEmitter<{
}
private createBody(mono: Mono, x: number, y: number) {
- const options: Matter.IBodyDefinition = {
+ const options = {
label: mono.id,
density: this.gameMode === 'space' ? 0.01 : ((mono.sizeX * mono.sizeY) / 10000),
restitution: this.gameMode === 'space' ? 0.5 : 0.2,
@@ -196,7 +196,7 @@ export class DropAndFusionGame extends EventEmitter<{
slop: this.gameMode === 'space' ? 0.01 : 0.7,
//mass: 0,
render: this.getMonoRenderOptions ? this.getMonoRenderOptions(mono) : undefined,
- };
+ } satisfies Matter.IChamferableBodyDefinition;
if (mono.shape === 'circle') {
return Matter.Bodies.circle(x, y, mono.sizeX / 2, options);
} else if (mono.shape === 'rectangle') {
diff --git a/packages/misskey-js/generator/package.json b/packages/misskey-js/generator/package.json
index 4fb5993420..877af79369 100644
--- a/packages/misskey-js/generator/package.json
+++ b/packages/misskey-js/generator/package.json
@@ -8,13 +8,13 @@
},
"devDependencies": {
"@readme/openapi-parser": "5.0.1",
- "@types/node": "22.17.1",
- "@typescript-eslint/eslint-plugin": "8.39.0",
- "@typescript-eslint/parser": "8.39.0",
+ "@types/node": "22.17.2",
+ "@typescript-eslint/eslint-plugin": "8.40.0",
+ "@typescript-eslint/parser": "8.40.0",
"openapi-types": "12.1.3",
- "openapi-typescript": "7.8.0",
+ "openapi-typescript": "7.9.1",
"ts-case-convert": "2.1.0",
- "tsx": "4.20.3",
+ "tsx": "4.20.5",
"typescript": "5.9.2"
},
"files": [
diff --git a/packages/misskey-js/package.json b/packages/misskey-js/package.json
index c15c33d735..60dcca35ee 100644
--- a/packages/misskey-js/package.json
+++ b/packages/misskey-js/package.json
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "misskey-js",
- "version": "2025.8.0-beta.3",
+ "version": "2025.8.0-beta.4",
"description": "Misskey SDK for JavaScript",
"license": "MIT",
"main": "./built/index.js",
@@ -35,12 +35,12 @@
"directory": "packages/misskey-js"
},
"devDependencies": {
- "@microsoft/api-extractor": "7.52.10",
- "@types/node": "22.17.1",
- "@typescript-eslint/eslint-plugin": "8.39.0",
- "@typescript-eslint/parser": "8.39.0",
+ "@microsoft/api-extractor": "7.52.11",
+ "@types/node": "22.17.2",
+ "@typescript-eslint/eslint-plugin": "8.40.0",
+ "@typescript-eslint/parser": "8.40.0",
"@vitest/coverage-v8": "3.2.4",
- "esbuild": "0.25.8",
+ "esbuild": "0.25.9",
"execa": "9.6.0",
"glob": "11.0.3",
"ncp": "2.0.0",
diff --git a/packages/misskey-reversi/package.json b/packages/misskey-reversi/package.json
index 3ede470f87..028f191313 100644
--- a/packages/misskey-reversi/package.json
+++ b/packages/misskey-reversi/package.json
@@ -22,13 +22,13 @@
"lint": "pnpm typecheck && pnpm eslint"
},
"devDependencies": {
- "@types/node": "22.17.0",
- "@typescript-eslint/eslint-plugin": "8.38.0",
- "@typescript-eslint/parser": "8.38.0",
+ "@types/node": "22.17.2",
+ "@typescript-eslint/eslint-plugin": "8.40.0",
+ "@typescript-eslint/parser": "8.40.0",
"execa": "9.6.0",
"nodemon": "3.1.10",
"typescript": "5.9.2",
- "esbuild": "0.25.8",
+ "esbuild": "0.25.9",
"glob": "11.0.3"
},
"files": [
diff --git a/packages/sw/package.json b/packages/sw/package.json
index 8a2a7168af..f943de0d5a 100644
--- a/packages/sw/package.json
+++ b/packages/sw/package.json
@@ -9,12 +9,12 @@
"lint": "pnpm typecheck && pnpm eslint"
},
"dependencies": {
- "esbuild": "0.25.8",
+ "esbuild": "0.25.9",
"idb-keyval": "6.2.2",
"misskey-js": "workspace:*"
},
"devDependencies": {
- "@typescript-eslint/parser": "8.38.0",
+ "@typescript-eslint/parser": "8.40.0",
"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.74",
"eslint-plugin-import": "2.32.0",
"nodemon": "3.1.10",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 0f6f3f707e..66f42b70e3 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -19,11 +19,11 @@ importers:
.:
dependencies:
cssnano:
- specifier: 7.1.0
- version: 7.1.0(postcss@8.5.6)
+ specifier: 7.1.1
+ version: 7.1.1(postcss@8.5.6)
esbuild:
- specifier: 0.25.8
- version: 0.25.8
+ specifier: 0.25.9
+ version: 0.25.9
execa:
specifier: 9.6.0
version: 9.6.0
@@ -54,16 +54,16 @@ importers:
devDependencies:
'@misskey-dev/eslint-plugin':
specifier: 2.1.0
- version: 2.1.0(@eslint/compat@1.1.1)(@stylistic/eslint-plugin@2.13.0(eslint@9.33.0)(typescript@5.9.2))(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2))(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0))(eslint@9.33.0)(globals@16.3.0)
+ version: 2.1.0(@eslint/compat@1.1.1)(@stylistic/eslint-plugin@2.13.0(eslint@9.34.0)(typescript@5.9.2))(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2))(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0))(eslint@9.34.0)(globals@16.3.0)
'@types/node':
- specifier: 22.17.1
- version: 22.17.1
+ specifier: 22.17.2
+ version: 22.17.2
'@typescript-eslint/eslint-plugin':
- specifier: 8.39.0
- version: 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.39.0
- version: 8.39.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
cross-env:
specifier: 7.0.3
version: 7.0.3
@@ -71,8 +71,8 @@ importers:
specifier: 14.5.4
version: 14.5.4
eslint:
- specifier: 9.33.0
- version: 9.33.0
+ specifier: 9.34.0
+ version: 9.34.0
globals:
specifier: 16.3.0
version: 16.3.0
@@ -80,8 +80,8 @@ importers:
specifier: 2.0.0
version: 2.0.0
pnpm:
- specifier: 10.14.0
- version: 10.14.0
+ specifier: 10.15.0
+ version: 10.15.0
start-server-and-test:
specifier: 2.0.13
version: 2.0.13
@@ -93,11 +93,11 @@ importers:
packages/backend:
dependencies:
'@aws-sdk/client-s3':
- specifier: 3.864.0
- version: 3.864.0
+ specifier: 3.873.0
+ version: 3.873.0
'@aws-sdk/lib-storage':
- specifier: 3.864.0
- version: 3.864.0(@aws-sdk/client-s3@3.864.0)
+ specifier: 3.873.0
+ version: 3.873.0(@aws-sdk/client-s3@3.873.0)
'@discordapp/twemoji':
specifier: 16.0.1
version: 16.0.1
@@ -163,10 +163,10 @@ importers:
version: 2.5.0
'@swc/cli':
specifier: 0.7.8
- version: 0.7.8(@swc/core@1.13.3)(chokidar@4.0.3)
+ version: 0.7.8(@swc/core@1.13.4)(chokidar@4.0.3)
'@swc/core':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@twemoji/parser':
specifier: 16.0.0
version: 16.0.0
@@ -195,8 +195,8 @@ importers:
specifier: 1.20.3
version: 1.20.3
bullmq:
- specifier: 5.56.9
- version: 5.56.9
+ specifier: 5.58.1
+ version: 5.58.1
cacheable-lookup:
specifier: 7.0.0
version: 7.0.0
@@ -204,8 +204,8 @@ importers:
specifier: 9.0.2
version: 9.0.2
chalk:
- specifier: 5.5.0
- version: 5.5.0
+ specifier: 5.6.0
+ version: 5.6.0
chalk-template:
specifier: 1.1.0
version: 1.1.0
@@ -228,8 +228,8 @@ importers:
specifier: 0.1.21
version: 0.1.21
fastify:
- specifier: 5.4.0
- version: 5.4.0
+ specifier: 5.5.0
+ version: 5.5.0
fastify-raw-body:
specifier: 5.0.0
version: 5.0.0
@@ -291,8 +291,8 @@ importers:
specifier: 11.0.1
version: 11.0.1
meilisearch:
- specifier: 0.51.0
- version: 0.51.0
+ specifier: 0.52.0
+ version: 0.52.0
mfm-js:
specifier: 0.25.0
version: 0.25.0
@@ -339,8 +339,8 @@ importers:
specifier: 0.0.14
version: 0.0.14
otpauth:
- specifier: 9.4.0
- version: 9.4.0
+ specifier: 9.4.1
+ version: 9.4.1
parse5:
specifier: 7.3.0
version: 7.3.0
@@ -417,8 +417,8 @@ importers:
specifier: 1.6.0
version: 1.6.0
tmp:
- specifier: 0.2.4
- version: 0.2.4
+ specifier: 0.2.5
+ version: 0.2.5
tsc-alias:
specifier: 1.8.16
version: 1.8.16
@@ -426,8 +426,8 @@ importers:
specifier: 4.2.0
version: 4.2.0
typeorm:
- specifier: 0.3.25
- version: 0.3.25(patch_hash=2677b97a423e157945c154e64183d3ae2eb44dfa9cb0e5ce731a7612f507bb56)(ioredis@5.7.0)(pg@8.16.3)(reflect-metadata@0.2.2)
+ specifier: 0.3.26
+ version: 0.3.26(patch_hash=2677b97a423e157945c154e64183d3ae2eb44dfa9cb0e5ce731a7612f507bb56)(ioredis@5.7.0)(pg@8.16.3)(reflect-metadata@0.2.2)
typescript:
specifier: 5.9.2
version: 5.9.2
@@ -454,14 +454,14 @@ importers:
specifier: 10.4.20
version: 10.4.20(@nestjs/common@11.1.6(reflect-metadata@0.2.2)(rxjs@7.8.2))(@nestjs/core@11.1.6)
'@sentry/vue':
- specifier: 9.45.0
- version: 9.45.0(vue@3.5.18(typescript@5.9.2))
+ specifier: 9.46.0
+ version: 9.46.0(vue@3.5.19(typescript@5.9.2))
'@simplewebauthn/types':
specifier: 12.0.0
version: 12.0.0
'@swc/jest':
specifier: 0.2.39
- version: 0.2.39(@swc/core@1.13.3)
+ version: 0.2.39(@swc/core@1.13.4)
'@types/accepts':
specifier: 1.3.7
version: 1.3.7
@@ -511,11 +511,11 @@ importers:
specifier: 0.7.34
version: 0.7.34
'@types/node':
- specifier: 22.17.1
- version: 22.17.1
+ specifier: 22.17.2
+ version: 22.17.2
'@types/nodemailer':
- specifier: 6.4.17
- version: 6.4.17
+ specifier: 6.4.19
+ version: 6.4.19
'@types/oauth':
specifier: 0.9.6
version: 0.9.6
@@ -574,11 +574,11 @@ importers:
specifier: 8.18.1
version: 8.18.1
'@typescript-eslint/eslint-plugin':
- specifier: 8.39.0
- version: 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.39.0
- version: 8.39.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
aws-sdk-client-mock:
specifier: 4.1.0
version: 4.1.0
@@ -587,7 +587,7 @@ importers:
version: 7.0.3
eslint-plugin-import:
specifier: 2.32.0
- version: 2.32.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)
+ version: 2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)
execa:
specifier: 8.0.1
version: 8.0.1
@@ -596,7 +596,7 @@ importers:
version: 9.0.0
jest:
specifier: 29.7.0
- version: 29.7.0(@types/node@22.17.1)
+ version: 29.7.0(@types/node@22.17.2)
jest-mock:
specifier: 29.7.0
version: 29.7.0
@@ -617,38 +617,38 @@ importers:
specifier: 1.3.11
version: 1.3.11
'@swc/core-darwin-arm64':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-darwin-x64':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-freebsd-x64':
specifier: 1.3.11
version: 1.3.11
'@swc/core-linux-arm-gnueabihf':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-linux-arm64-gnu':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-linux-arm64-musl':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-linux-x64-gnu':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-linux-x64-musl':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-win32-arm64-msvc':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-win32-ia32-msvc':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@swc/core-win32-x64-msvc':
- specifier: 1.13.3
- version: 1.13.3
+ specifier: 1.13.4
+ version: 1.13.4
'@tensorflow/tfjs':
specifier: 4.22.0
version: 4.22.0(encoding@0.1.13)(seedrandom@3.0.5)
@@ -720,16 +720,16 @@ importers:
version: 2024.1.0
'@rollup/plugin-json':
specifier: 6.1.0
- version: 6.1.0(rollup@4.46.2)
+ version: 6.1.0(rollup@4.48.0)
'@rollup/plugin-replace':
specifier: 6.0.2
- version: 6.0.2(rollup@4.46.2)
+ version: 6.0.2(rollup@4.48.0)
'@rollup/pluginutils':
specifier: 5.2.0
- version: 5.2.0(rollup@4.46.2)
+ version: 5.2.0(rollup@4.48.0)
'@sentry/vue':
- specifier: 10.0.0
- version: 10.0.0(vue@3.5.18(typescript@5.9.2))
+ specifier: 10.5.0
+ version: 10.5.0(vue@3.5.19(typescript@5.9.2))
'@syuilo/aiscript':
specifier: 1.1.0
version: 1.1.0
@@ -741,16 +741,16 @@ importers:
version: 16.0.0
'@vitejs/plugin-vue':
specifier: 6.0.1
- version: 6.0.1(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))(vue@3.5.18(typescript@5.9.2))
+ version: 6.0.1(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))(vue@3.5.19(typescript@5.9.2))
'@vue/compiler-sfc':
- specifier: 3.5.18
- version: 3.5.18
+ specifier: 3.5.19
+ version: 3.5.19
aiscript-vscode:
specifier: github:aiscript-dev/aiscript-vscode#v0.1.15
version: https://codeload.github.com/aiscript-dev/aiscript-vscode/tar.gz/c3cde89e79a41d93540cf8a48cd619c3f2dcb1b7
analytics:
- specifier: 0.8.16
- version: 0.8.16(@types/dlv@1.1.5)
+ specifier: 0.8.19
+ version: 0.8.19(@types/dlv@1.1.5)
astring:
specifier: 1.9.0
version: 1.9.0
@@ -821,8 +821,8 @@ importers:
specifier: 2.2.3
version: 2.2.3
magic-string:
- specifier: 0.30.17
- version: 0.30.17
+ specifier: 0.30.18
+ version: 0.30.18
matter-js:
specifier: 0.20.0
version: 0.20.0
@@ -845,17 +845,17 @@ importers:
specifier: 2.3.1
version: 2.3.1
rollup:
- specifier: 4.46.2
- version: 4.46.2
+ specifier: 4.48.0
+ version: 4.48.0
sanitize-html:
specifier: 2.17.0
version: 2.17.0
sass:
- specifier: 1.89.2
- version: 1.89.2
+ specifier: 1.90.0
+ version: 1.90.0
shiki:
- specifier: 3.9.1
- version: 3.9.1
+ specifier: 3.11.0
+ version: 3.11.0
strict-event-emitter-types:
specifier: 2.0.0
version: 2.0.0
@@ -882,16 +882,16 @@ importers:
version: 5.9.2
v-code-diff:
specifier: 1.13.1
- version: 1.13.1(vue@3.5.18(typescript@5.9.2))
+ version: 1.13.1(vue@3.5.19(typescript@5.9.2))
vite:
- specifier: 7.0.6
- version: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ specifier: 7.1.3
+ version: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
vue:
- specifier: 3.5.18
- version: 3.5.18(typescript@5.9.2)
+ specifier: 3.5.19
+ version: 3.5.19(typescript@5.9.2)
vuedraggable:
specifier: next
- version: 4.1.0(vue@3.5.18(typescript@5.9.2))
+ version: 4.1.0(vue@3.5.19(typescript@5.9.2))
wanakana:
specifier: 5.3.1
version: 5.3.1
@@ -904,61 +904,61 @@ importers:
version: 9.0.8
'@storybook/addon-essentials':
specifier: 8.6.14
- version: 8.6.14(@types/react@18.0.28)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(@types/react@18.0.28)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/addon-interactions':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/addon-links':
- specifier: 9.1.0
- version: 9.1.0(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ specifier: 9.1.3
+ version: 9.1.3(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/addon-mdx-gfm':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/addon-storysource':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/blocks':
specifier: 8.6.14
- version: 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/components':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/core-events':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/manager-api':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/preview-api':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/react':
- specifier: 9.1.0
- version: 9.1.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(typescript@5.9.2)
+ specifier: 9.1.3
+ version: 9.1.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(typescript@5.9.2)
'@storybook/react-vite':
- specifier: 9.1.0
- version: 9.1.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(rollup@4.46.2)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(typescript@5.9.2)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ specifier: 9.1.3
+ version: 9.1.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(rollup@4.48.0)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(typescript@5.9.2)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
'@storybook/test':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/theming':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/types':
specifier: 8.6.14
- version: 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ version: 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@storybook/vue3':
- specifier: 9.1.0
- version: 9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vue@3.5.18(typescript@5.9.2))
+ specifier: 9.1.3
+ version: 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vue@3.5.19(typescript@5.9.2))
'@storybook/vue3-vite':
- specifier: 9.1.0
- version: 9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))(vue@3.5.18(typescript@5.9.2))
+ specifier: 9.1.3
+ version: 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))(vue@3.5.19(typescript@5.9.2))
'@tabler/icons-webfont':
specifier: 3.34.1
version: 3.34.1
'@testing-library/vue':
specifier: 8.1.0
- version: 8.1.0(@vue/compiler-sfc@3.5.18)(@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))
+ version: 8.1.0(@vue/compiler-sfc@3.5.19)(@vue/server-renderer@3.5.19(vue@3.5.19(typescript@5.9.2)))(vue@3.5.19(typescript@5.9.2))
'@types/canvas-confetti':
specifier: 1.9.0
version: 1.9.0
@@ -966,14 +966,14 @@ importers:
specifier: 1.0.8
version: 1.0.8
'@types/matter-js':
- specifier: 0.19.8
- version: 0.19.8
+ specifier: 0.20.0
+ version: 0.20.0
'@types/micromatch':
specifier: 4.0.9
version: 4.0.9
'@types/node':
- specifier: 22.17.0
- version: 22.17.0
+ specifier: 22.17.2
+ version: 22.17.2
'@types/punycode.js':
specifier: npm:@types/punycode@2.1.4
version: '@types/punycode@2.1.4'
@@ -993,20 +993,20 @@ importers:
specifier: 8.18.1
version: 8.18.1
'@typescript-eslint/eslint-plugin':
- specifier: 8.38.0
- version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
'@vitest/coverage-v8':
specifier: 3.2.4
- version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
'@vue/compiler-core':
- specifier: 3.5.18
- version: 3.5.18
+ specifier: 3.5.19
+ version: 3.5.19
'@vue/runtime-core':
- specifier: 3.5.18
- version: 3.5.18
+ specifier: 3.5.19
+ version: 3.5.19
acorn:
specifier: 8.15.0
version: 8.15.0
@@ -1014,14 +1014,14 @@ importers:
specifier: 10.0.0
version: 10.0.0
cypress:
- specifier: 14.5.3
- version: 14.5.3
+ specifier: 14.5.4
+ version: 14.5.4
eslint-plugin-import:
specifier: 2.32.0
- version: 2.32.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)
+ version: 2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)
eslint-plugin-vue:
specifier: 10.4.0
- version: 10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(vue-eslint-parser@10.2.0(eslint@9.33.0))
+ version: 10.4.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(vue-eslint-parser@10.2.0(eslint@9.34.0))
fast-glob:
specifier: 3.3.3
version: 3.3.3
@@ -1038,11 +1038,11 @@ importers:
specifier: 10.0.3
version: 10.0.3
msw:
- specifier: 2.10.4
- version: 2.10.4(@types/node@22.17.0)(typescript@5.9.2)
+ specifier: 2.10.5
+ version: 2.10.5(@types/node@22.17.2)(typescript@5.9.2)
msw-storybook-addon:
specifier: 2.0.5
- version: 2.0.5(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))
+ version: 2.0.5(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))
nodemon:
specifier: 3.1.10
version: 3.1.10
@@ -1059,35 +1059,35 @@ importers:
specifier: 3.0.5
version: 3.0.5
start-server-and-test:
- specifier: 2.0.12
- version: 2.0.12
+ specifier: 2.0.13
+ version: 2.0.13
storybook:
- specifier: 9.1.0
- version: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ specifier: 9.1.3
+ version: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
storybook-addon-misskey-theme:
specifier: github:misskey-dev/storybook-addon-misskey-theme
- version: https://codeload.github.com/misskey-dev/storybook-addon-misskey-theme/tar.gz/cf583db098365b2ccc81a82f63ca9c93bc32b640(1169897c5e200f76aeb2e7696f1450e0)
+ version: https://codeload.github.com/misskey-dev/storybook-addon-misskey-theme/tar.gz/cf583db098365b2ccc81a82f63ca9c93bc32b640(259986330117e371e80190ddf50a33b9)
tsx:
- specifier: 4.20.3
- version: 4.20.3
+ specifier: 4.20.4
+ version: 4.20.4
vite-plugin-turbosnap:
specifier: 1.0.3
version: 1.0.3
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
vitest-fetch-mock:
specifier: 0.4.5
- version: 0.4.5(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ version: 0.4.5(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
vue-component-type-helpers:
- specifier: 3.0.5
- version: 3.0.5
+ specifier: 3.0.6
+ version: 3.0.6
vue-eslint-parser:
specifier: 10.2.0
- version: 10.2.0(eslint@9.33.0)
+ version: 10.2.0(eslint@9.34.0)
vue-tsc:
- specifier: 3.0.5
- version: 3.0.5(typescript@5.9.2)
+ specifier: 3.0.6
+ version: 3.0.6(typescript@5.9.2)
packages/frontend-builder:
dependencies:
@@ -1099,7 +1099,7 @@ importers:
version: 0.30.17
vite:
specifier: 7.0.6
- version: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ version: 7.0.6(@types/node@22.17.0)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
devDependencies:
'@types/estree':
specifier: 1.0.8
@@ -1109,10 +1109,10 @@ importers:
version: 22.17.0
'@typescript-eslint/eslint-plugin':
specifier: 8.38.0
- version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ version: 8.38.0(eslint@9.34.0)(typescript@5.9.2)
rollup:
specifier: 4.46.2
version: 4.46.2
@@ -1127,22 +1127,22 @@ importers:
version: 16.0.1
'@rollup/plugin-json':
specifier: 6.1.0
- version: 6.1.0(rollup@4.46.2)
+ version: 6.1.0(rollup@4.48.0)
'@rollup/plugin-replace':
specifier: 6.0.2
- version: 6.0.2(rollup@4.46.2)
+ version: 6.0.2(rollup@4.48.0)
'@rollup/pluginutils':
specifier: 5.2.0
- version: 5.2.0(rollup@4.46.2)
+ version: 5.2.0(rollup@4.48.0)
'@twemoji/parser':
specifier: 16.0.0
version: 16.0.0
'@vitejs/plugin-vue':
specifier: 6.0.1
- version: 6.0.1(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))(vue@3.5.18(typescript@5.9.2))
+ version: 6.0.1(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))(vue@3.5.19(typescript@5.9.2))
'@vue/compiler-sfc':
- specifier: 3.5.18
- version: 3.5.18
+ specifier: 3.5.19
+ version: 3.5.19
astring:
specifier: 1.9.0
version: 1.9.0
@@ -1171,14 +1171,14 @@ importers:
specifier: 2.3.1
version: 2.3.1
rollup:
- specifier: 4.46.2
- version: 4.46.2
+ specifier: 4.48.0
+ version: 4.48.0
sass:
- specifier: 1.89.2
- version: 1.89.2
+ specifier: 1.90.0
+ version: 1.90.0
shiki:
- specifier: 3.9.1
- version: 3.9.1
+ specifier: 3.11.0
+ version: 3.11.0
tinycolor2:
specifier: 1.6.0
version: 1.6.0
@@ -1195,11 +1195,11 @@ importers:
specifier: 11.1.0
version: 11.1.0
vite:
- specifier: 7.0.6
- version: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ specifier: 7.1.3
+ version: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
vue:
- specifier: 3.5.18
- version: 3.5.18(typescript@5.9.2)
+ specifier: 3.5.19
+ version: 3.5.19(typescript@5.9.2)
devDependencies:
'@misskey-dev/summaly':
specifier: 5.2.3
@@ -1209,7 +1209,7 @@ importers:
version: 3.34.1
'@testing-library/vue':
specifier: 8.1.0
- version: 8.1.0(@vue/compiler-sfc@3.5.18)(@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))
+ version: 8.1.0(@vue/compiler-sfc@3.5.19)(@vue/server-renderer@3.5.19(vue@3.5.19(typescript@5.9.2)))(vue@3.5.19(typescript@5.9.2))
'@types/estree':
specifier: 1.0.8
version: 1.0.8
@@ -1217,8 +1217,8 @@ importers:
specifier: 4.0.9
version: 4.0.9
'@types/node':
- specifier: 22.17.0
- version: 22.17.0
+ specifier: 22.17.2
+ version: 22.17.2
'@types/punycode.js':
specifier: npm:@types/punycode@2.1.4
version: '@types/punycode@2.1.4'
@@ -1229,17 +1229,17 @@ importers:
specifier: 8.18.1
version: 8.18.1
'@typescript-eslint/eslint-plugin':
- specifier: 8.38.0
- version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
'@vitest/coverage-v8':
specifier: 3.2.4
- version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
'@vue/runtime-core':
- specifier: 3.5.18
- version: 3.5.18
+ specifier: 3.5.19
+ version: 3.5.19
acorn:
specifier: 8.15.0
version: 8.15.0
@@ -1248,10 +1248,10 @@ importers:
version: 10.0.0
eslint-plugin-import:
specifier: 2.32.0
- version: 2.32.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)
+ version: 2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)
eslint-plugin-vue:
specifier: 10.4.0
- version: 10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(vue-eslint-parser@10.2.0(eslint@9.33.0))
+ version: 10.4.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(vue-eslint-parser@10.2.0(eslint@9.34.0))
fast-glob:
specifier: 3.3.3
version: 3.3.3
@@ -1265,8 +1265,8 @@ importers:
specifier: 4.0.8
version: 4.0.8
msw:
- specifier: 2.10.4
- version: 2.10.4(@types/node@22.17.0)(typescript@5.9.2)
+ specifier: 2.10.5
+ version: 2.10.5(@types/node@22.17.2)(typescript@5.9.2)
nodemon:
specifier: 3.1.10
version: 3.1.10
@@ -1274,23 +1274,23 @@ importers:
specifier: 3.6.2
version: 3.6.2
start-server-and-test:
- specifier: 2.0.12
- version: 2.0.12
+ specifier: 2.0.13
+ version: 2.0.13
tsx:
- specifier: 4.20.3
- version: 4.20.3
+ specifier: 4.20.4
+ version: 4.20.4
vite-plugin-turbosnap:
specifier: 1.0.3
version: 1.0.3
vue-component-type-helpers:
- specifier: 3.0.5
- version: 3.0.5
+ specifier: 3.0.6
+ version: 3.0.6
vue-eslint-parser:
specifier: 10.2.0
- version: 10.2.0(eslint@9.33.0)
+ version: 10.2.0(eslint@9.34.0)
vue-tsc:
- specifier: 3.0.5
- version: 3.0.5(typescript@5.9.2)
+ specifier: 3.0.6
+ version: 3.0.6(typescript@5.9.2)
packages/frontend-shared:
dependencies:
@@ -1298,24 +1298,24 @@ importers:
specifier: workspace:*
version: link:../misskey-js
vue:
- specifier: 3.5.18
- version: 3.5.18(typescript@5.9.2)
+ specifier: 3.5.19
+ version: 3.5.19(typescript@5.9.2)
devDependencies:
'@types/node':
- specifier: 22.17.0
- version: 22.17.0
+ specifier: 22.17.2
+ version: 22.17.2
'@typescript-eslint/eslint-plugin':
- specifier: 8.38.0
- version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
esbuild:
- specifier: 0.25.8
- version: 0.25.8
+ specifier: 0.25.9
+ version: 0.25.9
eslint-plugin-vue:
specifier: 10.4.0
- version: 10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(vue-eslint-parser@10.2.0(eslint@9.33.0))
+ version: 10.4.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(vue-eslint-parser@10.2.0(eslint@9.34.0))
nodemon:
specifier: 3.1.10
version: 3.1.10
@@ -1324,7 +1324,7 @@ importers:
version: 5.9.2
vue-eslint-parser:
specifier: 10.2.0
- version: 10.2.0(eslint@9.33.0)
+ version: 10.2.0(eslint@9.34.0)
packages/icons-subsetter:
dependencies:
@@ -1332,14 +1332,14 @@ importers:
specifier: 3.34.1
version: 3.34.1
harfbuzzjs:
- specifier: 0.4.8
- version: 0.4.8
+ specifier: 0.4.9
+ version: 0.4.9
tiny-glob:
specifier: 0.2.9
version: 0.2.9
tsx:
- specifier: 4.20.3
- version: 4.20.3
+ specifier: 4.20.4
+ version: 4.20.4
typescript:
specifier: 5.9.2
version: 5.9.2
@@ -1348,17 +1348,17 @@ importers:
version: 2.0.1
devDependencies:
'@types/node':
- specifier: 22.17.0
- version: 22.17.0
+ specifier: 22.17.2
+ version: 22.17.2
'@types/wawoff2':
specifier: 1.0.2
version: 1.0.2
'@typescript-eslint/eslint-plugin':
- specifier: 8.38.0
- version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
packages/misskey-bubble-game:
dependencies:
@@ -1373,23 +1373,23 @@ importers:
version: 3.0.5
devDependencies:
'@types/matter-js':
- specifier: 0.19.8
- version: 0.19.8
+ specifier: 0.20.0
+ version: 0.20.0
'@types/node':
- specifier: 22.17.0
- version: 22.17.0
+ specifier: 22.17.2
+ version: 22.17.2
'@types/seedrandom':
specifier: 3.0.8
version: 3.0.8
'@typescript-eslint/eslint-plugin':
- specifier: 8.38.0
- version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
esbuild:
- specifier: 0.25.8
- version: 0.25.8
+ specifier: 0.25.9
+ version: 0.25.9
execa:
specifier: 9.6.0
version: 9.6.0
@@ -1416,23 +1416,23 @@ importers:
version: 4.4.0
devDependencies:
'@microsoft/api-extractor':
- specifier: 7.52.10
- version: 7.52.10(@types/node@22.17.1)
+ specifier: 7.52.11
+ version: 7.52.11(@types/node@22.17.2)
'@types/node':
- specifier: 22.17.1
- version: 22.17.1
+ specifier: 22.17.2
+ version: 22.17.2
'@typescript-eslint/eslint-plugin':
- specifier: 8.39.0
- version: 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.39.0
- version: 8.39.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
'@vitest/coverage-v8':
specifier: 3.2.4
- version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5))
esbuild:
- specifier: 0.25.8
- version: 0.25.8
+ specifier: 0.25.9
+ version: 0.25.9
execa:
specifier: 9.6.0
version: 9.6.0
@@ -1453,10 +1453,10 @@ importers:
version: 5.9.2
vitest:
specifier: 3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
vitest-websocket-mock:
specifier: 0.5.0
- version: 0.5.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ version: 0.5.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5))
packages/misskey-js/generator:
devDependencies:
@@ -1464,26 +1464,26 @@ importers:
specifier: 5.0.1
version: 5.0.1(openapi-types@12.1.3)
'@types/node':
- specifier: 22.17.1
- version: 22.17.1
+ specifier: 22.17.2
+ version: 22.17.2
'@typescript-eslint/eslint-plugin':
- specifier: 8.39.0
- version: 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.39.0
- version: 8.39.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
openapi-types:
specifier: 12.1.3
version: 12.1.3
openapi-typescript:
- specifier: 7.8.0
- version: 7.8.0(typescript@5.9.2)
+ specifier: 7.9.1
+ version: 7.9.1(typescript@5.9.2)
ts-case-convert:
specifier: 2.1.0
version: 2.1.0
tsx:
- specifier: 4.20.3
- version: 4.20.3
+ specifier: 4.20.5
+ version: 4.20.5
typescript:
specifier: 5.9.2
version: 5.9.2
@@ -1495,17 +1495,17 @@ importers:
version: 1.2.2
devDependencies:
'@types/node':
- specifier: 22.17.0
- version: 22.17.0
+ specifier: 22.17.2
+ version: 22.17.2
'@typescript-eslint/eslint-plugin':
- specifier: 8.38.0
- version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/parser':
- specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
esbuild:
- specifier: 0.25.8
- version: 0.25.8
+ specifier: 0.25.9
+ version: 0.25.9
execa:
specifier: 9.6.0
version: 9.6.0
@@ -1522,8 +1522,8 @@ importers:
packages/sw:
dependencies:
esbuild:
- specifier: 0.25.8
- version: 0.25.8
+ specifier: 0.25.9
+ version: 0.25.9
idb-keyval:
specifier: 6.2.2
version: 6.2.2
@@ -1532,14 +1532,14 @@ importers:
version: link:../misskey-js
devDependencies:
'@typescript-eslint/parser':
- specifier: 8.38.0
- version: 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.34.0)(typescript@5.9.2)
'@typescript/lib-webworker':
specifier: npm:@types/serviceworker@0.0.74
version: '@types/serviceworker@0.0.74'
eslint-plugin-import:
specifier: 2.32.0
- version: 2.32.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)
+ version: 2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)
nodemon:
specifier: 3.1.10
version: 3.1.10
@@ -1556,29 +1556,29 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@analytics/cookie-utils@0.2.12':
- resolution: {integrity: sha512-2h/yuIu3kmu+ZJlKmlT6GoRvUEY2k1BbQBezEv5kGhnn9KpmzPz715Y3GmM2i+m7Y0QmBdVUoA260dQZkofs2A==}
+ '@analytics/cookie-utils@0.2.14':
+ resolution: {integrity: sha512-x51x2cLqvP5Fb1ydgNvTCX+SVv0ALK/yTNwp/53++yk4kLhxb850krWtQ4aASN0612oXrIGotwfmdJIttnLiPQ==}
- '@analytics/core@0.12.17':
- resolution: {integrity: sha512-GMxRm5Dp3Wam/w5NNvqNKMO6zWecozbVv21Kn4WhftCx6OjJI7zMlVtiLpjGjxa0RRZfVG80YhupF0Qh9XL2gw==}
+ '@analytics/core@0.13.2':
+ resolution: {integrity: sha512-ejvfoPP8TEh2hA2szMEq9c4TdeX8FAeY1j/7MxJVZjzDaq8BDHOyaAAQzTFiLMHvV0WcU2YC0smJ5Ids5Ll5ng==}
- '@analytics/global-storage-utils@0.1.7':
- resolution: {integrity: sha512-V+spzGLZYm4biZT4uefaylm80SrLXf8WOTv9hCgA46cLcyxx3LD4GCpssp1lj+RcWLl/uXJQBRO4Mnn/o1x6Gw==}
+ '@analytics/global-storage-utils@0.1.9':
+ resolution: {integrity: sha512-+xm6CDnWsVOQIKkqbPRPRdYDXKk3PNgr/bCZWSI+7tEDT5PCDgI0QSBZe+FqCVkCRtTkgOrjFOY7wOM8Gq+ndA==}
'@analytics/google-analytics@1.1.0':
resolution: {integrity: sha512-i8uGyELMtwEUAf3GNWNLNBzhRvReDn1RUxvMdMhjUA7+GNGxPOM4kkzFfv3giQXKNxTEjfsh75kqNcscbJsuaA==}
- '@analytics/localstorage-utils@0.1.10':
- resolution: {integrity: sha512-uJS+Jp1yLG5VFCgA5T82ZODYBS0xuDQx0NtAZrgbqt9j51BX3TcgmOez5LVkrUNu/lpbxjCLq35I4TKj78VmOQ==}
+ '@analytics/localstorage-utils@0.1.12':
+ resolution: {integrity: sha512-BL3vuZUwWgMqdkQsE0GKsED5SPLC6daI4K4LE0a/BkKv+4Cae5JLLqpO5gju2HUGOjJxIvw8U/G5EcglNY5+1w==}
- '@analytics/session-storage-utils@0.0.7':
- resolution: {integrity: sha512-PSv40UxG96HVcjY15e3zOqU2n8IqXnH8XvTkg1X43uXNTKVSebiI2kUjA3Q7ESFbw5DPwcLbJhV7GforpuBLDw==}
+ '@analytics/session-storage-utils@0.0.9':
+ resolution: {integrity: sha512-fhP9QCpyq45rZKsXaAxyz+VTmOUWljIW08CWSkFzpwOHkDM4Xy5tymc1YcWqSBBaLjHldo3HlY4qfqEIS4Aj1A==}
- '@analytics/storage-utils@0.4.2':
- resolution: {integrity: sha512-AXObwyVQw9h2uJh1t2hUgabtVxzYpW+7uKVbdHQK80vr3Td5rrmCxrCxarh7HUuAgSDZ0bZWqmYxVgmwKceaLg==}
+ '@analytics/storage-utils@0.4.4':
+ resolution: {integrity: sha512-873P4wDIunbOnBqADc2AhTVsLbluUv1dP6k9UrK8FIeV8WXv5+fG12HdwwaniUIxq6QLgZJfKEaCwtWSKrrV0g==}
- '@analytics/type-utils@0.6.2':
- resolution: {integrity: sha512-TD+xbmsBLyYy/IxFimW/YL/9L2IEnM7/EoV9Aeh56U64Ify8o27HJcKjo38XY9Tcn0uOq1AX3thkKgvtWvwFQg==}
+ '@analytics/type-utils@0.6.4':
+ resolution: {integrity: sha512-Ou1gQxFakOWLcPnbFVsrPb8g1wLLUZYYJXDPjHkG07+5mustGs5yqACx42UAu4A6NszNN6Z5gGxhyH45zPWRxw==}
'@apidevtools/json-schema-ref-parser@14.1.1':
resolution: {integrity: sha512-uGF1YGOzzD50L7HLNWclXmsEhQflw8/zZHIz0/AzkJrKL5r9PceUipZxR/cp/8veTk4TVfdDJLyIwXLjaP5ePg==}
@@ -1610,129 +1610,133 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-s3@3.864.0':
- resolution: {integrity: sha512-QGYi9bWliewxumsvbJLLyx9WC0a4DP4F+utygBcq0zwPxaM0xDfBspQvP1dsepi7mW5aAjZmJ2+Xb7X0EhzJ/g==}
+ '@aws-sdk/client-s3@3.873.0':
+ resolution: {integrity: sha512-b+1lSEf+obcC508blw5qEDR1dyTiHViZXbf8G6nFospyqLJS0Vu2py+e+LG2VDVdAouZ8+RvW+uAi73KgsWl0w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/client-sso@3.864.0':
- resolution: {integrity: sha512-THiOp0OpQROEKZ6IdDCDNNh3qnNn/kFFaTSOiugDpgcE5QdsOxh1/RXq7LmHpTJum3cmnFf8jG59PHcz9Tjnlw==}
+ '@aws-sdk/client-ses@3.873.0':
+ resolution: {integrity: sha512-m133jrCWPtMLSRYadK5gc6B4HqSP9EKZjCyq+sTlerN0vUBI/Uf5eA+6ZG3/04lIA7nOje+wCB8dTSZmiId55w==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/core@3.864.0':
- resolution: {integrity: sha512-LFUREbobleHEln+Zf7IG83lAZwvHZG0stI7UU0CtwyuhQy5Yx0rKksHNOCmlM7MpTEbSCfntEhYi3jUaY5e5lg==}
+ '@aws-sdk/client-sso@3.873.0':
+ resolution: {integrity: sha512-EmcrOgFODWe7IsLKFTeSXM9TlQ80/BO1MBISlr7w2ydnOaUYIiPGRRJnDpeIgMaNqT4Rr2cRN2RiMrbFO7gDdA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-env@3.864.0':
- resolution: {integrity: sha512-StJPOI2Rt8UE6lYjXUpg6tqSZaM72xg46ljPg8kIevtBAAfdtq9K20qT/kSliWGIBocMFAv0g2mC0hAa+ECyvg==}
+ '@aws-sdk/core@3.873.0':
+ resolution: {integrity: sha512-WrROjp8X1VvmnZ4TBzwM7RF+EB3wRaY9kQJLXw+Aes0/3zRjUXvGIlseobGJMqMEGnM0YekD2F87UaVfot1xeQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-http@3.864.0':
- resolution: {integrity: sha512-E/RFVxGTuGnuD+9pFPH2j4l6HvrXzPhmpL8H8nOoJUosjx7d4v93GJMbbl1v/fkDLqW9qN4Jx2cI6PAjohA6OA==}
+ '@aws-sdk/credential-provider-env@3.873.0':
+ resolution: {integrity: sha512-FWj1yUs45VjCADv80JlGshAttUHBL2xtTAbJcAxkkJZzLRKVkdyrepFWhv/95MvDyzfbT6PgJiWMdW65l/8ooA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-ini@3.864.0':
- resolution: {integrity: sha512-PlxrijguR1gxyPd5EYam6OfWLarj2MJGf07DvCx9MAuQkw77HBnsu6+XbV8fQriFuoJVTBLn9ROhMr/ROAYfUg==}
+ '@aws-sdk/credential-provider-http@3.873.0':
+ resolution: {integrity: sha512-0sIokBlXIsndjZFUfr3Xui8W6kPC4DAeBGAXxGi9qbFZ9PWJjn1vt2COLikKH3q2snchk+AsznREZG8NW6ezSg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-node@3.864.0':
- resolution: {integrity: sha512-2BEymFeXURS+4jE9tP3vahPwbYRl0/1MVaFZcijj6pq+nf5EPGvkFillbdBRdc98ZI2NedZgSKu3gfZXgYdUhQ==}
+ '@aws-sdk/credential-provider-ini@3.873.0':
+ resolution: {integrity: sha512-bQdGqh47Sk0+2S3C+N46aNQsZFzcHs7ndxYLARH/avYXf02Nl68p194eYFaAHJSQ1re5IbExU1+pbums7FJ9fA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-process@3.864.0':
- resolution: {integrity: sha512-Zxnn1hxhq7EOqXhVYgkF4rI9MnaO3+6bSg/tErnBQ3F8kDpA7CFU24G1YxwaJXp2X4aX3LwthefmSJHwcVP/2g==}
+ '@aws-sdk/credential-provider-node@3.873.0':
+ resolution: {integrity: sha512-+v/xBEB02k2ExnSDL8+1gD6UizY4Q/HaIJkNSkitFynRiiTQpVOSkCkA0iWxzksMeN8k1IHTE5gzeWpkEjNwbA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-sso@3.864.0':
- resolution: {integrity: sha512-UPyPNQbxDwHVGmgWdGg9/9yvzuedRQVF5jtMkmP565YX9pKZ8wYAcXhcYdNPWFvH0GYdB0crKOmvib+bmCuwkw==}
+ '@aws-sdk/credential-provider-process@3.873.0':
+ resolution: {integrity: sha512-ycFv9WN+UJF7bK/ElBq1ugWA4NMbYS//1K55bPQZb2XUpAM2TWFlEjG7DIyOhLNTdl6+CbHlCdhlKQuDGgmm0A==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.864.0':
- resolution: {integrity: sha512-nNcjPN4SYg8drLwqK0vgVeSvxeGQiD0FxOaT38mV2H8cu0C5NzpvA+14Xy+W6vT84dxgmJYKk71Cr5QL2Oz+rA==}
+ '@aws-sdk/credential-provider-sso@3.873.0':
+ resolution: {integrity: sha512-SudkAOZmjEEYgUrqlUUjvrtbWJeI54/0Xo87KRxm4kfBtMqSx0TxbplNUAk8Gkg4XQNY0o7jpG8tK7r2Wc2+uw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/lib-storage@3.864.0':
- resolution: {integrity: sha512-Me/HlMXXPv3tStPQufdwnYGholY14JmmzCdOjhnG7gnaClBEnroZKcHuQhrgMm+KyfbzCQ2+9YHsULOfFrg7Mw==}
+ '@aws-sdk/credential-provider-web-identity@3.873.0':
+ resolution: {integrity: sha512-Gw2H21+VkA6AgwKkBtTtlGZ45qgyRZPSKWs0kUwXVlmGOiPz61t/lBX0vG6I06ZIz2wqeTJ5OA1pWZLqw1j0JQ==}
+ engines: {node: '>=18.0.0'}
+
+ '@aws-sdk/lib-storage@3.873.0':
+ resolution: {integrity: sha512-TcR15G+DOzniMProb+JtifLyAPORVcRw5hks6VPZg/KVOXGtOyXEG7yqnXV+pidc1xWLVvKlG3K+4r72f+zjLw==}
engines: {node: '>=18.0.0'}
peerDependencies:
- '@aws-sdk/client-s3': ^3.864.0
+ '@aws-sdk/client-s3': ^3.873.0
- '@aws-sdk/middleware-bucket-endpoint@3.862.0':
- resolution: {integrity: sha512-Wcsc7VPLjImQw+CP1/YkwyofMs9Ab6dVq96iS8p0zv0C6YTaMjvillkau4zFfrrrTshdzFWKptIFhKK8Zsei1g==}
+ '@aws-sdk/middleware-bucket-endpoint@3.873.0':
+ resolution: {integrity: sha512-b4bvr0QdADeTUs+lPc9Z48kXzbKHXQKgTvxx/jXDgSW9tv4KmYPO1gIj6Z9dcrBkRWQuUtSW3Tu2S5n6pe+zeg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-expect-continue@3.862.0':
- resolution: {integrity: sha512-oG3AaVUJ+26p0ESU4INFn6MmqqiBFZGrebST66Or+YBhteed2rbbFl7mCfjtPWUFgquQlvT1UP19P3LjQKeKpw==}
+ '@aws-sdk/middleware-expect-continue@3.873.0':
+ resolution: {integrity: sha512-GIqoc8WgRcf/opBOZXFLmplJQKwOMjiOMmDz9gQkaJ8FiVJoAp8EGVmK2TOWZMQUYsavvHYsHaor5R2xwPoGVg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-flexible-checksums@3.864.0':
- resolution: {integrity: sha512-MvakvzPZi9uyP3YADuIqtk/FAcPFkyYFWVVMf5iFs/rCdk0CUzn02Qf4CSuyhbkS6Y0KrAsMgKR4MgklPU79Wg==}
+ '@aws-sdk/middleware-flexible-checksums@3.873.0':
+ resolution: {integrity: sha512-NNiy2Y876P5cgIhsDlHopbPZS3ugdfBW1va0WdpVBviwAs6KT4irPNPAOyF1/33N/niEDKx0fKQV7ROB70nNPA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-host-header@3.862.0':
- resolution: {integrity: sha512-jDje8dCFeFHfuCAxMDXBs8hy8q9NCTlyK4ThyyfAj3U4Pixly2mmzY2u7b7AyGhWsjJNx8uhTjlYq5zkQPQCYw==}
+ '@aws-sdk/middleware-host-header@3.873.0':
+ resolution: {integrity: sha512-KZ/W1uruWtMOs7D5j3KquOxzCnV79KQW9MjJFZM/M0l6KI8J6V3718MXxFHsTjUE4fpdV6SeCNLV1lwGygsjJA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-location-constraint@3.862.0':
- resolution: {integrity: sha512-MnwLxCw7Cc9OngEH3SHFhrLlDI9WVxaBkp3oTsdY9JE7v8OE38wQ9vtjaRsynjwu0WRtrctSHbpd7h/QVvtjyA==}
+ '@aws-sdk/middleware-location-constraint@3.873.0':
+ resolution: {integrity: sha512-r+hIaORsW/8rq6wieDordXnA/eAu7xAPLue2InhoEX6ML7irP52BgiibHLpt9R0psiCzIHhju8qqKa4pJOrmiw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-logger@3.862.0':
- resolution: {integrity: sha512-N/bXSJznNBR/i7Ofmf9+gM6dx/SPBK09ZWLKsW5iQjqKxAKn/2DozlnE54uiEs1saHZWoNDRg69Ww4XYYSlG1Q==}
+ '@aws-sdk/middleware-logger@3.873.0':
+ resolution: {integrity: sha512-QhNZ8X7pW68kFez9QxUSN65Um0Feo18ZmHxszQZNUhKDsXew/EG9NPQE/HgYcekcon35zHxC4xs+FeNuPurP2g==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-recursion-detection@3.862.0':
- resolution: {integrity: sha512-KVoo3IOzEkTq97YKM4uxZcYFSNnMkhW/qj22csofLegZi5fk90ztUnnaeKfaEJHfHp/tm1Y3uSoOXH45s++kKQ==}
+ '@aws-sdk/middleware-recursion-detection@3.873.0':
+ resolution: {integrity: sha512-OtgY8EXOzRdEWR//WfPkA/fXl0+WwE8hq0y9iw2caNyKPtca85dzrrZWnPqyBK/cpImosrpR1iKMYr41XshsCg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-sdk-s3@3.864.0':
- resolution: {integrity: sha512-GjYPZ6Xnqo17NnC8NIQyvvdzzO7dm+Ks7gpxD/HsbXPmV2aEfuFveJXneGW9e1BheSKFff6FPDWu8Gaj2Iu1yg==}
+ '@aws-sdk/middleware-sdk-s3@3.873.0':
+ resolution: {integrity: sha512-bOoWGH57ORK2yKOqJMmxBV4b3yMK8Pc0/K2A98MNPuQedXaxxwzRfsT2Qw+PpfYkiijrrNFqDYmQRGntxJ2h8A==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-ssec@3.862.0':
- resolution: {integrity: sha512-72VtP7DZC8lYTE2L3Efx2BrD98oe9WTK8X6hmd3WTLkbIjvgWQWIdjgaFXBs8WevsXkewIctfyA3KEezvL5ggw==}
+ '@aws-sdk/middleware-ssec@3.873.0':
+ resolution: {integrity: sha512-AF55J94BoiuzN7g3hahy0dXTVZahVi8XxRBLgzNp6yQf0KTng+hb/V9UQZVYY1GZaDczvvvnqC54RGe9OZZ9zQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/middleware-user-agent@3.864.0':
- resolution: {integrity: sha512-wrddonw4EyLNSNBrApzEhpSrDwJiNfjxDm5E+bn8n32BbAojXASH8W8jNpxz/jMgNkkJNxCfyqybGKzBX0OhbQ==}
+ '@aws-sdk/middleware-user-agent@3.873.0':
+ resolution: {integrity: sha512-gHqAMYpWkPhZLwqB3Yj83JKdL2Vsb64sryo8LN2UdpElpS+0fT4yjqSxKTfp7gkhN6TCIxF24HQgbPk5FMYJWw==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/nested-clients@3.864.0':
- resolution: {integrity: sha512-H1C+NjSmz2y8Tbgh7Yy89J20yD/hVyk15hNoZDbCYkXg0M358KS7KVIEYs8E2aPOCr1sK3HBE819D/yvdMgokA==}
+ '@aws-sdk/nested-clients@3.873.0':
+ resolution: {integrity: sha512-yg8JkRHuH/xO65rtmLOWcd9XQhxX1kAonp2CliXT44eA/23OBds6XoheY44eZeHfCTgutDLTYitvy3k9fQY6ZA==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/region-config-resolver@3.862.0':
- resolution: {integrity: sha512-VisR+/HuVFICrBPY+q9novEiE4b3mvDofWqyvmxHcWM7HumTz9ZQSuEtnlB/92GVM3KDUrR9EmBHNRrfXYZkcQ==}
+ '@aws-sdk/region-config-resolver@3.873.0':
+ resolution: {integrity: sha512-q9sPoef+BBG6PJnc4x60vK/bfVwvRWsPgcoQyIra057S/QGjq5VkjvNk6H8xedf6vnKlXNBwq9BaANBXnldUJg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.864.0':
- resolution: {integrity: sha512-w2HIn/WIcUyv1bmyCpRUKHXB5KdFGzyxPkp/YK5g+/FuGdnFFYWGfcO8O+How4jwrZTarBYsAHW9ggoKvwr37w==}
+ '@aws-sdk/signature-v4-multi-region@3.873.0':
+ resolution: {integrity: sha512-FQ5OIXw1rmDud7f/VO9y2Mg9rX1o4MnngRKUOD8mS9ALK4uxKrTczb4jA+uJLSLwTqMGs3bcB1RzbMW1zWTMwQ==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/token-providers@3.864.0':
- resolution: {integrity: sha512-gTc2QHOBo05SCwVA65dUtnJC6QERvFaPiuppGDSxoF7O5AQNK0UR/kMSenwLqN8b5E1oLYvQTv3C1idJLRX0cg==}
+ '@aws-sdk/token-providers@3.873.0':
+ resolution: {integrity: sha512-BWOCeFeV/Ba8fVhtwUw/0Hz4wMm9fjXnMb4Z2a5he/jFlz5mt1/rr6IQ4MyKgzOaz24YrvqsJW2a0VUKOaYDvg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/types@3.862.0':
resolution: {integrity: sha512-Bei+RL0cDxxV+lW2UezLbCYYNeJm6Nzee0TpW0FfyTRBhH9C1XQh4+x+IClriXvgBnRquTMMYsmJfvx8iyLKrg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-arn-parser@3.804.0':
- resolution: {integrity: sha512-wmBJqn1DRXnZu3b4EkE6CWnoWMo1ZMvlfkqU5zPz67xx1GMaXlDCchFvKAXMjk4jn/L1O3tKnoFDNsoLV1kgNQ==}
+ '@aws-sdk/util-arn-parser@3.873.0':
+ resolution: {integrity: sha512-qag+VTqnJWDn8zTAXX4wiVioa0hZDQMtbZcGRERVnLar4/3/VIKBhxX2XibNQXFu1ufgcRn4YntT/XEPecFWcg==}
engines: {node: '>=18.0.0'}
- '@aws-sdk/util-endpoints@3.862.0':
- resolution: {integrity: sha512-eCZuScdE9MWWkHGM2BJxm726MCmWk/dlHjOKvkM0sN1zxBellBMw5JohNss1Z8/TUmnW2gb9XHTOiHuGjOdksA==}
+ '@aws-sdk/util-endpoints@3.873.0':
+ resolution: {integrity: sha512-YByHrhjxYdjKRf/RQygRK1uh0As1FIi9+jXTcIEX/rBgN8mUByczr2u4QXBzw7ZdbdcOBMOkPnLRjNOWW1MkFg==}
engines: {node: '>=18.0.0'}
'@aws-sdk/util-locate-window@3.208.0':
resolution: {integrity: sha512-iua1A2+P7JJEDHVgvXrRJSvsnzG7stYSGQnBVphIUlemwl6nN5D+QrgbjECtrbxRz8asYFHSzhdhECqN+tFiBg==}
engines: {node: '>=14.0.0'}
- '@aws-sdk/util-user-agent-browser@3.862.0':
- resolution: {integrity: sha512-BmPTlm0r9/10MMr5ND9E92r8KMZbq5ltYXYpVcUbAsnB1RJ8ASJuRoLne5F7mB3YMx0FJoOTuSq7LdQM3LgW3Q==}
+ '@aws-sdk/util-user-agent-browser@3.873.0':
+ resolution: {integrity: sha512-AcRdbK6o19yehEcywI43blIBhOCSo6UgyWcuOJX5CFF8k39xm1ILCjQlRRjchLAxWrm0lU0Q7XV90RiMMFMZtA==}
- '@aws-sdk/util-user-agent-node@3.864.0':
- resolution: {integrity: sha512-d+FjUm2eJEpP+FRpVR3z6KzMdx1qwxEYDz8jzNKwxYLBBquaBaP/wfoMtMQKAcbrR7aT9FZVZF7zDgzNxUvQlQ==}
+ '@aws-sdk/util-user-agent-node@3.873.0':
+ resolution: {integrity: sha512-9MivTP+q9Sis71UxuBaIY3h5jxH0vN3/ZWGxO8ADL19S2OIfknrYSAfzE5fpoKROVBu0bS4VifHOFq4PY1zsxw==}
engines: {node: '>=18.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
@@ -1740,8 +1744,8 @@ packages:
aws-crt:
optional: true
- '@aws-sdk/xml-builder@3.862.0':
- resolution: {integrity: sha512-6Ed0kmC1NMbuFTEgNmamAUU1h5gShgxL1hBVLbEzUa3trX5aJBz1vU4bXaBTvOYUAnOHtiy1Ml4AMStd6hJnFA==}
+ '@aws-sdk/xml-builder@3.873.0':
+ resolution: {integrity: sha512-kLO7k7cGJ6KaHiExSJWojZurF7SnGMDHXRuQunFnEoD0n1yB6Lqy/S/zHiQ7oJnBhPr9q0TW9qFkrsZb1Uc54w==}
engines: {node: '>=18.0.0'}
'@babel/code-frame@7.27.1':
@@ -1819,6 +1823,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.28.3':
+ resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-syntax-async-generators@7.8.4':
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -1908,6 +1917,10 @@ packages:
resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.28.2':
+ resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -2017,156 +2030,312 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.25.9':
+ resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.25.8':
resolution: {integrity: sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.25.9':
+ resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.25.8':
resolution: {integrity: sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.25.9':
+ resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.25.8':
resolution: {integrity: sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.25.9':
+ resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.25.8':
resolution: {integrity: sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.25.9':
+ resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.25.8':
resolution: {integrity: sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.25.9':
+ resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.25.8':
resolution: {integrity: sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.25.9':
+ resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.25.8':
resolution: {integrity: sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.25.9':
+ resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.25.8':
resolution: {integrity: sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.25.9':
+ resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.25.8':
resolution: {integrity: sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.25.9':
+ resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.25.8':
resolution: {integrity: sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.25.9':
+ resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.25.8':
resolution: {integrity: sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.25.9':
+ resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.25.8':
resolution: {integrity: sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.25.9':
+ resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.25.8':
resolution: {integrity: sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.25.9':
+ resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.25.8':
resolution: {integrity: sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.25.9':
+ resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.25.8':
resolution: {integrity: sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.25.9':
+ resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.25.8':
resolution: {integrity: sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.25.9':
+ resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.25.8':
resolution: {integrity: sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.25.9':
+ resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.25.8':
resolution: {integrity: sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.25.9':
+ resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.25.8':
resolution: {integrity: sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.25.9':
+ resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.25.8':
resolution: {integrity: sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.25.9':
+ resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openharmony-arm64@0.25.8':
resolution: {integrity: sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
+ '@esbuild/openharmony-arm64@0.25.9':
+ resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.25.8':
resolution: {integrity: sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.25.9':
+ resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.25.8':
resolution: {integrity: sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.25.9':
+ resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.25.8':
resolution: {integrity: sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.25.9':
+ resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.25.8':
resolution: {integrity: sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.25.9':
+ resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.7.0':
resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -2197,8 +2366,8 @@ packages:
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.33.0':
- resolution: {integrity: sha512-5K1/mKhWaMfreBGJTwval43JJmkip0RmM+3+IuqupeSKNC/Th2Kc7ucaq5ovTSra/OOKB9c58CGSz3QMVbWt0A==}
+ '@eslint/js@9.34.0':
+ resolution: {integrity: sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
@@ -2691,6 +2860,9 @@ packages:
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
'@jridgewell/trace-mapping@0.3.29':
resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
@@ -2727,8 +2899,8 @@ packages:
'@microsoft/api-extractor-model@7.30.7':
resolution: {integrity: sha512-TBbmSI2/BHpfR9YhQA7nH0nqVmGgJ0xH0Ex4D99/qBDAUpnhA2oikGmdXanbw9AWWY/ExBYIpkmY8dBHdla3YQ==}
- '@microsoft/api-extractor@7.52.10':
- resolution: {integrity: sha512-LhKytJM5ZJkbHQVfW/3o747rZUNs/MGg6j/wt/9qwwqEOfvUDTYXXxIBuMgrRXhJ528p41iyz4zjBVHZU74Odg==}
+ '@microsoft/api-extractor@7.52.11':
+ resolution: {integrity: sha512-IKQ7bHg6f/Io3dQds6r9QPYk4q0OlR9A4nFDtNhUt3UUIhyitbxAqRN1CLjUVtk6IBk3xzyCMOdwwtIXQ7AlGg==}
hasBin: true
'@microsoft/tsdoc-config@0.17.1':
@@ -2909,6 +3081,10 @@ packages:
resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/hashes@1.8.0':
+ resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==}
+ engines: {node: ^14.21.3 || >=16}
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -3299,8 +3475,8 @@ packages:
'@redocly/config@0.22.2':
resolution: {integrity: sha512-roRDai8/zr2S9YfmzUfNhKjOF0NdcOIqF7bhf4MVC5UxpjIysDjyudvlAiVbpPHp3eDRWbdzUgtkK1a7YiDNyQ==}
- '@redocly/openapi-core@1.34.3':
- resolution: {integrity: sha512-3arRdUp1fNx55itnjKiUhO6t4Mf91TsrTIYINDNLAZPS0TPd5YpiXRctwjel0qqWoOOhjA34cZ3m4dksLDFUYg==}
+ '@redocly/openapi-core@1.34.5':
+ resolution: {integrity: sha512-0EbE8LRbkogtcCXU7liAyC00n9uNG9hJ+eMyHFdUsy9lB/WGqnEBgwjA9q2cyzAVcdTkQqTBBU1XePNnN3OijA==}
engines: {node: '>=18.17.0', npm: '>=9.5.0'}
'@rolldown/pluginutils@1.0.0-beta.29':
@@ -3338,101 +3514,201 @@ packages:
cpu: [arm]
os: [android]
+ '@rollup/rollup-android-arm-eabi@4.48.0':
+ resolution: {integrity: sha512-aVzKH922ogVAWkKiyKXorjYymz2084zrhrZRXtLrA5eEx5SO8Dj0c/4FpCHZyn7MKzhW2pW4tK28vVr+5oQ2xw==}
+ cpu: [arm]
+ os: [android]
+
'@rollup/rollup-android-arm64@4.46.2':
resolution: {integrity: sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==}
cpu: [arm64]
os: [android]
+ '@rollup/rollup-android-arm64@4.48.0':
+ resolution: {integrity: sha512-diOdQuw43xTa1RddAFbhIA8toirSzFMcnIg8kvlzRbK26xqEnKJ/vqQnghTAajy2Dcy42v+GMPMo6jq67od+Dw==}
+ cpu: [arm64]
+ os: [android]
+
'@rollup/rollup-darwin-arm64@4.46.2':
resolution: {integrity: sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==}
cpu: [arm64]
os: [darwin]
+ '@rollup/rollup-darwin-arm64@4.48.0':
+ resolution: {integrity: sha512-QhR2KA18fPlJWFefySJPDYZELaVqIUVnYgAOdtJ+B/uH96CFg2l1TQpX19XpUMWUqMyIiyY45wje8K6F4w4/CA==}
+ cpu: [arm64]
+ os: [darwin]
+
'@rollup/rollup-darwin-x64@4.46.2':
resolution: {integrity: sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==}
cpu: [x64]
os: [darwin]
+ '@rollup/rollup-darwin-x64@4.48.0':
+ resolution: {integrity: sha512-Q9RMXnQVJ5S1SYpNSTwXDpoQLgJ/fbInWOyjbCnnqTElEyeNvLAB3QvG5xmMQMhFN74bB5ZZJYkKaFPcOG8sGg==}
+ cpu: [x64]
+ os: [darwin]
+
'@rollup/rollup-freebsd-arm64@4.46.2':
resolution: {integrity: sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==}
cpu: [arm64]
os: [freebsd]
+ '@rollup/rollup-freebsd-arm64@4.48.0':
+ resolution: {integrity: sha512-3jzOhHWM8O8PSfyft+ghXZfBkZawQA0PUGtadKYxFqpcYlOYjTi06WsnYBsbMHLawr+4uWirLlbhcYLHDXR16w==}
+ cpu: [arm64]
+ os: [freebsd]
+
'@rollup/rollup-freebsd-x64@4.46.2':
resolution: {integrity: sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==}
cpu: [x64]
os: [freebsd]
+ '@rollup/rollup-freebsd-x64@4.48.0':
+ resolution: {integrity: sha512-NcD5uVUmE73C/TPJqf78hInZmiSBsDpz3iD5MF/BuB+qzm4ooF2S1HfeTChj5K4AV3y19FFPgxonsxiEpy8v/A==}
+ cpu: [x64]
+ os: [freebsd]
+
'@rollup/rollup-linux-arm-gnueabihf@4.46.2':
resolution: {integrity: sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-gnueabihf@4.48.0':
+ resolution: {integrity: sha512-JWnrj8qZgLWRNHr7NbpdnrQ8kcg09EBBq8jVOjmtlB3c8C6IrynAJSMhMVGME4YfTJzIkJqvSUSVJRqkDnu/aA==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm-musleabihf@4.46.2':
resolution: {integrity: sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==}
cpu: [arm]
os: [linux]
+ '@rollup/rollup-linux-arm-musleabihf@4.48.0':
+ resolution: {integrity: sha512-9xu92F0TxuMH0tD6tG3+GtngwdgSf8Bnz+YcsPG91/r5Vgh5LNofO48jV55priA95p3c92FLmPM7CvsVlnSbGQ==}
+ cpu: [arm]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-gnu@4.46.2':
resolution: {integrity: sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-gnu@4.48.0':
+ resolution: {integrity: sha512-NLtvJB5YpWn7jlp1rJiY0s+G1Z1IVmkDuiywiqUhh96MIraC0n7XQc2SZ1CZz14shqkM+XN2UrfIo7JB6UufOA==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-arm64-musl@4.46.2':
resolution: {integrity: sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==}
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-musl@4.48.0':
+ resolution: {integrity: sha512-QJ4hCOnz2SXgCh+HmpvZkM+0NSGcZACyYS8DGbWn2PbmA0e5xUk4bIP8eqJyNXLtyB4gZ3/XyvKtQ1IFH671vQ==}
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-loongarch64-gnu@4.46.2':
resolution: {integrity: sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==}
cpu: [loong64]
os: [linux]
+ '@rollup/rollup-linux-loongarch64-gnu@4.48.0':
+ resolution: {integrity: sha512-Pk0qlGJnhILdIC5zSKQnprFjrGmjfDM7TPZ0FKJxRkoo+kgMRAg4ps1VlTZf8u2vohSicLg7NP+cA5qE96PaFg==}
+ cpu: [loong64]
+ os: [linux]
+
'@rollup/rollup-linux-ppc64-gnu@4.46.2':
resolution: {integrity: sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==}
cpu: [ppc64]
os: [linux]
+ '@rollup/rollup-linux-ppc64-gnu@4.48.0':
+ resolution: {integrity: sha512-/dNFc6rTpoOzgp5GKoYjT6uLo8okR/Chi2ECOmCZiS4oqh3mc95pThWma7Bgyk6/WTEvjDINpiBCuecPLOgBLQ==}
+ cpu: [ppc64]
+ os: [linux]
+
'@rollup/rollup-linux-riscv64-gnu@4.46.2':
resolution: {integrity: sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==}
cpu: [riscv64]
os: [linux]
+ '@rollup/rollup-linux-riscv64-gnu@4.48.0':
+ resolution: {integrity: sha512-YBwXsvsFI8CVA4ej+bJF2d9uAeIiSkqKSPQNn0Wyh4eMDY4wxuSp71BauPjQNCKK2tD2/ksJ7uhJ8X/PVY9bHQ==}
+ cpu: [riscv64]
+ os: [linux]
+
'@rollup/rollup-linux-riscv64-musl@4.46.2':
resolution: {integrity: sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==}
cpu: [riscv64]
os: [linux]
+ '@rollup/rollup-linux-riscv64-musl@4.48.0':
+ resolution: {integrity: sha512-FI3Rr2aGAtl1aHzbkBIamsQyuauYtTF9SDUJ8n2wMXuuxwchC3QkumZa1TEXYIv/1AUp1a25Kwy6ONArvnyeVQ==}
+ cpu: [riscv64]
+ os: [linux]
+
'@rollup/rollup-linux-s390x-gnu@4.46.2':
resolution: {integrity: sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==}
cpu: [s390x]
os: [linux]
+ '@rollup/rollup-linux-s390x-gnu@4.48.0':
+ resolution: {integrity: sha512-Dx7qH0/rvNNFmCcIRe1pyQ9/H0XO4v/f0SDoafwRYwc2J7bJZ5N4CHL/cdjamISZ5Cgnon6iazAVRFlxSoHQnQ==}
+ cpu: [s390x]
+ os: [linux]
+
'@rollup/rollup-linux-x64-gnu@4.46.2':
resolution: {integrity: sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-gnu@4.48.0':
+ resolution: {integrity: sha512-GUdZKTeKBq9WmEBzvFYuC88yk26vT66lQV8D5+9TgkfbewhLaTHRNATyzpQwwbHIfJvDJ3N9WJ90wK/uR3cy3Q==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-linux-x64-musl@4.46.2':
resolution: {integrity: sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==}
cpu: [x64]
os: [linux]
+ '@rollup/rollup-linux-x64-musl@4.48.0':
+ resolution: {integrity: sha512-ao58Adz/v14MWpQgYAb4a4h3fdw73DrDGtaiF7Opds5wNyEQwtO6M9dBh89nke0yoZzzaegq6J/EXs7eBebG8A==}
+ cpu: [x64]
+ os: [linux]
+
'@rollup/rollup-win32-arm64-msvc@4.46.2':
resolution: {integrity: sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==}
cpu: [arm64]
os: [win32]
+ '@rollup/rollup-win32-arm64-msvc@4.48.0':
+ resolution: {integrity: sha512-kpFno46bHtjZVdRIOxqaGeiABiToo2J+st7Yce+aiAoo1H0xPi2keyQIP04n2JjDVuxBN6bSz9R6RdTK5hIppw==}
+ cpu: [arm64]
+ os: [win32]
+
'@rollup/rollup-win32-ia32-msvc@4.46.2':
resolution: {integrity: sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==}
cpu: [ia32]
os: [win32]
+ '@rollup/rollup-win32-ia32-msvc@4.48.0':
+ resolution: {integrity: sha512-rFYrk4lLk9YUTIeihnQMiwMr6gDhGGSbWThPEDfBoU/HdAtOzPXeexKi7yU8jO+LWRKnmqPN9NviHQf6GDwBcQ==}
+ cpu: [ia32]
+ os: [win32]
+
'@rollup/rollup-win32-x64-msvc@4.46.2':
resolution: {integrity: sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==}
cpu: [x64]
os: [win32]
+ '@rollup/rollup-win32-x64-msvc@4.48.0':
+ resolution: {integrity: sha512-sq0hHLTgdtwOPDB5SJOuaoHyiP1qSwg+71TQWk8iDS04bW1wIE0oQ6otPiRj2ZvLYNASLMaTp8QRGUVZ+5OL5A==}
+ cpu: [x64]
+ os: [win32]
+
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
@@ -3461,56 +3737,56 @@ packages:
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@sentry-internal/browser-utils@10.0.0':
- resolution: {integrity: sha512-qLZ2uguBhjGUsuq1mLF6Oe6vK3I1IDYVukNuJwbsWb/t7hQXNNyhzNIENWQw4v+Iotq6ocZPiGpLN4ZB9FuX5Q==}
+ '@sentry-internal/browser-utils@10.5.0':
+ resolution: {integrity: sha512-4KIJdEj/8Ip9yqJleVSFe68r/U5bn5o/lYUwnFNEnDNxmpUbOlr7x3DXYuRFi1sfoMUxK9K1DrjnBkR7YYF00g==}
engines: {node: '>=18'}
- '@sentry-internal/browser-utils@9.45.0':
- resolution: {integrity: sha512-L1+lak0ZBCfaGBW37NxRDsl1Gbu5edMsCT/TcWlNfexFRWka3mYwOAqpdIIHD+uDbcSe/U06+oVQHoGM64habg==}
+ '@sentry-internal/browser-utils@9.46.0':
+ resolution: {integrity: sha512-Q0CeHym9wysku8mYkORXmhtlBE0IrafAI+NiPSqxOBKXGOCWKVCvowHuAF56GwPFic2rSrRnub5fWYv7T1jfEQ==}
engines: {node: '>=18'}
- '@sentry-internal/feedback@10.0.0':
- resolution: {integrity: sha512-vv5+cEXUjL68vgMA1YkY81RNGnQUurgsy4Cy/2/pL9p+n9q736jq+lFfKlOMPwGQDXEQmouSNLgyhlg4nSvGcg==}
+ '@sentry-internal/feedback@10.5.0':
+ resolution: {integrity: sha512-x79P4VZwUxb1EGZb9OQ5EEgrDWFCUlrbzHBwV/oocQA5Ss1SFz5u6cP5Ak7yJtILiJtdGzAyAoQOy4GKD13D4Q==}
engines: {node: '>=18'}
- '@sentry-internal/feedback@9.45.0':
- resolution: {integrity: sha512-nirzAIAnS0CAmBZ6ZNEPfeKoR7v2jyipTLt2RAdLZAZv2ZPTVeUaVPjbUdBlmDx9Rp622vUDVtlESDXrNLkDMg==}
+ '@sentry-internal/feedback@9.46.0':
+ resolution: {integrity: sha512-KLRy3OolDkGdPItQ3obtBU2RqDt9+KE8z7r7Gsu7c6A6A89m8ZVlrxee3hPQt6qp0YY0P8WazpedU3DYTtaT8w==}
engines: {node: '>=18'}
- '@sentry-internal/replay-canvas@10.0.0':
- resolution: {integrity: sha512-iPNgsSTdB55NtHq24WoHLRYtTeE0zF5shx+eJVCmvVti9OTwRLRAPcQ8vnCQzt5sAKPUo6kAAnY5EPiTNMP5+w==}
+ '@sentry-internal/replay-canvas@10.5.0':
+ resolution: {integrity: sha512-5nrRKd5swefd9+sFXFZ/NeL3bz/VxBls3ubAQ3afak15FikkSyHq3oKRKpMOtDsiYKXE3Bc0y3rF5A+y3OXjIA==}
engines: {node: '>=18'}
- '@sentry-internal/replay-canvas@9.45.0':
- resolution: {integrity: sha512-gHlR5D5zy8e0macrOBqD+x11sdHyX5Xgkh7NCft1H5LXOtvp6dMSafLRidpFltZWFjsUhLQ8/O1bXyzNuDIq9Q==}
+ '@sentry-internal/replay-canvas@9.46.0':
+ resolution: {integrity: sha512-QcBjrdRWFJrrrjbmrr2bbrp2R9RYj1KMEbhHNT2Lm1XplIQw+tULEKOHxNtkUFSLR1RNje7JQbxhzM1j95FxVQ==}
engines: {node: '>=18'}
- '@sentry-internal/replay@10.0.0':
- resolution: {integrity: sha512-3rjFH30hClxn65e2afjVom1tud8qYkyQq0o+IkskTCA0iUHrsgDKAh1mhyU7Ph26btynJGIfJtMu53zKJW/ncg==}
+ '@sentry-internal/replay@10.5.0':
+ resolution: {integrity: sha512-Dp4coE/nPzhFrYH3iVrpVKmhNJ1m/jGXMEDBCNg3wJZRszI41Hrj0jCAM0Y2S3Q4IxYOmFYaFbGtVpAznRyOHg==}
engines: {node: '>=18'}
- '@sentry-internal/replay@9.45.0':
- resolution: {integrity: sha512-HrSenUmkGX++53pbF2veaC2JodYLAmFOQHKiJyhmmQuNpAwncdIAQ3An3VIb4A3qXrPTEincWZrgNH896JaKeA==}
+ '@sentry-internal/replay@9.46.0':
+ resolution: {integrity: sha512-+8JUblxSSnN0FXcmOewbN+wIc1dt6/zaSeAvt2xshrfrLooVullcGsuLAiPhY0d/e++Fk06q1SAl9g4V0V13gg==}
engines: {node: '>=18'}
- '@sentry/browser@10.0.0':
- resolution: {integrity: sha512-heta2gqiVBOPN59H4PRPS956ZNagXlqrTUeoaQdcLa8AVmPBFZqkkBbZIogieHDMGp/m1M6WqdOcV6rAb26NHw==}
+ '@sentry/browser@10.5.0':
+ resolution: {integrity: sha512-o5pEJeZ/iZ7Fmaz2sIirThfnmSVNiP5ZYhacvcDi0qc288TmBbikCX3fXxq3xiSkhXfe1o5QIbNyovzfutyuVw==}
engines: {node: '>=18'}
- '@sentry/browser@9.45.0':
- resolution: {integrity: sha512-7h9X7CmT6dI/cjzz6MdkHm7Qp6QAf4o/qPrHh47u1ZWJi4B4OxGnCTjVoOoIcwPdSNfXsl0q8LpaJa9wHXrVbQ==}
+ '@sentry/browser@9.46.0':
+ resolution: {integrity: sha512-NOnCTQCM0NFuwbyt4DYWDNO2zOTj1mCf43hJqGDFb1XM9F++7zAmSNnCx4UrEoBTiFOy40McJwBBk9D1blSktA==}
engines: {node: '>=18'}
- '@sentry/core@10.0.0':
- resolution: {integrity: sha512-UvkPzWVcXVSB6GOmETlEXlBumquFWCve0VnR2SqQIAyJPcj7mO6BvYrpuyit4c4XXaChaJe+bPZ6+4XQbUHnAA==}
+ '@sentry/core@10.5.0':
+ resolution: {integrity: sha512-jTJ8NhZSKB2yj3QTVRXfCCngQzAOLThQUxCl9A7Mv+XF10tP7xbH/88MVQ5WiOr2IzcmrB9r2nmUe36BnMlLjA==}
engines: {node: '>=18'}
'@sentry/core@8.55.0':
resolution: {integrity: sha512-6g7jpbefjHYs821Z+EBJ8r4Z7LT5h80YSWRJaylGS4nW5W5Z2KXzpdnyFarv37O7QjauzVC2E+PABmpkw5/JGA==}
engines: {node: '>=14.18'}
- '@sentry/core@9.45.0':
- resolution: {integrity: sha512-yTpB53fBEWTMzltD/8f/qI2MFTwgd2vSkn7pOZQusSOMtyt0Bsm/77oqXldIt+eMBAImZalzZaxmaN7RyiRKWQ==}
+ '@sentry/core@9.46.0':
+ resolution: {integrity: sha512-it7JMFqxVproAgEtbLgCVBYtQ9fIb+Bu0JD+cEplTN/Ukpe6GaolyYib5geZqslVxhp2sQgT+58aGvfd/k0N8Q==}
engines: {node: '>=18'}
'@sentry/node@8.55.0':
@@ -3533,8 +3809,8 @@ packages:
engines: {node: '>=14.18'}
hasBin: true
- '@sentry/vue@10.0.0':
- resolution: {integrity: sha512-XHrI68765zARx8VFYwqClTl6DZeu+BZzAuZlvUYak+LCjcvQ0RmO6hIetRsazT7+pwEea7i+fINvg8Jimz5ozA==}
+ '@sentry/vue@10.5.0':
+ resolution: {integrity: sha512-UbQF7F2C6WaUaDuZEfePiCblZH11nGZfs7/+U/Qt4BRKWL74I0JtXy28tZ3cYI/cM2EenxpnUkjUAMATeZ5/Xg==}
engines: {node: '>=18'}
peerDependencies:
pinia: 2.x || 3.x
@@ -3543,8 +3819,8 @@ packages:
pinia:
optional: true
- '@sentry/vue@9.45.0':
- resolution: {integrity: sha512-X2olAG0smwZXgnoUVfPSsjZYGjjVVR7nMKhOk5IWESxa24iXIl/ibLPCqQvlMa3VqmQyI2eWqxttSzKMOPcXQg==}
+ '@sentry/vue@9.46.0':
+ resolution: {integrity: sha512-xFeZevR2nG+4tdvZcVgO6U1YiTQJZJTtV8aKRsCEh4yYpBO3FrfLxbSMTUeipILfKxpFf2iu1lwmqNyQtEllkA==}
engines: {node: '>=18'}
peerDependencies:
pinia: 2.x || 3.x
@@ -3553,23 +3829,23 @@ packages:
pinia:
optional: true
- '@shikijs/core@3.9.1':
- resolution: {integrity: sha512-W5Vwen0KJCtR7KFRo+3JLGAqLUPsfW7e+wZ4yaRBGIogwI9ZlnkpRm9ZV8JtfzMxOkIwZwMmmN0hNErLtm3AYg==}
+ '@shikijs/core@3.11.0':
+ resolution: {integrity: sha512-oJwU+DxGqp6lUZpvtQgVOXNZcVsirN76tihOLBmwILkKuRuwHteApP8oTXmL4tF5vS5FbOY0+8seXmiCoslk4g==}
- '@shikijs/engine-javascript@3.9.1':
- resolution: {integrity: sha512-4hGenxYpAmtALryKsdli2K58F0s7RBYpj/RSDcAAGfRM6eTEGI5cZnt86mr+d9/4BaZ5sH5s4p3VU5irIdhj9Q==}
+ '@shikijs/engine-javascript@3.11.0':
+ resolution: {integrity: sha512-6/ov6pxrSvew13k9ztIOnSBOytXeKs5kfIR7vbhdtVRg+KPzvp2HctYGeWkqv7V6YIoLicnig/QF3iajqyElZA==}
- '@shikijs/engine-oniguruma@3.9.1':
- resolution: {integrity: sha512-WPlL/xqviwS3te4unSGGGfflKsuHLMI6tPdNYvgz/IygcBT6UiwDFSzjBKyebwi5GGSlXsjjdoJLIBnAplmEZw==}
+ '@shikijs/engine-oniguruma@3.11.0':
+ resolution: {integrity: sha512-4DwIjIgETK04VneKbfOE4WNm4Q7WC1wo95wv82PoHKdqX4/9qLRUwrfKlmhf0gAuvT6GHy0uc7t9cailk6Tbhw==}
- '@shikijs/langs@3.9.1':
- resolution: {integrity: sha512-Vyy2Yv9PP3Veh3VSsIvNncOR+O93wFsNYgN2B6cCCJlS7H9SKFYc55edsqernsg8WT/zam1cfB6llJsQWLnVhA==}
+ '@shikijs/langs@3.11.0':
+ resolution: {integrity: sha512-Njg/nFL4HDcf/ObxcK2VeyidIq61EeLmocrwTHGGpOQx0BzrPWM1j55XtKQ1LvvDWH15cjQy7rg96aJ1/l63uw==}
- '@shikijs/themes@3.9.1':
- resolution: {integrity: sha512-zAykkGECNICCMXpKeVvq04yqwaSuAIvrf8MjsU5bzskfg4XreU+O0B5wdNCYRixoB9snd3YlZ373WV5E/g5T9A==}
+ '@shikijs/themes@3.11.0':
+ resolution: {integrity: sha512-BhhWRzCTEk2CtWt4S4bgsOqPJRkapvxdsifAwqP+6mk5uxboAQchc0etiJ0iIasxnMsb764qGD24DK9albcU9Q==}
- '@shikijs/types@3.9.1':
- resolution: {integrity: sha512-rqM3T7a0iM1oPKz9iaH/cVgNX9Vz1HERcUcXJ94/fulgVdwqfnhXzGxO4bLrAnh/o5CPLy3IcYedogfV+Ns0Qg==}
+ '@shikijs/types@3.11.0':
+ resolution: {integrity: sha512-RB7IMo2E7NZHyfkqAuaf4CofyY8bPzjWPjJRzn6SEak3b46fIQyG6Vx5fG/obqkfppQ+g8vEsiD7Uc6lqQt32Q==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -3909,11 +4185,11 @@ packages:
peerDependencies:
storybook: ^8.6.14
- '@storybook/addon-links@9.1.0':
- resolution: {integrity: sha512-IWeGBPe1ZkyNgO3kjmAP//+I87wtCFNXlsUDQnLo/YBOIRLVKiyQlIdEQSzpnRkAMFl5I91qFqzGouvE5otcGA==}
+ '@storybook/addon-links@9.1.3':
+ resolution: {integrity: sha512-zLpOf9UYtxEaCQgbpOqOAW0f/puumwzTNA/AHDkqwe/BAOtBXyS/bocQIO6Oxj8z4kp+bYqxW6c2OA0/EyII0Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.0
+ storybook: ^9.1.3
peerDependenciesMeta:
react:
optional: true
@@ -3960,10 +4236,10 @@ packages:
react-dom:
optional: true
- '@storybook/builder-vite@9.1.0':
- resolution: {integrity: sha512-qLQ9Kn8UxZk5bFdUVfka3BAk//i3nJH+EUq8h3VeSyOHDfoDAHxOe2usbMz3hEWZLJebAVY0TFO/P+fznBIA0g==}
+ '@storybook/builder-vite@9.1.3':
+ resolution: {integrity: sha512-bstS/GsVJ5zVkRKAJociocA2omxU4CaNAP58fxS280JiRYgcrRaydDd7vwk6iGJ3xWbzwV0wH8SP54LVNyRY6Q==}
peerDependencies:
- storybook: ^9.1.0
+ storybook: ^9.1.3
vite: ^5.0.0 || ^6.0.0 || ^7.0.0
'@storybook/components@8.6.14':
@@ -3981,10 +4257,10 @@ packages:
peerDependencies:
storybook: ^8.6.14
- '@storybook/csf-plugin@9.1.0':
- resolution: {integrity: sha512-1lgYCfIE/j8Ae50QT6g7+wKe9CDi6ZYoSE3aukzdAdLoKAa6KqhMnsc5jdmGNqWbkpyOMVlmg+yT+CRJPaczeQ==}
+ '@storybook/csf-plugin@9.1.3':
+ resolution: {integrity: sha512-wqh+tTCX2WZqVDVjhk/a6upsyYj/Kc85Wf6ywPx4pcFYxQZxiKF/wtuM9yzEpZC6fZHNvlKkzXWvP4wJOnm+zg==}
peerDependencies:
- storybook: ^9.1.0
+ storybook: ^9.1.3
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
@@ -4018,29 +4294,29 @@ packages:
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
storybook: ^8.6.14
- '@storybook/react-dom-shim@9.1.0':
- resolution: {integrity: sha512-/rxGDIpAwGWvUixsq2a70WuErJ75uxv1KTPAZNokAKR1P1GXSnD2O+ZWoUq1Xw6Fp/8y7ExMulFWgrCpQqfSag==}
+ '@storybook/react-dom-shim@9.1.3':
+ resolution: {integrity: sha512-zIgFwZqV8cvE+lzJDcD13rItxoWyYNUWu7eJQAnHz5RnyHhpu6rFgQej7i6J3rPmy9xVe+Rq6XsXgDNs6pIekQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.0
+ storybook: ^9.1.3
- '@storybook/react-vite@9.1.0':
- resolution: {integrity: sha512-GhRnkW1KE2QZZOMkKZ52JcOmlaEvAAEazfPILwnYvSBsenpAwnnlAG/yY7bqUVUD9OLaEFqxCcMuDb9auaXSkw==}
+ '@storybook/react-vite@9.1.3':
+ resolution: {integrity: sha512-iNRRxA5G9Yaw5etbRdCMnJtjI1VkzA7juc+/caVhKKut25sI8cOF4GRPLCbotLz9xmitQR2X7beZMPPVIYk86A==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.0
+ storybook: ^9.1.3
vite: ^5.0.0 || ^6.0.0 || ^7.0.0
- '@storybook/react@9.1.0':
- resolution: {integrity: sha512-4rMWxFSrp+/ypqZZps30h+op5urzZ4zhxzTyVtwK3xmUdg1SDxZ6hAGCFTur9Yav5MWfQDd9IkoBQ6nZS1So4A==}
+ '@storybook/react@9.1.3':
+ resolution: {integrity: sha512-CgJMk4Y8EfoFxWiTB53QxnN+nQbAkw+NBaNjsaaeDNOE1R0ximP/fn5b2jcLvM+b5ojjJiJL1QCzFyoPWImHIQ==}
engines: {node: '>=20.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
- storybook: ^9.1.0
+ storybook: ^9.1.3
typescript: '>= 4.9.x'
peerDependenciesMeta:
typescript:
@@ -4066,18 +4342,18 @@ packages:
peerDependencies:
storybook: ^8.2.0 || ^8.3.0-0 || ^8.4.0-0 || ^8.5.0-0 || ^8.6.0-0
- '@storybook/vue3-vite@9.1.0':
- resolution: {integrity: sha512-V5QBb9K/0utf29m39wKFVPeK0AFslzj28sQdUdneJ//8LimxHmgTltm23XLWbNRB96hbvK4SAA+MIVhZceasyA==}
+ '@storybook/vue3-vite@9.1.3':
+ resolution: {integrity: sha512-YBSI4tuPH+Gt011BwKLjehYfpyGfA8QLWO4BKANNfay45gwWZy+EvtkQebVpdiLxOFwexfVHOqjK2wHFvfMriA==}
engines: {node: '>=20.0.0'}
peerDependencies:
- storybook: ^9.1.0
+ storybook: ^9.1.3
vite: ^5.0.0 || ^6.0.0 || ^7.0.0
- '@storybook/vue3@9.1.0':
- resolution: {integrity: sha512-I8ESFW+Rh0PKN9JME3m3uSAQMqUQYDyy97uwwAsGdOAQQQNhFb8JAzPBIJ9a0wZrshM8WHP+OAlSrUaulU66/w==}
+ '@storybook/vue3@9.1.3':
+ resolution: {integrity: sha512-1xRFP1qyE6cBo9RlR92nnHekpGvJZ06DpnVszsJo0T7MRV+odEDw04KNfQr/SXt6vQtDN+5qszjSx+ZQlPRvTA==}
engines: {node: '>=20.0.0'}
peerDependencies:
- storybook: ^9.1.0
+ storybook: ^9.1.3
vue: ^3.0.0
'@stylistic/eslint-plugin@2.13.0':
@@ -4103,14 +4379,14 @@ packages:
cpu: [arm64]
os: [android]
- '@swc/core-darwin-arm64@1.13.3':
- resolution: {integrity: sha512-ux0Ws4pSpBTqbDS9GlVP354MekB1DwYlbxXU3VhnDr4GBcCOimpocx62x7cFJkSpEBF8bmX8+/TTCGKh4PbyXw==}
+ '@swc/core-darwin-arm64@1.13.4':
+ resolution: {integrity: sha512-CGbTu9dGBwgklUj+NAQAYyPjBuoHaNRWK4QXJRv1QNIkhtE27aY7QA9uEON14SODxsio3t8+Pjjl2Mzx1Pxf+g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.13.3':
- resolution: {integrity: sha512-p0X6yhxmNUOMZrbeZ3ZNsPige8lSlSe1llllXvpCLkKKxN/k5vZt1sULoq6Nj4eQ7KeHQVm81/+AwKZyf/e0TA==}
+ '@swc/core-darwin-x64@1.13.4':
+ resolution: {integrity: sha512-qLFwYmLrqHNCf+JO9YLJT6IP/f9LfbXILTaqyfluFLW1GCfJyvUrSt3CWaL2lwwyT1EbBh6BVaAAecXiJIo3vg==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -4121,56 +4397,56 @@ packages:
cpu: [x64]
os: [freebsd]
- '@swc/core-linux-arm-gnueabihf@1.13.3':
- resolution: {integrity: sha512-OmDoiexL2fVWvQTCtoh0xHMyEkZweQAlh4dRyvl8ugqIPEVARSYtaj55TBMUJIP44mSUOJ5tytjzhn2KFxFcBA==}
+ '@swc/core-linux-arm-gnueabihf@1.13.4':
+ resolution: {integrity: sha512-y7SeNIA9em3+smNMpr781idKuNwJNAqewiotv+pIR5FpXdXXNjHWW+jORbqQYd61k6YirA5WQv+Af4UzqEX17g==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.13.3':
- resolution: {integrity: sha512-STfKku3QfnuUj6k3g9ld4vwhtgCGYIFQmsGPPgT9MK/dI3Lwnpe5Gs5t1inoUIoGNP8sIOLlBB4HV4MmBjQuhw==}
+ '@swc/core-linux-arm64-gnu@1.13.4':
+ resolution: {integrity: sha512-u0c51VdzRmXaphLgghY9+B2Frzler6nIv+J788nqIh6I0ah3MmMW8LTJKZfdaJa3oFxzGNKXsJiaU2OFexNkug==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.13.3':
- resolution: {integrity: sha512-bc+CXYlFc1t8pv9yZJGus372ldzOVscBl7encUBlU1m/Sig0+NDJLz6cXXRcFyl6ABNOApWeR4Yl7iUWx6C8og==}
+ '@swc/core-linux-arm64-musl@1.13.4':
+ resolution: {integrity: sha512-Z92GJ98x8yQHn4I/NPqwAQyHNkkMslrccNVgFcnY1msrb6iGSw5uFg2H2YpvQ5u2/Yt6CRpLIUVVh8SGg1+gFA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.13.3':
- resolution: {integrity: sha512-dFXoa0TEhohrKcxn/54YKs1iwNeW6tUkHJgXW33H381SvjKFUV53WR231jh1sWVJETjA3vsAwxKwR23s7UCmUA==}
+ '@swc/core-linux-x64-gnu@1.13.4':
+ resolution: {integrity: sha512-rSUcxgpFF0L8Fk1CbUf946XCX1CRp6eaHfKqplqFNWCHv8HyqAtSFvgCHhT+bXru6Ca/p3sLC775SUeSWhsJ9w==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.13.3':
- resolution: {integrity: sha512-ieyjisLB+ldexiE/yD8uomaZuZIbTc8tjquYln9Quh5ykOBY7LpJJYBWvWtm1g3pHv6AXlBI8Jay7Fffb6aLfA==}
+ '@swc/core-linux-x64-musl@1.13.4':
+ resolution: {integrity: sha512-qY77eFUvmdXNSmTW+I1fsz4enDuB0I2fE7gy6l9O4koSfjcCxkXw2X8x0lmKLm3FRiINS1XvZSg2G+q4NNQCRQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.13.3':
- resolution: {integrity: sha512-elTQpnaX5vESSbhCEgcwXjpMsnUbqqHfEpB7ewpkAsLzKEXZaK67ihSRYAuAx6ewRQTo7DS5iTT6X5aQD3MzMw==}
+ '@swc/core-win32-arm64-msvc@1.13.4':
+ resolution: {integrity: sha512-xjPeDrOf6elCokxuyxwoskM00JJFQMTT2hTQZE24okjG3JiXzSFV+TmzYSp+LWNxPpnufnUUy/9Ee8+AcpslGw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.13.3':
- resolution: {integrity: sha512-nvehQVEOdI1BleJpuUgPLrclJ0TzbEMc+MarXDmmiRFwEUGqj+pnfkTSb7RZyS1puU74IXdK/YhTirHurtbI9w==}
+ '@swc/core-win32-ia32-msvc@1.13.4':
+ resolution: {integrity: sha512-Ta+Bblc9tE9X9vQlpa3r3+mVnHYdKn09QsZ6qQHvuXGKWSS99DiyxKTYX2vxwMuoTObR0BHvnhNbaGZSV1VwNA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.13.3':
- resolution: {integrity: sha512-A+JSKGkRbPLVV2Kwx8TaDAV0yXIXm/gc8m98hSkVDGlPBBmydgzNdWy3X7HTUBM7IDk7YlWE7w2+RUGjdgpTmg==}
+ '@swc/core-win32-x64-msvc@1.13.4':
+ resolution: {integrity: sha512-pHnb4QwGiuWs4Z9ePSgJ48HP3NZIno6l75SB8YLCiPVDiLhvCLKEjz/caPRsFsmet9BEP8e3bAf2MV8MXgaTSg==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.13.3':
- resolution: {integrity: sha512-ZaDETVWnm6FE0fc+c2UE8MHYVS3Fe91o5vkmGfgwGXFbxYvAjKSqxM/j4cRc9T7VZNSJjriXq58XkfCp3Y6f+w==}
+ '@swc/core@1.13.4':
+ resolution: {integrity: sha512-bCq2GCuKV16DSOOEdaRqHMm1Ok4YEoLoNdgdzp8BS/Hxxr/0NVCHBUgRLLRy/TlJGv20Idx+djd5FIDvsnqMaw==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '>=0.5.17'
@@ -4439,8 +4715,8 @@ packages:
'@types/long@4.0.2':
resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}
- '@types/matter-js@0.19.8':
- resolution: {integrity: sha512-W2ZWG58Lijv/4v768NgpeyFqqiOyslmAU7qqM1Lhz4XBoUgGtZtPz4CjcOKYtqHIak14dvPldslQhltqLTWwsw==}
+ '@types/matter-js@0.20.0':
+ resolution: {integrity: sha512-jOroeU1wEoizJ3rUnhS2HWzqbQrMHEmShTPUf8sbAghuZCAEQT7y3ojXAzrcQOWYkP93KhegDZI4gvMu5odfWw==}
'@types/mdast@4.0.3':
resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==}
@@ -4478,11 +4754,11 @@ packages:
'@types/node@22.17.0':
resolution: {integrity: sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==}
- '@types/node@22.17.1':
- resolution: {integrity: sha512-y3tBaz+rjspDTylNjAX37jEC3TETEFGNJL6uQDxwF9/8GLLIjW1rvVHlynyuUKMnMr1Roq8jOv3vkopBjC4/VA==}
+ '@types/node@22.17.2':
+ resolution: {integrity: sha512-gL6z5N9Jm9mhY+U2KXZpteb+09zyffliRkZyZOHODGATyC5B1Jt/7TzuuiLkFsSUMLbS1OLmlj/E+/3KF4Q/4w==}
- '@types/nodemailer@6.4.17':
- resolution: {integrity: sha512-I9CCaIp6DTldEg7vyUTZi8+9Vo0hi1/T8gv3C89yk1rSAAzoKQ8H8ki/jBYJSFoH/BisgLP8tkZMlQ91CIquww==}
+ '@types/nodemailer@6.4.19':
+ resolution: {integrity: sha512-Fi8DwmuAduTk1/1MpkR9EwS0SsDvYXx5RxivAVII1InDCIxmhj/iQm3W8S3EVb/0arnblr6PK0FK4wYa7bwdLg==}
'@types/normalize-package-data@2.4.1':
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -4654,11 +4930,11 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/eslint-plugin@8.39.0':
- resolution: {integrity: sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==}
+ '@typescript-eslint/eslint-plugin@8.40.0':
+ resolution: {integrity: sha512-w/EboPlBwnmOBtRbiOvzjD+wdiZdgFeo17lkltrtn7X37vagKKWJABvyfsJXTlHe6XBzugmYgd4A4nW+k8Mixw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.39.0
+ '@typescript-eslint/parser': ^8.40.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <6.0.0'
@@ -4669,8 +4945,8 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.39.0':
- resolution: {integrity: sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==}
+ '@typescript-eslint/parser@8.40.0':
+ resolution: {integrity: sha512-jCNyAuXx8dr5KJMkecGmZ8KI61KBUhkCob+SD+C+I5+Y1FWI2Y3QmY4/cxMCC5WAsZqoEtEETVhUiUMIGCf6Bw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -4682,8 +4958,8 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/project-service@8.39.0':
- resolution: {integrity: sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==}
+ '@typescript-eslint/project-service@8.40.0':
+ resolution: {integrity: sha512-/A89vz7Wf5DEXsGVvcGdYKbVM9F7DyFXj52lNYUDS1L9yJfqjW/fIp5PgMuEJL/KeqVTe2QSbXAGUZljDUpArw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -4692,8 +4968,8 @@ packages:
resolution: {integrity: sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/scope-manager@8.39.0':
- resolution: {integrity: sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==}
+ '@typescript-eslint/scope-manager@8.40.0':
+ resolution: {integrity: sha512-y9ObStCcdCiZKzwqsE8CcpyuVMwRouJbbSrNuThDpv16dFAj429IkM6LNb1dZ2m7hK5fHyzNcErZf7CEeKXR4w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/tsconfig-utils@8.38.0':
@@ -4702,8 +4978,8 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/tsconfig-utils@8.39.0':
- resolution: {integrity: sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==}
+ '@typescript-eslint/tsconfig-utils@8.40.0':
+ resolution: {integrity: sha512-jtMytmUaG9d/9kqSl/W3E3xaWESo4hFDxAIHGVW/WKKtQhesnRIJSAJO6XckluuJ6KDB5woD1EiqknriCtAmcw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -4715,8 +4991,8 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/type-utils@8.39.0':
- resolution: {integrity: sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==}
+ '@typescript-eslint/type-utils@8.40.0':
+ resolution: {integrity: sha512-eE60cK4KzAc6ZrzlJnflXdrMqOBaugeukWICO2rB0KNvwdIMaEaYiywwHMzA1qFpTxrLhN9Lp4E/00EgWcD3Ow==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -4726,8 +5002,8 @@ packages:
resolution: {integrity: sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/types@8.39.0':
- resolution: {integrity: sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==}
+ '@typescript-eslint/types@8.40.0':
+ resolution: {integrity: sha512-ETdbFlgbAmXHyFPwqUIYrfc12ArvpBhEVgGAxVYSwli26dn8Ko+lIo4Su9vI9ykTZdJn+vJprs/0eZU0YMAEQg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@8.38.0':
@@ -4736,8 +5012,8 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/typescript-estree@8.39.0':
- resolution: {integrity: sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==}
+ '@typescript-eslint/typescript-estree@8.40.0':
+ resolution: {integrity: sha512-k1z9+GJReVVOkc1WfVKs1vBrR5MIKKbdAjDTPvIK3L8De6KbFfPFt6BKpdkdk7rZS2GtC/m6yI5MYX+UsuvVYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -4749,8 +5025,8 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.39.0':
- resolution: {integrity: sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==}
+ '@typescript-eslint/utils@8.40.0':
+ resolution: {integrity: sha512-Cgzi2MXSZyAUOY+BFwGs17s7ad/7L+gKt6Y8rAVVWS+7o6wrjeFN4nVfTpbE25MNcxyJ+iYUXflbs2xR9h4UBg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -4760,8 +5036,8 @@ packages:
resolution: {integrity: sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/visitor-keys@8.39.0':
- resolution: {integrity: sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==}
+ '@typescript-eslint/visitor-keys@8.40.0':
+ resolution: {integrity: sha512-8CZ47QwalyRjsypfwnbI3hKy5gJDPmrkLjkgMxhi0+DZZ2QNx2naS6/hWoVYUHU7LU2zleF68V9miaVZvhFfTA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.2.0':
@@ -4833,32 +5109,38 @@ packages:
'@volar/language-core@2.2.0':
resolution: {integrity: sha512-a8WG9+4OdeNDW4ywABZIM6S6UN7em8uIlM/BZ2pWQUYrVmX+m8sj/X+QadvO+Li/t/LjAqbWJQtVgxdpEWLALQ==}
- '@volar/language-core@2.4.22':
- resolution: {integrity: sha512-gp4M7Di5KgNyIyO903wTClYBavRt6UyFNpc5LWfyZr1lBsTUY+QrVZfmbNF2aCyfklBOVk9YC4p+zkwoyT7ECg==}
+ '@volar/language-core@2.4.23':
+ resolution: {integrity: sha512-hEEd5ET/oSmBC6pi1j6NaNYRWoAiDhINbT8rmwtINugR39loROSlufGdYMF9TaKGfz+ViGs1Idi3mAhnuPcoGQ==}
'@volar/source-map@2.2.0':
resolution: {integrity: sha512-HQlPRlHOVqCCHK8wI76ZldHkEwKsjp7E6idUc36Ekni+KJDNrqgSqPvyHQixybXPHNU7CI9Uxd9/IkxO7LuNBw==}
- '@volar/source-map@2.4.22':
- resolution: {integrity: sha512-L2nVr/1vei0xKRgO2tYVXtJYd09HTRjaZi418e85Q+QdbbqA8h7bBjfNyPPSsjnrOO4l4kaAo78c8SQUAdHvgA==}
+ '@volar/source-map@2.4.23':
+ resolution: {integrity: sha512-Z1Uc8IB57Lm6k7q6KIDu/p+JWtf3xsXJqAX/5r18hYOTpJyBn0KXUR8oTJ4WFYOcDzWC9n3IflGgHowx6U6z9Q==}
'@volar/typescript@2.2.0':
resolution: {integrity: sha512-wC6l4zLiiCLxF+FGaHCbWlQYf4vMsnRxYhcI6WgvaNppOD6r1g+Ef1RKRJUApALWU46Yy/JDU/TbdV6w/X6Liw==}
- '@volar/typescript@2.4.22':
- resolution: {integrity: sha512-6ZczlJW1/GWTrNnkmZxJp4qyBt/SGVlcTuCWpI5zLrdPdCZsj66Aff9ZsfFaT3TyjG8zVYgBMYPuCm/eRkpcpQ==}
+ '@volar/typescript@2.4.23':
+ resolution: {integrity: sha512-lAB5zJghWxVPqfcStmAP1ZqQacMpe90UrP5RJ3arDyrhy4aCUQqmxPPLB2PWDKugvylmO41ljK7vZ+t6INMTag==}
'@vue/compiler-core@3.5.18':
resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==}
+ '@vue/compiler-core@3.5.19':
+ resolution: {integrity: sha512-/afpyvlkrSNYbPo94Qu8GtIOWS+g5TRdOvs6XZNw6pWQQmj5pBgSZvEPOIZlqWq0YvoUhDDQaQ2TnzuJdOV4hA==}
+
'@vue/compiler-dom@3.5.18':
resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==}
- '@vue/compiler-sfc@3.5.18':
- resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==}
+ '@vue/compiler-dom@3.5.19':
+ resolution: {integrity: sha512-Drs6rPHQZx/pN9S6ml3Z3K/TWCIRPvzG2B/o5kFK9X0MNHt8/E+38tiRfojufrYBfA6FQUFB2qBBRXlcSXWtOA==}
- '@vue/compiler-ssr@3.5.18':
- resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==}
+ '@vue/compiler-sfc@3.5.19':
+ resolution: {integrity: sha512-YWCm1CYaJ+2RvNmhCwI7t3I3nU+hOrWGWMsn+Z/kmm1jy5iinnVtlmkiZwbLlbV1SRizX7vHsc0/bG5dj0zRTg==}
+
+ '@vue/compiler-ssr@3.5.19':
+ resolution: {integrity: sha512-/wx0VZtkWOPdiQLWPeQeqpHWR/LuNC7bHfSX7OayBTtUy8wur6vT6EQIX6Et86aED6J+y8tTw43qo2uoqGg5sw==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -4871,31 +5153,34 @@ packages:
typescript:
optional: true
- '@vue/language-core@3.0.5':
- resolution: {integrity: sha512-gCEjn9Ik7I/seHVNIEipOm8W+f3/kg60e8s1IgIkMYma2wu9ZGUTMv3mSL2bX+Md2L8fslceJ4SU8j1fgSRoiw==}
+ '@vue/language-core@3.0.6':
+ resolution: {integrity: sha512-e2RRzYWm+qGm8apUHW1wA5RQxzNhkqbbKdbKhiDUcmMrNAZGyM8aTiL3UrTqkaFI5s7wJRGGrp4u3jgusuBp2A==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@vue/reactivity@3.5.18':
- resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==}
+ '@vue/reactivity@3.5.19':
+ resolution: {integrity: sha512-4bueZg2qs5MSsK2dQk3sssV0cfvxb/QZntTC8v7J448GLgmfPkQ+27aDjlt40+XFqOwUq5yRxK5uQh14Fc9eVA==}
- '@vue/runtime-core@3.5.18':
- resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==}
+ '@vue/runtime-core@3.5.19':
+ resolution: {integrity: sha512-TaooCr8Hge1sWjLSyhdubnuofs3shhzZGfyD11gFolZrny76drPwBVQj28/z/4+msSFb18tOIg6VVVgf9/IbIA==}
- '@vue/runtime-dom@3.5.18':
- resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==}
+ '@vue/runtime-dom@3.5.19':
+ resolution: {integrity: sha512-qmahqeok6ztuUTmV8lqd7N9ymbBzctNF885n8gL3xdCC1u2RnM/coX16Via0AiONQXUoYpxPojL3U1IsDgSWUQ==}
- '@vue/server-renderer@3.5.18':
- resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==}
+ '@vue/server-renderer@3.5.19':
+ resolution: {integrity: sha512-ZJ/zV9SQuaIO+BEEVq/2a6fipyrSYfjKMU3267bPUk+oTx/hZq3RzV7VCh0Unlppt39Bvh6+NzxeopIFv4HJNg==}
peerDependencies:
- vue: 3.5.18
+ vue: 3.5.19
'@vue/shared@3.5.18':
resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==}
+ '@vue/shared@3.5.19':
+ resolution: {integrity: sha512-IhXCOn08wgKrLQxRFKKlSacWg4Goi1BolrdEeLYn6tgHjJNXVrWJ5nzoxZqNwl5p88aLlQ8LOaoMa3AYvaKJ/Q==}
+
'@vue/test-utils@2.4.1':
resolution: {integrity: sha512-VO8nragneNzUZUah6kOjiFmD/gwRjUauG9DROh6oaOeFwX1cZRUNHhdeogE8635cISigXFTtGLUQWx5KCb0xeg==}
peerDependencies:
@@ -5046,13 +5331,13 @@ packages:
alien-signals@2.0.6:
resolution: {integrity: sha512-P3TxJSe31bUHBiblg59oU1PpaWPtmxF9GhJ/cB7OkgJ0qN/ifFSKUI25/v8ZhsT+lIG6ac8DpTOplXxORX6F3Q==}
- analytics-utils@1.0.14:
- resolution: {integrity: sha512-9v0kPd8v0GuBvfQcg5BO48AElaEAr9IXMAfJWXYMAhrD3QprgozEIUgMp/de0vS136PUOBB+10XQH9eBgBmfMw==}
+ analytics-utils@1.1.1:
+ resolution: {integrity: sha512-nRybjTpRAcHVhWb1cvYaOLJaI3R79r8XjMbu5c0wd2jKmANNqSrYwybiU0X3mp+CQQdm4YiAggTXb2cIA8XhUg==}
peerDependencies:
'@types/dlv': ^1.0.0
- analytics@0.8.16:
- resolution: {integrity: sha512-LEFQ47G9V1zVp9WIh2xhnbmSFEJq+WEzSv6voJ5uba88lefiIIYeG2nq87gFu83ocz1qtb9u7XgeaKKVBbbgWA==}
+ analytics@0.8.19:
+ resolution: {integrity: sha512-JFgasxpWFiAoqm5UHaGQv9j9OGz+f1KAeQkABYr3Z7YGhiqhQrBpPhIVAIEyttBRJZmew1QwMhN9/bOGGBnpJA==}
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
@@ -5388,8 +5673,8 @@ packages:
resolution: {integrity: sha512-WDtdLmJvAuNNPzByAYpRo2rF1Mmradw6gvWsQKf63476DDXmomT9zUiGypLcG4ibIM67vhAj8jJRdbmEws2Aqw==}
engines: {node: '>=6.14.2'}
- bullmq@5.56.9:
- resolution: {integrity: sha512-SL7OZG0x9sh/PC6ZVKqibSmPsbjViBaiFAyr3ujJRxb6nlZefb1hU0biJuvfI8/hQa4HtEG9sCHRMiz905B2eg==}
+ bullmq@5.58.1:
+ resolution: {integrity: sha512-ySnO1Yn+J7oVkXn4cvPQQK7RFEP3hlqwnIJRxumODyLk+1o4/3H5qwB7s7e9h5W6tZdktvysNZsE/e5/VdKvuA==}
buraha@0.0.1:
resolution: {integrity: sha512-G563A0mTbzknm2jDaNxfZuNKIdeArs8T+XQN6t+KbmgnOoevXSXhKDkyf8Md/36Jrx99ikwbCag37VGe3myExQ==}
@@ -5496,8 +5781,8 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.5.0:
- resolution: {integrity: sha512-1tm8DTaJhPBG3bIkVeZt1iZM9GfSX2lzOeDVZH9R9ffRHpmHvxZ/QhgQH/aDTkswQVt+YHdXAdS/In/30OjCbg==}
+ chalk@5.6.0:
+ resolution: {integrity: sha512-46QrSQFyVSEyYAgQ22hQ+zDa60YHA4fBstHmtSApj1Y5vKtG27fWowW03jCk5KcbXEWPZUIR894aARCA/G1kfQ==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
change-case@5.4.4:
@@ -5862,8 +6147,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- cssnano-preset-default@7.0.8:
- resolution: {integrity: sha512-d+3R2qwrUV3g4LEMOjnndognKirBZISylDZAF/TPeCWVjEwlXS2e4eN4ICkoobRe7pD3H6lltinKVyS1AJhdjQ==}
+ cssnano-preset-default@7.0.9:
+ resolution: {integrity: sha512-tCD6AAFgYBOVpMBX41KjbvRh9c2uUjLXRyV7KHSIrwHiq5Z9o0TFfUCoM3TwVrRsRteN3sVXGNvjVNxYzkpTsA==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -5874,8 +6159,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- cssnano@7.1.0:
- resolution: {integrity: sha512-Pu3rlKkd0ZtlCUzBrKL1Z4YmhKppjC1H9jo7u1o4qaKqyhvixFgu5qLyNIAOjSTg9DjVPtUqdROq2EfpVMEe+w==}
+ cssnano@7.1.1:
+ resolution: {integrity: sha512-fm4D8ti0dQmFPeF8DXSAA//btEmqCOgAc/9Oa3C1LW94h5usNrJEfrON7b4FkPZgnDEn6OUs5NdxiJZmAtGOpQ==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -5891,11 +6176,6 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
- cypress@14.5.3:
- resolution: {integrity: sha512-syLwKjDeMg77FRRx68bytLdlqHXDT4yBVh0/PPkcgesChYDjUZbwxLqMXuryYKzAyJsPsQHUDW1YU74/IYEUIA==}
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
- hasBin: true
-
cypress@14.5.4:
resolution: {integrity: sha512-0Dhm4qc9VatOcI1GiFGVt8osgpPdqJLHzRwcAB5MSD/CAAts3oybvPUPawHyvJZUd8osADqZe/xzMsZ8sDTjXw==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
@@ -6284,6 +6564,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.25.9:
+ resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -6378,8 +6663,8 @@ packages:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.33.0:
- resolution: {integrity: sha512-TS9bTNIryDzStCpJN93aC5VRSW3uTx9sClUn4B87pwiCaJh220otoI0X8mJKr+VcPtniMdN8GKjlwgWGUv5ZKA==}
+ eslint@9.34.0:
+ resolution: {integrity: sha512-RNCHRX5EwdrESy3Jc9o8ie8Bog+PeYvvSR8sDGoZxNFTvZ4dlxUB3WzQ3bQMztFrSRODGrLLj8g6OFuGY/aiQg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -6569,8 +6854,8 @@ packages:
resolution: {integrity: sha512-2qfoaQ3BQDhZ1gtbkKZd6n0kKxJISJGM6u/skD9ljdWItAscjXrtZ1lnjr7PavmXX9j4EyCPmBDiIsLn07d5vA==}
engines: {node: '>= 10'}
- fastify@5.4.0:
- resolution: {integrity: sha512-I4dVlUe+WNQAhKSyv15w+dwUh2EPiEl4X2lGYMmNSgF83WzTMAPKGdWEv5tPsCQOb+SOZwz8Vlta2vF+OeDgRw==}
+ fastify@5.5.0:
+ resolution: {integrity: sha512-ZWSWlzj3K/DcULCnCjEiC2zn2FBPdlZsSA/pnPa/dbUfLvxkD/Nqmb0XXMXLrWkeM4uQPUvjdJpwtXmTfriXqw==}
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
@@ -6589,6 +6874,15 @@ packages:
picomatch:
optional: true
+ fdir@6.5.0:
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
feed@4.2.2:
resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
engines: {node: '>=0.4.0'}
@@ -6924,8 +7218,8 @@ packages:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
- harfbuzzjs@0.4.8:
- resolution: {integrity: sha512-eo2DEe+xMev6szwGZETogFQ1Kx4G8vK4OSFSmbqEYKXrN89xN7LpxI9a9GI5G1rzPTBhM+iBUPZwhJ32wU/e1g==}
+ harfbuzzjs@0.4.9:
+ resolution: {integrity: sha512-ry24HoE67NmjDJ0tfSeRFOAntfZxF/hUgcy1tkc5uu65rXgdqEne4NlZ1+akSlkdZdQknKfxws98UhEbHYXBvQ==}
has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
@@ -7874,6 +8168,9 @@ packages:
magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ magic-string@0.30.18:
+ resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==}
+
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -7965,8 +8262,8 @@ packages:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
- meilisearch@0.51.0:
- resolution: {integrity: sha512-IuNsYyT8r/QLhU33XDZdXWUT6cA/nACCHHZc+NHkNuaU55LELRxff1uBJhpJcwjYaAPEEmeWrzBhYl2XlhJdAg==}
+ meilisearch@0.52.0:
+ resolution: {integrity: sha512-RqPsB4a78sXf/ATB7PIVvKCG7yf0y1M+uCj8Z9Wku44WmCy3iz0C1PHjVV5xphQolo09CdhdyFoRxHQSJkOdpg==}
memoizerific@1.11.3:
resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
@@ -8248,8 +8545,8 @@ packages:
peerDependencies:
msw: ^2.0.0
- msw@2.10.4:
- resolution: {integrity: sha512-6R1or/qyele7q3RyPwNuvc0IxO8L8/Aim6Sz5ncXEgcWUNxSKE+udriTOWHtpMwmfkLYlacA2y7TIx4cL5lgHA==}
+ msw@2.10.5:
+ resolution: {integrity: sha512-0EsQCrCI1HbhpBWd89DvmxY6plmvrM96b0sCIztnvcNHQbXn5vqwm1KlXslo6u4wN9LFGLC1WFjjgljcQhe40A==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -8540,8 +8837,8 @@ packages:
openapi-types@12.1.3:
resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==}
- openapi-typescript@7.8.0:
- resolution: {integrity: sha512-1EeVWmDzi16A+siQlo/SwSGIT7HwaFAVjvMA7/jG5HMLSnrUOzPL7uSTRZZa4v/LCRxHTApHKtNY6glApEoiUQ==}
+ openapi-typescript@7.9.1:
+ resolution: {integrity: sha512-9gJtoY04mk6iPMbToPjPxEAtfXZ0dTsMZtsgUI8YZta0btPPig9DJFP4jlerQD/7QOwYgb0tl+zLUpDf7vb7VA==}
hasBin: true
peerDependencies:
typescript: ^5.x
@@ -8556,8 +8853,8 @@ packages:
ospath@1.2.2:
resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==}
- otpauth@9.4.0:
- resolution: {integrity: sha512-fHIfzIG5RqCkK9cmV8WU+dPQr9/ebR5QOwGZn2JAr1RQF+lmAuLL2YdtdqvmBjNmgJlYk3KZ4a0XokaEhg1Jsw==}
+ otpauth@9.4.1:
+ resolution: {integrity: sha512-+iVvys36CFsyXEqfNftQm1II7SW23W1wx9RwNk0Cd97lbvorqAhBDksb/0bYry087QMxjiuBS0wokdoZ0iUeAw==}
outvariant@1.4.3:
resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
@@ -8838,8 +9135,8 @@ packages:
resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
engines: {node: '>=10.13.0'}
- pnpm@10.14.0:
- resolution: {integrity: sha512-rSenlkG0nD5IGhaoBbqnGBegS74Go40X5g4urug/ahRsamiBJfV5LkjdW6MOfaUqXNpMOZK5zPMz+c4iOvhHSA==}
+ pnpm@10.15.0:
+ resolution: {integrity: sha512-SG68JZ0+mZpOhpHOA7XKxKccvso5Nyqbdiy1AM/fCHPiyxar49lRse4s8BJQPwJ7mLZYTk3yJSTgx0UNnseqew==}
engines: {node: '>=18.12'}
hasBin: true
@@ -8863,8 +9160,8 @@ packages:
peerDependencies:
postcss: ^8.4.32
- postcss-convert-values@7.0.6:
- resolution: {integrity: sha512-MD/eb39Mr60hvgrqpXsgbiqluawYg/8K4nKsqRsuDX9f+xN1j6awZCUv/5tLH8ak3vYp/EMXwdcnXvfZYiejCQ==}
+ postcss-convert-values@7.0.7:
+ resolution: {integrity: sha512-HR9DZLN04Xbe6xugRH6lS4ZQH2zm/bFh/ZyRkpedZozhvh+awAfbA0P36InO4fZfDhvYfNJeNvlTf1sjwGbw/A==}
engines: {node: ^18.12.0 || ^20.9.0 || >=22.0}
peerDependencies:
postcss: ^8.4.32
@@ -9484,6 +9781,11 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ rollup@4.48.0:
+ resolution: {integrity: sha512-BXHRqK1vyt9XVSEHZ9y7xdYtuYbwVod2mLwOMFP7t/Eqoc1pHRlG/WdV2qNeNvZHRQdLedaFycljaYYM96RqJQ==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
rrweb-cssom@0.8.0:
resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
@@ -9527,8 +9829,8 @@ packages:
sanitize-html@2.17.0:
resolution: {integrity: sha512-dLAADUSS8rBwhaevT12yCezvioCA+bmUTPH/u57xKPT8d++voeYE6HeluA/bPbQ15TwDBG2ii+QZIEmYx8VdxA==}
- sass@1.89.2:
- resolution: {integrity: sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==}
+ sass@1.90.0:
+ resolution: {integrity: sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -9636,8 +9938,8 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shiki@3.9.1:
- resolution: {integrity: sha512-HogZ8nMnv9VAQMrG+P7BleJFhrKHm3fi6CYyHRbUu61gJ0lpqLr6ecYEui31IYG1Cn9Bad7N2vf332iXHnn0bQ==}
+ shiki@3.11.0:
+ resolution: {integrity: sha512-VgKumh/ib38I1i3QkMn6mAQA6XjjQubqaAYhfge71glAll0/4xnt8L2oSuC45Qcr/G5Kbskj4RliMQddGmy/Og==}
shimmer@1.2.1:
resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==}
@@ -9881,11 +10183,6 @@ packages:
standard-as-callback@2.1.0:
resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==}
- start-server-and-test@2.0.12:
- resolution: {integrity: sha512-U6QiS5qsz+DN5RfJJrkAXdooxMDnLZ+n5nR8kaX//ZH19SilF6b58Z3zM9zTfrNIkJepzauHo4RceSgvgUSX9w==}
- engines: {node: '>=16'}
- hasBin: true
-
start-server-and-test@2.0.13:
resolution: {integrity: sha512-G42GCIUjBv/nDoK+QsO+nBdX2Cg3DSAKhSic2DN0GLlK4Q+63TkOeN1cV9PHZKnVOzDKGNVZGCREjpvAIAOdiQ==}
engines: {node: '>=16'}
@@ -9921,8 +10218,8 @@ packages:
react-dom:
optional: true
- storybook@9.1.0:
- resolution: {integrity: sha512-EXEmwMCcqwn0KOuc8brTZmFj4eEVImWgGFra6k3Nj8qrlnBXK551tmAjO5ihmL9gxRvv6FGdglnQKoyeYo/NRA==}
+ storybook@9.1.3:
+ resolution: {integrity: sha512-Sm+qP3iGb/QKx/jTYdfE0mIeTmA2HF+5k9fD70S9oOJq3F9UdW8MLgs+5PE+E/xAfDjZU4OWAKEOyA6EYIvQHg==}
hasBin: true
peerDependencies:
prettier: ^2 || ^3
@@ -10070,8 +10367,8 @@ packages:
resolution: {integrity: sha512-tjLPs7dVyqgItVFirHYqe2T+MfWc2VOBQ8QFKKbWTA3PU7liZR8zoSpAi/C1k1ilm9RsXIKYf197oap9wXGVYg==}
engines: {node: '>=14.18.0'}
- supports-color@10.0.0:
- resolution: {integrity: sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==}
+ supports-color@10.2.0:
+ resolution: {integrity: sha512-5eG9FQjEjDbAlI5+kdpdyPIBMRH4GfTVDGREVupaZHmVoppknhM29b/S9BkQz7cathp85BVgRi/As3Siln7e0Q==}
engines: {node: '>=18'}
supports-color@5.5.0:
@@ -10215,8 +10512,8 @@ packages:
resolution: {integrity: sha512-rv8LUyez4Ygkopqn+M6OLItAOT9FF3REpPQDkdMx5ix8w4qkuE7Vo2o/vw1nxKQYmJDV8JpAMJQr1b+lTKf0FA==}
hasBin: true
- tmp@0.2.4:
- resolution: {integrity: sha512-UdiSoX6ypifLmrfQ/XfiawN6hkjSBpCjhKxxZcWlUUmoXLaCKQU0bx4HF/tdDK2uzRuchf1txGvrWBzYREssoQ==}
+ tmp@0.2.5:
+ resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==}
engines: {node: '>=14.14'}
tmpl@1.0.5:
@@ -10313,8 +10610,13 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsx@4.20.3:
- resolution: {integrity: sha512-qjbnuR9Tr+FJOMBqJCW5ehvIo/buZq7vH7qD7JziU98h6l3qGy0a/yPFjwO+y0/T7GFpNgNAvEcPPVfyT8rrPQ==}
+ tsx@4.20.4:
+ resolution: {integrity: sha512-yyxBKfORQ7LuRt/BQKBXrpcq59ZvSW0XxwfjAt3w2/8PmdxaFzijtMhTawprSHhpzeM5BgU2hXHG3lklIERZXg==}
+ engines: {node: '>=18.0.0'}
+ hasBin: true
+
+ tsx@4.20.5:
+ resolution: {integrity: sha512-+wKjMNU9w/EaQayHXb7WA7ZaHY6hN8WgfvHNQ3t1PnU91/7O8TcTnIhCDYTZwnt8JsO9IBqZ30Ln1r7pPF52Aw==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -10379,15 +10681,14 @@ packages:
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- typeorm@0.3.25:
- resolution: {integrity: sha512-fTKDFzWXKwAaBdEMU4k661seZewbNYET4r1J/z3Jwf+eAvlzMVpTLKAVcAzg75WwQk7GDmtsmkZ5MfkmXCiFWg==}
+ typeorm@0.3.26:
+ resolution: {integrity: sha512-o2RrBNn3lczx1qv4j+JliVMmtkPSqEGpG0UuZkt9tCfWkoXKu8MZnjvp2GjWPll1SehwemQw6xrbVRhmOglj8Q==}
engines: {node: '>=16.13.0'}
hasBin: true
peerDependencies:
'@google-cloud/spanner': ^5.18.0 || ^6.0.0 || ^7.0.0
- '@sap/hana-client': ^2.12.25
- better-sqlite3: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0
- hdb-pool: ^0.1.6
+ '@sap/hana-client': ^2.14.22
+ better-sqlite3: ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0
ioredis: ^5.0.4
mongodb: ^5.8.0 || ^6.0.0
mssql: ^9.1.1 || ^10.0.1 || ^11.0.1
@@ -10396,7 +10697,7 @@ packages:
pg: ^8.5.1
pg-native: ^3.0.0
pg-query-stream: ^4.0.0
- redis: ^3.1.1 || ^4.0.0
+ redis: ^3.1.1 || ^4.0.0 || ^5.0.14
reflect-metadata: ^0.1.14 || ^0.2.0
sql.js: ^1.4.0
sqlite3: ^5.0.3
@@ -10409,8 +10710,6 @@ packages:
optional: true
better-sqlite3:
optional: true
- hdb-pool:
- optional: true
ioredis:
optional: true
mongodb:
@@ -10668,6 +10967,46 @@ packages:
yaml:
optional: true
+ vite@7.1.3:
+ resolution: {integrity: sha512-OOUi5zjkDxYrKhTV3V7iKsoS37VUM7v40+HuwEmcrsf11Cdx9y3DIr2Px6liIcZFwt3XSRpQvFpL3WVy7ApkGw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ lightningcss: ^1.21.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
vitest-fetch-mock@0.4.5:
resolution: {integrity: sha512-nhWdCQIGtaSEUVl96pMm0WggyDGPDv5FUy/Q9Hx3cs2RGmh3Q/uRsLClGbdG3kXBkJ3br5yTUjB2MeW25TwdOA==}
engines: {node: '>=18.0.0'}
@@ -10742,8 +11081,8 @@ packages:
vue-component-type-helpers@2.0.16:
resolution: {integrity: sha512-qisL/iAfdO++7w+SsfYQJVPj6QKvxp4i1MMxvsNO41z/8zu3KuAw9LkhKUfP/kcOWGDxESp+pQObWppXusejCA==}
- vue-component-type-helpers@3.0.5:
- resolution: {integrity: sha512-uoNZaJ+a1/zppa/Vgmi8zIOP2PHXDN2rT8NyF+zQRK6ZG94lNB9prcV0GdLJbY9i9lrD47JOVIH92SaiA7oJ1A==}
+ vue-component-type-helpers@3.0.6:
+ resolution: {integrity: sha512-6CRM8X7EJqWCJOiKPvSLQG+hJPb/Oy2gyJx3pLjUEhY7PuaCthQu3e0zAGI1lqUBobrrk9IT0K8sG2GsCluxoQ==}
vue-demi@0.14.7:
resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}
@@ -10775,14 +11114,14 @@ packages:
vue-template-compiler@2.7.14:
resolution: {integrity: sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==}
- vue-tsc@3.0.5:
- resolution: {integrity: sha512-PsTFN9lo1HJCrZw9NoqjYcAbYDXY0cOKyuW2E7naX5jcaVyWpqEsZOHN9Dws5890E8e5SDAD4L4Zam3dxG3/Cw==}
+ vue-tsc@3.0.6:
+ resolution: {integrity: sha512-Tbs8Whd43R2e2nxez4WXPvvdjGbW24rOSgRhLOHXzWiT4pcP4G7KeWh0YCn18rF4bVwv7tggLLZ6MJnO6jXPBg==}
hasBin: true
peerDependencies:
typescript: '>=5.0.0'
- vue@3.5.18:
- resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==}
+ vue@3.5.19:
+ resolution: {integrity: sha512-ZRh0HTmw6KChRYWgN8Ox/wi7VhpuGlvMPrHjIsdRbzKNgECFLzy+dKL5z9yGaBSjCpmcfJCbh3I1tNSRmBz2tg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -10798,11 +11137,6 @@ packages:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
- wait-on@8.0.3:
- resolution: {integrity: sha512-nQFqAFzZDeRxsu7S3C7LbuxslHhk+gnJZHyethuGKAn2IVleIbTB9I3vJSQiSR+DifUqmdzfPMoMPJfLqMF2vw==}
- engines: {node: '>=12.0.0'}
- hasBin: true
-
wait-on@8.0.4:
resolution: {integrity: sha512-8f9LugAGo4PSc0aLbpKVCVtzayd36sSCp4WLpVngkYq6PK87H79zt77/tlCU6eKCLqR46iFvcl0PU5f+DmtkwA==}
engines: {node: '>=12.0.0'}
@@ -11062,41 +11396,41 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.12
'@jridgewell/trace-mapping': 0.3.29
- '@analytics/cookie-utils@0.2.12':
+ '@analytics/cookie-utils@0.2.14':
dependencies:
- '@analytics/global-storage-utils': 0.1.7
+ '@analytics/global-storage-utils': 0.1.9
- '@analytics/core@0.12.17(@types/dlv@1.1.5)':
+ '@analytics/core@0.13.2(@types/dlv@1.1.5)':
dependencies:
- '@analytics/global-storage-utils': 0.1.7
- '@analytics/type-utils': 0.6.2
- analytics-utils: 1.0.14(@types/dlv@1.1.5)
+ '@analytics/global-storage-utils': 0.1.9
+ '@analytics/type-utils': 0.6.4
+ analytics-utils: 1.1.1(@types/dlv@1.1.5)
transitivePeerDependencies:
- '@types/dlv'
- '@analytics/global-storage-utils@0.1.7':
+ '@analytics/global-storage-utils@0.1.9':
dependencies:
- '@analytics/type-utils': 0.6.2
+ '@analytics/type-utils': 0.6.4
'@analytics/google-analytics@1.1.0': {}
- '@analytics/localstorage-utils@0.1.10':
+ '@analytics/localstorage-utils@0.1.12':
dependencies:
- '@analytics/global-storage-utils': 0.1.7
+ '@analytics/global-storage-utils': 0.1.9
- '@analytics/session-storage-utils@0.0.7':
+ '@analytics/session-storage-utils@0.0.9':
dependencies:
- '@analytics/global-storage-utils': 0.1.7
+ '@analytics/global-storage-utils': 0.1.9
- '@analytics/storage-utils@0.4.2':
+ '@analytics/storage-utils@0.4.4':
dependencies:
- '@analytics/cookie-utils': 0.2.12
- '@analytics/global-storage-utils': 0.1.7
- '@analytics/localstorage-utils': 0.1.10
- '@analytics/session-storage-utils': 0.0.7
- '@analytics/type-utils': 0.6.2
+ '@analytics/cookie-utils': 0.2.14
+ '@analytics/global-storage-utils': 0.1.9
+ '@analytics/localstorage-utils': 0.1.12
+ '@analytics/session-storage-utils': 0.0.9
+ '@analytics/type-utils': 0.6.4
- '@analytics/type-utils@0.6.2': {}
+ '@analytics/type-utils@0.6.4': {}
'@apidevtools/json-schema-ref-parser@14.1.1':
dependencies:
@@ -11158,30 +11492,30 @@ snapshots:
'@smithy/util-utf8': 2.0.0
tslib: 2.8.1
- '@aws-sdk/client-s3@3.864.0':
+ '@aws-sdk/client-s3@3.873.0':
dependencies:
'@aws-crypto/sha1-browser': 5.2.0
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.864.0
- '@aws-sdk/credential-provider-node': 3.864.0
- '@aws-sdk/middleware-bucket-endpoint': 3.862.0
- '@aws-sdk/middleware-expect-continue': 3.862.0
- '@aws-sdk/middleware-flexible-checksums': 3.864.0
- '@aws-sdk/middleware-host-header': 3.862.0
- '@aws-sdk/middleware-location-constraint': 3.862.0
- '@aws-sdk/middleware-logger': 3.862.0
- '@aws-sdk/middleware-recursion-detection': 3.862.0
- '@aws-sdk/middleware-sdk-s3': 3.864.0
- '@aws-sdk/middleware-ssec': 3.862.0
- '@aws-sdk/middleware-user-agent': 3.864.0
- '@aws-sdk/region-config-resolver': 3.862.0
- '@aws-sdk/signature-v4-multi-region': 3.864.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/credential-provider-node': 3.873.0
+ '@aws-sdk/middleware-bucket-endpoint': 3.873.0
+ '@aws-sdk/middleware-expect-continue': 3.873.0
+ '@aws-sdk/middleware-flexible-checksums': 3.873.0
+ '@aws-sdk/middleware-host-header': 3.873.0
+ '@aws-sdk/middleware-location-constraint': 3.873.0
+ '@aws-sdk/middleware-logger': 3.873.0
+ '@aws-sdk/middleware-recursion-detection': 3.873.0
+ '@aws-sdk/middleware-sdk-s3': 3.873.0
+ '@aws-sdk/middleware-ssec': 3.873.0
+ '@aws-sdk/middleware-user-agent': 3.873.0
+ '@aws-sdk/region-config-resolver': 3.873.0
+ '@aws-sdk/signature-v4-multi-region': 3.873.0
'@aws-sdk/types': 3.862.0
- '@aws-sdk/util-endpoints': 3.862.0
- '@aws-sdk/util-user-agent-browser': 3.862.0
- '@aws-sdk/util-user-agent-node': 3.864.0
- '@aws-sdk/xml-builder': 3.862.0
+ '@aws-sdk/util-endpoints': 3.873.0
+ '@aws-sdk/util-user-agent-browser': 3.873.0
+ '@aws-sdk/util-user-agent-node': 3.873.0
+ '@aws-sdk/xml-builder': 3.873.0
'@smithy/config-resolver': 4.1.5
'@smithy/core': 3.8.0
'@smithy/eventstream-serde-browser': 4.0.5
@@ -11221,20 +11555,65 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.864.0':
+ '@aws-sdk/client-ses@3.873.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.864.0
- '@aws-sdk/middleware-host-header': 3.862.0
- '@aws-sdk/middleware-logger': 3.862.0
- '@aws-sdk/middleware-recursion-detection': 3.862.0
- '@aws-sdk/middleware-user-agent': 3.864.0
- '@aws-sdk/region-config-resolver': 3.862.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/credential-provider-node': 3.873.0
+ '@aws-sdk/middleware-host-header': 3.873.0
+ '@aws-sdk/middleware-logger': 3.873.0
+ '@aws-sdk/middleware-recursion-detection': 3.873.0
+ '@aws-sdk/middleware-user-agent': 3.873.0
+ '@aws-sdk/region-config-resolver': 3.873.0
'@aws-sdk/types': 3.862.0
- '@aws-sdk/util-endpoints': 3.862.0
- '@aws-sdk/util-user-agent-browser': 3.862.0
- '@aws-sdk/util-user-agent-node': 3.864.0
+ '@aws-sdk/util-endpoints': 3.873.0
+ '@aws-sdk/util-user-agent-browser': 3.873.0
+ '@aws-sdk/util-user-agent-node': 3.873.0
+ '@smithy/config-resolver': 4.1.5
+ '@smithy/core': 3.8.0
+ '@smithy/fetch-http-handler': 5.1.1
+ '@smithy/hash-node': 4.0.5
+ '@smithy/invalid-dependency': 4.0.5
+ '@smithy/middleware-content-length': 4.0.5
+ '@smithy/middleware-endpoint': 4.1.18
+ '@smithy/middleware-retry': 4.1.19
+ '@smithy/middleware-serde': 4.0.9
+ '@smithy/middleware-stack': 4.0.5
+ '@smithy/node-config-provider': 4.1.4
+ '@smithy/node-http-handler': 4.1.1
+ '@smithy/protocol-http': 5.1.3
+ '@smithy/smithy-client': 4.4.10
+ '@smithy/types': 4.3.2
+ '@smithy/url-parser': 4.0.5
+ '@smithy/util-base64': 4.0.0
+ '@smithy/util-body-length-browser': 4.0.0
+ '@smithy/util-body-length-node': 4.0.0
+ '@smithy/util-defaults-mode-browser': 4.0.26
+ '@smithy/util-defaults-mode-node': 4.0.26
+ '@smithy/util-endpoints': 3.0.7
+ '@smithy/util-middleware': 4.0.5
+ '@smithy/util-retry': 4.0.7
+ '@smithy/util-utf8': 4.0.0
+ '@smithy/util-waiter': 4.0.7
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/client-sso@3.873.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/middleware-host-header': 3.873.0
+ '@aws-sdk/middleware-logger': 3.873.0
+ '@aws-sdk/middleware-recursion-detection': 3.873.0
+ '@aws-sdk/middleware-user-agent': 3.873.0
+ '@aws-sdk/region-config-resolver': 3.873.0
+ '@aws-sdk/types': 3.862.0
+ '@aws-sdk/util-endpoints': 3.873.0
+ '@aws-sdk/util-user-agent-browser': 3.873.0
+ '@aws-sdk/util-user-agent-node': 3.873.0
'@smithy/config-resolver': 4.1.5
'@smithy/core': 3.8.0
'@smithy/fetch-http-handler': 5.1.1
@@ -11264,10 +11643,10 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/core@3.864.0':
+ '@aws-sdk/core@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
- '@aws-sdk/xml-builder': 3.862.0
+ '@aws-sdk/xml-builder': 3.873.0
'@smithy/core': 3.8.0
'@smithy/node-config-provider': 4.1.4
'@smithy/property-provider': 4.0.5
@@ -11282,17 +11661,17 @@ snapshots:
fast-xml-parser: 5.2.5
tslib: 2.8.1
- '@aws-sdk/credential-provider-env@3.864.0':
+ '@aws-sdk/credential-provider-env@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
+ '@aws-sdk/core': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/property-provider': 4.0.5
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/credential-provider-http@3.864.0':
+ '@aws-sdk/credential-provider-http@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
+ '@aws-sdk/core': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/fetch-http-handler': 5.1.1
'@smithy/node-http-handler': 4.1.1
@@ -11303,15 +11682,15 @@ snapshots:
'@smithy/util-stream': 4.2.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-ini@3.864.0':
+ '@aws-sdk/credential-provider-ini@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
- '@aws-sdk/credential-provider-env': 3.864.0
- '@aws-sdk/credential-provider-http': 3.864.0
- '@aws-sdk/credential-provider-process': 3.864.0
- '@aws-sdk/credential-provider-sso': 3.864.0
- '@aws-sdk/credential-provider-web-identity': 3.864.0
- '@aws-sdk/nested-clients': 3.864.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/credential-provider-env': 3.873.0
+ '@aws-sdk/credential-provider-http': 3.873.0
+ '@aws-sdk/credential-provider-process': 3.873.0
+ '@aws-sdk/credential-provider-sso': 3.873.0
+ '@aws-sdk/credential-provider-web-identity': 3.873.0
+ '@aws-sdk/nested-clients': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/credential-provider-imds': 4.0.7
'@smithy/property-provider': 4.0.5
@@ -11321,14 +11700,14 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-node@3.864.0':
+ '@aws-sdk/credential-provider-node@3.873.0':
dependencies:
- '@aws-sdk/credential-provider-env': 3.864.0
- '@aws-sdk/credential-provider-http': 3.864.0
- '@aws-sdk/credential-provider-ini': 3.864.0
- '@aws-sdk/credential-provider-process': 3.864.0
- '@aws-sdk/credential-provider-sso': 3.864.0
- '@aws-sdk/credential-provider-web-identity': 3.864.0
+ '@aws-sdk/credential-provider-env': 3.873.0
+ '@aws-sdk/credential-provider-http': 3.873.0
+ '@aws-sdk/credential-provider-ini': 3.873.0
+ '@aws-sdk/credential-provider-process': 3.873.0
+ '@aws-sdk/credential-provider-sso': 3.873.0
+ '@aws-sdk/credential-provider-web-identity': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/credential-provider-imds': 4.0.7
'@smithy/property-provider': 4.0.5
@@ -11338,20 +11717,20 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-process@3.864.0':
+ '@aws-sdk/credential-provider-process@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
+ '@aws-sdk/core': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/property-provider': 4.0.5
'@smithy/shared-ini-file-loader': 4.0.5
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/credential-provider-sso@3.864.0':
+ '@aws-sdk/credential-provider-sso@3.873.0':
dependencies:
- '@aws-sdk/client-sso': 3.864.0
- '@aws-sdk/core': 3.864.0
- '@aws-sdk/token-providers': 3.864.0
+ '@aws-sdk/client-sso': 3.873.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/token-providers': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/property-provider': 4.0.5
'@smithy/shared-ini-file-loader': 4.0.5
@@ -11360,10 +11739,10 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/credential-provider-web-identity@3.864.0':
+ '@aws-sdk/credential-provider-web-identity@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
- '@aws-sdk/nested-clients': 3.864.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/nested-clients': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/property-provider': 4.0.5
'@smithy/types': 4.3.2
@@ -11371,9 +11750,9 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/lib-storage@3.864.0(@aws-sdk/client-s3@3.864.0)':
+ '@aws-sdk/lib-storage@3.873.0(@aws-sdk/client-s3@3.873.0)':
dependencies:
- '@aws-sdk/client-s3': 3.864.0
+ '@aws-sdk/client-s3': 3.873.0
'@smithy/abort-controller': 4.0.5
'@smithy/middleware-endpoint': 4.1.18
'@smithy/smithy-client': 4.4.10
@@ -11382,29 +11761,29 @@ snapshots:
stream-browserify: 3.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-bucket-endpoint@3.862.0':
+ '@aws-sdk/middleware-bucket-endpoint@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
- '@aws-sdk/util-arn-parser': 3.804.0
+ '@aws-sdk/util-arn-parser': 3.873.0
'@smithy/node-config-provider': 4.1.4
'@smithy/protocol-http': 5.1.3
'@smithy/types': 4.3.2
'@smithy/util-config-provider': 4.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-expect-continue@3.862.0':
+ '@aws-sdk/middleware-expect-continue@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/protocol-http': 5.1.3
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/middleware-flexible-checksums@3.864.0':
+ '@aws-sdk/middleware-flexible-checksums@3.873.0':
dependencies:
'@aws-crypto/crc32': 5.2.0
'@aws-crypto/crc32c': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/core': 3.864.0
+ '@aws-sdk/core': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/is-array-buffer': 4.0.0
'@smithy/node-config-provider': 4.1.4
@@ -11415,37 +11794,37 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-host-header@3.862.0':
+ '@aws-sdk/middleware-host-header@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/protocol-http': 5.1.3
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/middleware-location-constraint@3.862.0':
+ '@aws-sdk/middleware-location-constraint@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/middleware-logger@3.862.0':
+ '@aws-sdk/middleware-logger@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/middleware-recursion-detection@3.862.0':
+ '@aws-sdk/middleware-recursion-detection@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/protocol-http': 5.1.3
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/middleware-sdk-s3@3.864.0':
+ '@aws-sdk/middleware-sdk-s3@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
+ '@aws-sdk/core': 3.873.0
'@aws-sdk/types': 3.862.0
- '@aws-sdk/util-arn-parser': 3.804.0
+ '@aws-sdk/util-arn-parser': 3.873.0
'@smithy/core': 3.8.0
'@smithy/node-config-provider': 4.1.4
'@smithy/protocol-http': 5.1.3
@@ -11458,36 +11837,36 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-ssec@3.862.0':
+ '@aws-sdk/middleware-ssec@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/middleware-user-agent@3.864.0':
+ '@aws-sdk/middleware-user-agent@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
+ '@aws-sdk/core': 3.873.0
'@aws-sdk/types': 3.862.0
- '@aws-sdk/util-endpoints': 3.862.0
+ '@aws-sdk/util-endpoints': 3.873.0
'@smithy/core': 3.8.0
'@smithy/protocol-http': 5.1.3
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/nested-clients@3.864.0':
+ '@aws-sdk/nested-clients@3.873.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.864.0
- '@aws-sdk/middleware-host-header': 3.862.0
- '@aws-sdk/middleware-logger': 3.862.0
- '@aws-sdk/middleware-recursion-detection': 3.862.0
- '@aws-sdk/middleware-user-agent': 3.864.0
- '@aws-sdk/region-config-resolver': 3.862.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/middleware-host-header': 3.873.0
+ '@aws-sdk/middleware-logger': 3.873.0
+ '@aws-sdk/middleware-recursion-detection': 3.873.0
+ '@aws-sdk/middleware-user-agent': 3.873.0
+ '@aws-sdk/region-config-resolver': 3.873.0
'@aws-sdk/types': 3.862.0
- '@aws-sdk/util-endpoints': 3.862.0
- '@aws-sdk/util-user-agent-browser': 3.862.0
- '@aws-sdk/util-user-agent-node': 3.864.0
+ '@aws-sdk/util-endpoints': 3.873.0
+ '@aws-sdk/util-user-agent-browser': 3.873.0
+ '@aws-sdk/util-user-agent-node': 3.873.0
'@smithy/config-resolver': 4.1.5
'@smithy/core': 3.8.0
'@smithy/fetch-http-handler': 5.1.1
@@ -11517,7 +11896,7 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/region-config-resolver@3.862.0':
+ '@aws-sdk/region-config-resolver@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/node-config-provider': 4.1.4
@@ -11526,19 +11905,19 @@ snapshots:
'@smithy/util-middleware': 4.0.5
tslib: 2.8.1
- '@aws-sdk/signature-v4-multi-region@3.864.0':
+ '@aws-sdk/signature-v4-multi-region@3.873.0':
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.864.0
+ '@aws-sdk/middleware-sdk-s3': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/protocol-http': 5.1.3
'@smithy/signature-v4': 5.1.3
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/token-providers@3.864.0':
+ '@aws-sdk/token-providers@3.873.0':
dependencies:
- '@aws-sdk/core': 3.864.0
- '@aws-sdk/nested-clients': 3.864.0
+ '@aws-sdk/core': 3.873.0
+ '@aws-sdk/nested-clients': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/property-provider': 4.0.5
'@smithy/shared-ini-file-loader': 4.0.5
@@ -11552,11 +11931,11 @@ snapshots:
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/util-arn-parser@3.804.0':
+ '@aws-sdk/util-arn-parser@3.873.0':
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-endpoints@3.862.0':
+ '@aws-sdk/util-endpoints@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/types': 4.3.2
@@ -11568,22 +11947,22 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-user-agent-browser@3.862.0':
+ '@aws-sdk/util-user-agent-browser@3.873.0':
dependencies:
'@aws-sdk/types': 3.862.0
'@smithy/types': 4.3.2
bowser: 2.11.0
tslib: 2.8.1
- '@aws-sdk/util-user-agent-node@3.864.0':
+ '@aws-sdk/util-user-agent-node@3.873.0':
dependencies:
- '@aws-sdk/middleware-user-agent': 3.864.0
+ '@aws-sdk/middleware-user-agent': 3.873.0
'@aws-sdk/types': 3.862.0
'@smithy/node-config-provider': 4.1.4
'@smithy/types': 4.3.2
tslib: 2.8.1
- '@aws-sdk/xml-builder@3.862.0':
+ '@aws-sdk/xml-builder@3.873.0':
dependencies:
'@smithy/types': 4.3.2
tslib: 2.8.1
@@ -11609,7 +11988,7 @@ snapshots:
'@babel/traverse': 7.24.7
'@babel/types': 7.28.1
convert-source-map: 2.0.0
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -11690,6 +12069,10 @@ snapshots:
dependencies:
'@babel/types': 7.28.1
+ '@babel/parser@7.28.3':
+ dependencies:
+ '@babel/types': 7.28.2
+
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
@@ -11780,7 +12163,7 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
'@babel/parser': 7.28.0
'@babel/types': 7.28.1
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11790,6 +12173,11 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
+ '@babel/types@7.28.2':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+
'@bcoe/v8-coverage@0.2.3': {}
'@bcoe/v8-coverage@1.0.2': {}
@@ -11950,84 +12338,162 @@ snapshots:
'@esbuild/aix-ppc64@0.25.8':
optional: true
+ '@esbuild/aix-ppc64@0.25.9':
+ optional: true
+
'@esbuild/android-arm64@0.25.8':
optional: true
+ '@esbuild/android-arm64@0.25.9':
+ optional: true
+
'@esbuild/android-arm@0.25.8':
optional: true
+ '@esbuild/android-arm@0.25.9':
+ optional: true
+
'@esbuild/android-x64@0.25.8':
optional: true
+ '@esbuild/android-x64@0.25.9':
+ optional: true
+
'@esbuild/darwin-arm64@0.25.8':
optional: true
+ '@esbuild/darwin-arm64@0.25.9':
+ optional: true
+
'@esbuild/darwin-x64@0.25.8':
optional: true
+ '@esbuild/darwin-x64@0.25.9':
+ optional: true
+
'@esbuild/freebsd-arm64@0.25.8':
optional: true
+ '@esbuild/freebsd-arm64@0.25.9':
+ optional: true
+
'@esbuild/freebsd-x64@0.25.8':
optional: true
+ '@esbuild/freebsd-x64@0.25.9':
+ optional: true
+
'@esbuild/linux-arm64@0.25.8':
optional: true
+ '@esbuild/linux-arm64@0.25.9':
+ optional: true
+
'@esbuild/linux-arm@0.25.8':
optional: true
+ '@esbuild/linux-arm@0.25.9':
+ optional: true
+
'@esbuild/linux-ia32@0.25.8':
optional: true
+ '@esbuild/linux-ia32@0.25.9':
+ optional: true
+
'@esbuild/linux-loong64@0.25.8':
optional: true
+ '@esbuild/linux-loong64@0.25.9':
+ optional: true
+
'@esbuild/linux-mips64el@0.25.8':
optional: true
+ '@esbuild/linux-mips64el@0.25.9':
+ optional: true
+
'@esbuild/linux-ppc64@0.25.8':
optional: true
+ '@esbuild/linux-ppc64@0.25.9':
+ optional: true
+
'@esbuild/linux-riscv64@0.25.8':
optional: true
+ '@esbuild/linux-riscv64@0.25.9':
+ optional: true
+
'@esbuild/linux-s390x@0.25.8':
optional: true
+ '@esbuild/linux-s390x@0.25.9':
+ optional: true
+
'@esbuild/linux-x64@0.25.8':
optional: true
+ '@esbuild/linux-x64@0.25.9':
+ optional: true
+
'@esbuild/netbsd-arm64@0.25.8':
optional: true
+ '@esbuild/netbsd-arm64@0.25.9':
+ optional: true
+
'@esbuild/netbsd-x64@0.25.8':
optional: true
+ '@esbuild/netbsd-x64@0.25.9':
+ optional: true
+
'@esbuild/openbsd-arm64@0.25.8':
optional: true
+ '@esbuild/openbsd-arm64@0.25.9':
+ optional: true
+
'@esbuild/openbsd-x64@0.25.8':
optional: true
+ '@esbuild/openbsd-x64@0.25.9':
+ optional: true
+
'@esbuild/openharmony-arm64@0.25.8':
optional: true
+ '@esbuild/openharmony-arm64@0.25.9':
+ optional: true
+
'@esbuild/sunos-x64@0.25.8':
optional: true
+ '@esbuild/sunos-x64@0.25.9':
+ optional: true
+
'@esbuild/win32-arm64@0.25.8':
optional: true
+ '@esbuild/win32-arm64@0.25.9':
+ optional: true
+
'@esbuild/win32-ia32@0.25.8':
optional: true
+ '@esbuild/win32-ia32@0.25.9':
+ optional: true
+
'@esbuild/win32-x64@0.25.8':
optional: true
- '@eslint-community/eslint-utils@4.7.0(eslint@9.33.0)':
+ '@esbuild/win32-x64@0.25.9':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.34.0)':
dependencies:
- eslint: 9.33.0
+ eslint: 9.34.0
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -12037,7 +12503,7 @@ snapshots:
'@eslint/config-array@0.21.0':
dependencies:
'@eslint/object-schema': 2.1.6
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -12051,7 +12517,7 @@ snapshots:
'@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
espree: 10.4.0
globals: 14.0.0
ignore: 5.3.1
@@ -12062,7 +12528,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.33.0': {}
+ '@eslint/js@9.34.0': {}
'@eslint/object-schema@2.1.6': {}
@@ -12369,23 +12835,16 @@ snapshots:
'@img/sharp-win32-x64@0.34.2':
optional: true
- '@inquirer/confirm@5.0.2(@types/node@22.17.0)':
+ '@inquirer/confirm@5.0.2(@types/node@22.17.2)':
dependencies:
- '@inquirer/core': 10.1.0(@types/node@22.17.0)
- '@inquirer/type': 3.0.1(@types/node@22.17.0)
- '@types/node': 22.17.0
+ '@inquirer/core': 10.1.0(@types/node@22.17.2)
+ '@inquirer/type': 3.0.1(@types/node@22.17.2)
+ '@types/node': 22.17.2
- '@inquirer/confirm@5.0.2(@types/node@22.17.1)':
- dependencies:
- '@inquirer/core': 10.1.0(@types/node@22.17.1)
- '@inquirer/type': 3.0.1(@types/node@22.17.1)
- '@types/node': 22.17.1
- optional: true
-
- '@inquirer/core@10.1.0(@types/node@22.17.0)':
+ '@inquirer/core@10.1.0(@types/node@22.17.2)':
dependencies:
'@inquirer/figures': 1.0.8
- '@inquirer/type': 3.0.1(@types/node@22.17.0)
+ '@inquirer/type': 3.0.1(@types/node@22.17.2)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -12396,31 +12855,11 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@inquirer/core@10.1.0(@types/node@22.17.1)':
- dependencies:
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 3.0.1(@types/node@22.17.1)
- ansi-escapes: 4.3.2
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- strip-ansi: 6.0.1
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.2
- transitivePeerDependencies:
- - '@types/node'
- optional: true
-
'@inquirer/figures@1.0.8': {}
- '@inquirer/type@3.0.1(@types/node@22.17.0)':
+ '@inquirer/type@3.0.1(@types/node@22.17.2)':
dependencies:
- '@types/node': 22.17.0
-
- '@inquirer/type@3.0.1(@types/node@22.17.1)':
- dependencies:
- '@types/node': 22.17.1
- optional: true
+ '@types/node': 22.17.2
'@ioredis/commands@1.3.0': {}
@@ -12456,7 +12895,7 @@ snapshots:
'@jest/console@29.7.0':
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -12469,14 +12908,14 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
ansi-escapes: 4.3.2
chalk: 4.1.2
ci-info: 3.7.1
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.17.1)
+ jest-config: 29.7.0(@types/node@22.17.2)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -12505,7 +12944,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -12523,7 +12962,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -12539,7 +12978,7 @@ snapshots:
'@jest/pattern@30.0.1':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
jest-regex-util: 30.0.1
'@jest/reporters@29.7.0':
@@ -12550,7 +12989,7 @@ snapshots:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.29
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
chalk: 4.1.2
collect-v8-coverage: 1.0.1
exit: 0.1.2
@@ -12624,7 +13063,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/yargs': 17.0.33
chalk: 4.1.2
@@ -12634,16 +13073,16 @@ snapshots:
'@jest/schemas': 30.0.5
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/yargs': 17.0.33
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.9.2)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))':
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.6.1(typescript@5.9.2)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))':
dependencies:
glob: 10.4.5
- magic-string: 0.30.17
+ magic-string: 0.30.18
react-docgen-typescript: 2.2.2(typescript@5.9.2)
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
optionalDependencies:
typescript: 5.9.2
@@ -12661,6 +13100,8 @@ snapshots:
'@jridgewell/sourcemap-codec@1.5.0': {}
+ '@jridgewell/sourcemap-codec@1.5.5': {}
+
'@jridgewell/trace-mapping@0.3.29':
dependencies:
'@jridgewell/resolve-uri': 3.1.0
@@ -12702,23 +13143,23 @@ snapshots:
'@types/react': 18.0.28
react: 19.1.1
- '@microsoft/api-extractor-model@7.30.7(@types/node@22.17.1)':
+ '@microsoft/api-extractor-model@7.30.7(@types/node@22.17.2)':
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@22.17.1)
+ '@rushstack/node-core-library': 5.14.0(@types/node@22.17.2)
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.52.10(@types/node@22.17.1)':
+ '@microsoft/api-extractor@7.52.11(@types/node@22.17.2)':
dependencies:
- '@microsoft/api-extractor-model': 7.30.7(@types/node@22.17.1)
+ '@microsoft/api-extractor-model': 7.30.7(@types/node@22.17.2)
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.14.0(@types/node@22.17.1)
+ '@rushstack/node-core-library': 5.14.0(@types/node@22.17.2)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.15.4(@types/node@22.17.1)
- '@rushstack/ts-command-line': 5.0.2(@types/node@22.17.1)
+ '@rushstack/terminal': 0.15.4(@types/node@22.17.2)
+ '@rushstack/ts-command-line': 5.0.2(@types/node@22.17.2)
lodash: 4.17.21
minimatch: 10.0.3
resolve: 1.22.8
@@ -12739,14 +13180,14 @@ snapshots:
'@misskey-dev/browser-image-resizer@2024.1.0': {}
- '@misskey-dev/eslint-plugin@2.1.0(@eslint/compat@1.1.1)(@stylistic/eslint-plugin@2.13.0(eslint@9.33.0)(typescript@5.9.2))(@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2))(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0))(eslint@9.33.0)(globals@16.3.0)':
+ '@misskey-dev/eslint-plugin@2.1.0(@eslint/compat@1.1.1)(@stylistic/eslint-plugin@2.13.0(eslint@9.34.0)(typescript@5.9.2))(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2))(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0))(eslint@9.34.0)(globals@16.3.0)':
dependencies:
'@eslint/compat': 1.1.1
- '@stylistic/eslint-plugin': 2.13.0(eslint@9.33.0)(typescript@5.9.2)
- '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)
- '@typescript-eslint/parser': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- eslint: 9.33.0
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)
+ '@stylistic/eslint-plugin': 2.13.0(eslint@9.34.0)(typescript@5.9.2)
+ '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
+ eslint: 9.34.0
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)
globals: 16.3.0
'@misskey-dev/sharp-read-bmp@1.2.0':
@@ -12883,6 +13324,8 @@ snapshots:
'@noble/hashes@1.7.1': {}
+ '@noble/hashes@1.8.0': {}
+
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -12899,7 +13342,7 @@ snapshots:
dependencies:
agent-base: 7.1.3
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@10.0.0)
+ https-proxy-agent: 7.0.6(supports-color@10.2.0)
lru-cache: 10.4.3
socks-proxy-agent: 8.0.5
transitivePeerDependencies:
@@ -13362,12 +13805,12 @@ snapshots:
'@redocly/config@0.22.2': {}
- '@redocly/openapi-core@1.34.3(supports-color@10.0.0)':
+ '@redocly/openapi-core@1.34.5(supports-color@10.2.0)':
dependencies:
'@redocly/ajv': 8.11.2
'@redocly/config': 0.22.2
colorette: 1.4.0
- https-proxy-agent: 7.0.6(supports-color@10.0.0)
+ https-proxy-agent: 7.0.6(supports-color@10.2.0)
js-levenshtein: 1.1.6
js-yaml: 4.1.0
minimatch: 5.1.6
@@ -13378,90 +13821,150 @@ snapshots:
'@rolldown/pluginutils@1.0.0-beta.29': {}
- '@rollup/plugin-json@6.1.0(rollup@4.46.2)':
+ '@rollup/plugin-json@6.1.0(rollup@4.48.0)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.2)
+ '@rollup/pluginutils': 5.2.0(rollup@4.48.0)
optionalDependencies:
- rollup: 4.46.2
+ rollup: 4.48.0
- '@rollup/plugin-replace@6.0.2(rollup@4.46.2)':
+ '@rollup/plugin-replace@6.0.2(rollup@4.48.0)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.46.2)
- magic-string: 0.30.17
+ '@rollup/pluginutils': 5.2.0(rollup@4.48.0)
+ magic-string: 0.30.18
optionalDependencies:
- rollup: 4.46.2
+ rollup: 4.48.0
- '@rollup/pluginutils@5.2.0(rollup@4.46.2)':
+ '@rollup/pluginutils@5.2.0(rollup@4.48.0)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.46.2
+ rollup: 4.48.0
'@rollup/rollup-android-arm-eabi@4.46.2':
optional: true
+ '@rollup/rollup-android-arm-eabi@4.48.0':
+ optional: true
+
'@rollup/rollup-android-arm64@4.46.2':
optional: true
+ '@rollup/rollup-android-arm64@4.48.0':
+ optional: true
+
'@rollup/rollup-darwin-arm64@4.46.2':
optional: true
+ '@rollup/rollup-darwin-arm64@4.48.0':
+ optional: true
+
'@rollup/rollup-darwin-x64@4.46.2':
optional: true
+ '@rollup/rollup-darwin-x64@4.48.0':
+ optional: true
+
'@rollup/rollup-freebsd-arm64@4.46.2':
optional: true
+ '@rollup/rollup-freebsd-arm64@4.48.0':
+ optional: true
+
'@rollup/rollup-freebsd-x64@4.46.2':
optional: true
+ '@rollup/rollup-freebsd-x64@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-arm-gnueabihf@4.46.2':
optional: true
+ '@rollup/rollup-linux-arm-gnueabihf@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-arm-musleabihf@4.46.2':
optional: true
+ '@rollup/rollup-linux-arm-musleabihf@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-gnu@4.46.2':
optional: true
+ '@rollup/rollup-linux-arm64-gnu@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-arm64-musl@4.46.2':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-loongarch64-gnu@4.46.2':
optional: true
+ '@rollup/rollup-linux-loongarch64-gnu@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-ppc64-gnu@4.46.2':
optional: true
+ '@rollup/rollup-linux-ppc64-gnu@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-riscv64-gnu@4.46.2':
optional: true
+ '@rollup/rollup-linux-riscv64-gnu@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-riscv64-musl@4.46.2':
optional: true
+ '@rollup/rollup-linux-riscv64-musl@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-s390x-gnu@4.46.2':
optional: true
+ '@rollup/rollup-linux-s390x-gnu@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-x64-gnu@4.46.2':
optional: true
+ '@rollup/rollup-linux-x64-gnu@4.48.0':
+ optional: true
+
'@rollup/rollup-linux-x64-musl@4.46.2':
optional: true
+ '@rollup/rollup-linux-x64-musl@4.48.0':
+ optional: true
+
'@rollup/rollup-win32-arm64-msvc@4.46.2':
optional: true
+ '@rollup/rollup-win32-arm64-msvc@4.48.0':
+ optional: true
+
'@rollup/rollup-win32-ia32-msvc@4.46.2':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.48.0':
+ optional: true
+
'@rollup/rollup-win32-x64-msvc@4.46.2':
optional: true
+ '@rollup/rollup-win32-x64-msvc@4.48.0':
+ optional: true
+
'@rtsao/scc@1.1.0': {}
- '@rushstack/node-core-library@5.14.0(@types/node@22.17.1)':
+ '@rushstack/node-core-library@5.14.0(@types/node@22.17.2)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -13472,23 +13975,23 @@ snapshots:
resolve: 1.22.8
semver: 7.5.4
optionalDependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@rushstack/rig-package@0.5.3':
dependencies:
resolve: 1.22.8
strip-json-comments: 3.1.1
- '@rushstack/terminal@0.15.4(@types/node@22.17.1)':
+ '@rushstack/terminal@0.15.4(@types/node@22.17.2)':
dependencies:
- '@rushstack/node-core-library': 5.14.0(@types/node@22.17.1)
+ '@rushstack/node-core-library': 5.14.0(@types/node@22.17.2)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
- '@rushstack/ts-command-line@5.0.2(@types/node@22.17.1)':
+ '@rushstack/ts-command-line@5.0.2(@types/node@22.17.2)':
dependencies:
- '@rushstack/terminal': 0.15.4(@types/node@22.17.1)
+ '@rushstack/terminal': 0.15.4(@types/node@22.17.2)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.1
@@ -13497,63 +14000,63 @@ snapshots:
'@sec-ant/readable-stream@0.4.1': {}
- '@sentry-internal/browser-utils@10.0.0':
+ '@sentry-internal/browser-utils@10.5.0':
dependencies:
- '@sentry/core': 10.0.0
+ '@sentry/core': 10.5.0
- '@sentry-internal/browser-utils@9.45.0':
+ '@sentry-internal/browser-utils@9.46.0':
dependencies:
- '@sentry/core': 9.45.0
+ '@sentry/core': 9.46.0
- '@sentry-internal/feedback@10.0.0':
+ '@sentry-internal/feedback@10.5.0':
dependencies:
- '@sentry/core': 10.0.0
+ '@sentry/core': 10.5.0
- '@sentry-internal/feedback@9.45.0':
+ '@sentry-internal/feedback@9.46.0':
dependencies:
- '@sentry/core': 9.45.0
+ '@sentry/core': 9.46.0
- '@sentry-internal/replay-canvas@10.0.0':
+ '@sentry-internal/replay-canvas@10.5.0':
dependencies:
- '@sentry-internal/replay': 10.0.0
- '@sentry/core': 10.0.0
+ '@sentry-internal/replay': 10.5.0
+ '@sentry/core': 10.5.0
- '@sentry-internal/replay-canvas@9.45.0':
+ '@sentry-internal/replay-canvas@9.46.0':
dependencies:
- '@sentry-internal/replay': 9.45.0
- '@sentry/core': 9.45.0
+ '@sentry-internal/replay': 9.46.0
+ '@sentry/core': 9.46.0
- '@sentry-internal/replay@10.0.0':
+ '@sentry-internal/replay@10.5.0':
dependencies:
- '@sentry-internal/browser-utils': 10.0.0
- '@sentry/core': 10.0.0
+ '@sentry-internal/browser-utils': 10.5.0
+ '@sentry/core': 10.5.0
- '@sentry-internal/replay@9.45.0':
+ '@sentry-internal/replay@9.46.0':
dependencies:
- '@sentry-internal/browser-utils': 9.45.0
- '@sentry/core': 9.45.0
+ '@sentry-internal/browser-utils': 9.46.0
+ '@sentry/core': 9.46.0
- '@sentry/browser@10.0.0':
+ '@sentry/browser@10.5.0':
dependencies:
- '@sentry-internal/browser-utils': 10.0.0
- '@sentry-internal/feedback': 10.0.0
- '@sentry-internal/replay': 10.0.0
- '@sentry-internal/replay-canvas': 10.0.0
- '@sentry/core': 10.0.0
+ '@sentry-internal/browser-utils': 10.5.0
+ '@sentry-internal/feedback': 10.5.0
+ '@sentry-internal/replay': 10.5.0
+ '@sentry-internal/replay-canvas': 10.5.0
+ '@sentry/core': 10.5.0
- '@sentry/browser@9.45.0':
+ '@sentry/browser@9.46.0':
dependencies:
- '@sentry-internal/browser-utils': 9.45.0
- '@sentry-internal/feedback': 9.45.0
- '@sentry-internal/replay': 9.45.0
- '@sentry-internal/replay-canvas': 9.45.0
- '@sentry/core': 9.45.0
+ '@sentry-internal/browser-utils': 9.46.0
+ '@sentry-internal/feedback': 9.46.0
+ '@sentry-internal/replay': 9.46.0
+ '@sentry-internal/replay-canvas': 9.46.0
+ '@sentry/core': 9.46.0
- '@sentry/core@10.0.0': {}
+ '@sentry/core@10.5.0': {}
'@sentry/core@8.55.0': {}
- '@sentry/core@9.45.0': {}
+ '@sentry/core@9.46.0': {}
'@sentry/node@8.55.0':
dependencies:
@@ -13614,45 +14117,45 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@sentry/vue@10.0.0(vue@3.5.18(typescript@5.9.2))':
+ '@sentry/vue@10.5.0(vue@3.5.19(typescript@5.9.2))':
dependencies:
- '@sentry/browser': 10.0.0
- '@sentry/core': 10.0.0
- vue: 3.5.18(typescript@5.9.2)
+ '@sentry/browser': 10.5.0
+ '@sentry/core': 10.5.0
+ vue: 3.5.19(typescript@5.9.2)
- '@sentry/vue@9.45.0(vue@3.5.18(typescript@5.9.2))':
+ '@sentry/vue@9.46.0(vue@3.5.19(typescript@5.9.2))':
dependencies:
- '@sentry/browser': 9.45.0
- '@sentry/core': 9.45.0
- vue: 3.5.18(typescript@5.9.2)
+ '@sentry/browser': 9.46.0
+ '@sentry/core': 9.46.0
+ vue: 3.5.19(typescript@5.9.2)
- '@shikijs/core@3.9.1':
+ '@shikijs/core@3.11.0':
dependencies:
- '@shikijs/types': 3.9.1
+ '@shikijs/types': 3.11.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
- '@shikijs/engine-javascript@3.9.1':
+ '@shikijs/engine-javascript@3.11.0':
dependencies:
- '@shikijs/types': 3.9.1
+ '@shikijs/types': 3.11.0
'@shikijs/vscode-textmate': 10.0.2
oniguruma-to-es: 4.3.3
- '@shikijs/engine-oniguruma@3.9.1':
+ '@shikijs/engine-oniguruma@3.11.0':
dependencies:
- '@shikijs/types': 3.9.1
+ '@shikijs/types': 3.11.0
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/langs@3.9.1':
+ '@shikijs/langs@3.11.0':
dependencies:
- '@shikijs/types': 3.9.1
+ '@shikijs/types': 3.11.0
- '@shikijs/themes@3.9.1':
+ '@shikijs/themes@3.11.0':
dependencies:
- '@shikijs/types': 3.9.1
+ '@shikijs/types': 3.11.0
- '@shikijs/types@3.9.1':
+ '@shikijs/types@3.11.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -14095,149 +14598,149 @@ snapshots:
'@sqltools/formatter@1.2.5': {}
- '@storybook/addon-actions@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-actions@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
polished: 4.2.2
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
uuid: 9.0.1
'@storybook/addon-actions@9.0.8': {}
- '@storybook/addon-backgrounds@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-backgrounds@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
- '@storybook/addon-controls@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-controls@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
dequal: 2.0.3
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
- '@storybook/addon-docs@8.6.14(@types/react@18.0.28)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-docs@8.6.14(@types/react@18.0.28)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@mdx-js/react': 3.0.1(@types/react@18.0.28)(react@19.1.1)
- '@storybook/blocks': 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/csf-plugin': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/react-dom-shim': 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ '@storybook/blocks': 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/csf-plugin': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/react-dom-shim': 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- '@storybook/addon-essentials@8.6.14(@types/react@18.0.28)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-essentials@8.6.14(@types/react@18.0.28)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- '@storybook/addon-actions': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-backgrounds': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-controls': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-docs': 8.6.14(@types/react@18.0.28)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-highlight': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-measure': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-outline': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-toolbars': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/addon-viewport': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ '@storybook/addon-actions': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-backgrounds': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-controls': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-docs': 8.6.14(@types/react@18.0.28)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-highlight': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-measure': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-outline': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-toolbars': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/addon-viewport': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
transitivePeerDependencies:
- '@types/react'
- '@storybook/addon-highlight@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-highlight@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/addon-interactions@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-interactions@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/test': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ '@storybook/instrumenter': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/test': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
polished: 4.2.2
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
- '@storybook/addon-links@9.1.0(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-links@9.1.3(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
optionalDependencies:
react: 19.1.1
- '@storybook/addon-mdx-gfm@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-mdx-gfm@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
remark-gfm: 4.0.0
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- '@storybook/addon-measure@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-measure@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
tiny-invariant: 1.3.3
- '@storybook/addon-outline@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-outline@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
- '@storybook/addon-storysource@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-storysource@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- '@storybook/source-loader': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ '@storybook/source-loader': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
estraverse: 5.3.0
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
tiny-invariant: 1.3.3
- '@storybook/addon-toolbars@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-toolbars@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/addon-viewport@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/addon-viewport@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
memoizerific: 1.11.3
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/blocks@8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/blocks@8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/icons': 1.2.12(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
optionalDependencies:
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- '@storybook/builder-vite@9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))':
+ '@storybook/builder-vite@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))':
dependencies:
- '@storybook/csf-plugin': 9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ '@storybook/csf-plugin': 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
ts-dedent: 2.2.0
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
- '@storybook/components@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/components@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/core-events@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/core-events@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/csf-plugin@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/csf-plugin@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
unplugin: 1.4.0
- '@storybook/csf-plugin@9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/csf-plugin@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
unplugin: 1.4.0
'@storybook/global@5.0.0': {}
@@ -14247,114 +14750,114 @@ snapshots:
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- '@storybook/instrumenter@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/instrumenter@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
'@vitest/utils': 2.1.1
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/manager-api@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/manager-api@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/preview-api@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/preview-api@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/react-dom-shim@8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/react-dom-shim@8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/react-dom-shim@9.1.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/react-dom-shim@9.1.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/react-vite@9.1.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(rollup@4.46.2)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(typescript@5.9.2)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))':
+ '@storybook/react-vite@9.1.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(rollup@4.48.0)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(typescript@5.9.2)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.9.2)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
- '@rollup/pluginutils': 5.2.0(rollup@4.46.2)
- '@storybook/builder-vite': 9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
- '@storybook/react': 9.1.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(typescript@5.9.2)
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.6.1(typescript@5.9.2)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
+ '@rollup/pluginutils': 5.2.0(rollup@4.48.0)
+ '@storybook/builder-vite': 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
+ '@storybook/react': 9.1.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(typescript@5.9.2)
find-up: 7.0.0
- magic-string: 0.30.17
+ magic-string: 0.30.18
react: 19.1.1
react-docgen: 8.0.0
react-dom: 19.1.1(react@19.1.1)
resolve: 1.22.8
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
tsconfig-paths: 4.2.0
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- '@storybook/react@9.1.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(typescript@5.9.2)':
+ '@storybook/react@9.1.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(typescript@5.9.2)':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/react-dom-shim': 9.1.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ '@storybook/react-dom-shim': 9.1.3(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
optionalDependencies:
typescript: 5.9.2
- '@storybook/source-loader@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/source-loader@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
es-toolkit: 1.27.0
estraverse: 5.3.0
prettier: 3.6.2
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/test@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/test@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
'@storybook/global': 5.0.0
- '@storybook/instrumenter': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ '@storybook/instrumenter': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
'@testing-library/dom': 10.4.0
'@testing-library/jest-dom': 6.5.0
'@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0)
'@vitest/expect': 2.0.5
'@vitest/spy': 2.0.5
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/theming@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/theming@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/types@8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))':
+ '@storybook/types@8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))':
dependencies:
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
- '@storybook/vue3-vite@9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))(vue@3.5.18(typescript@5.9.2))':
+ '@storybook/vue3-vite@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))(vue@3.5.19(typescript@5.9.2))':
dependencies:
- '@storybook/builder-vite': 9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
- '@storybook/vue3': 9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vue@3.5.18(typescript@5.9.2))
+ '@storybook/builder-vite': 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
+ '@storybook/vue3': 9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vue@3.5.19(typescript@5.9.2))
find-package-json: 1.2.0
- magic-string: 0.30.17
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ magic-string: 0.30.18
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
typescript: 5.9.2
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
vue-component-meta: 2.0.16(typescript@5.9.2)
- vue-docgen-api: 4.75.1(vue@3.5.18(typescript@5.9.2))
+ vue-docgen-api: 4.75.1(vue@3.5.19(typescript@5.9.2))
transitivePeerDependencies:
- vue
- '@storybook/vue3@9.1.0(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))(vue@3.5.18(typescript@5.9.2))':
+ '@storybook/vue3@9.1.3(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))(vue@3.5.19(typescript@5.9.2))':
dependencies:
'@storybook/global': 5.0.0
- storybook: 9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ storybook: 9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
type-fest: 2.19.0
- vue: 3.5.18(typescript@5.9.2)
- vue-component-type-helpers: 3.0.5
+ vue: 3.5.19(typescript@5.9.2)
+ vue-component-type-helpers: 3.0.6
- '@stylistic/eslint-plugin@2.13.0(eslint@9.33.0)(typescript@5.9.2)':
+ '@stylistic/eslint-plugin@2.13.0(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/utils': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- eslint: 9.33.0
+ '@typescript-eslint/utils': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
+ eslint: 9.34.0
eslint-visitor-keys: 4.2.1
espree: 10.4.0
estraverse: 5.3.0
@@ -14363,9 +14866,9 @@ snapshots:
- supports-color
- typescript
- '@swc/cli@0.7.8(@swc/core@1.13.3)(chokidar@4.0.3)':
+ '@swc/cli@0.7.8(@swc/core@1.13.4)(chokidar@4.0.3)':
dependencies:
- '@swc/core': 1.13.3
+ '@swc/core': 1.13.4
'@swc/counter': 0.1.3
'@xhmikosr/bin-wrapper': 13.0.5
commander: 8.3.0
@@ -14383,10 +14886,10 @@ snapshots:
'@swc/wasm': 1.2.130
optional: true
- '@swc/core-darwin-arm64@1.13.3':
+ '@swc/core-darwin-arm64@1.13.4':
optional: true
- '@swc/core-darwin-x64@1.13.3':
+ '@swc/core-darwin-x64@1.13.4':
optional: true
'@swc/core-freebsd-x64@1.3.11':
@@ -14394,52 +14897,52 @@ snapshots:
'@swc/wasm': 1.2.130
optional: true
- '@swc/core-linux-arm-gnueabihf@1.13.3':
+ '@swc/core-linux-arm-gnueabihf@1.13.4':
optional: true
- '@swc/core-linux-arm64-gnu@1.13.3':
+ '@swc/core-linux-arm64-gnu@1.13.4':
optional: true
- '@swc/core-linux-arm64-musl@1.13.3':
+ '@swc/core-linux-arm64-musl@1.13.4':
optional: true
- '@swc/core-linux-x64-gnu@1.13.3':
+ '@swc/core-linux-x64-gnu@1.13.4':
optional: true
- '@swc/core-linux-x64-musl@1.13.3':
+ '@swc/core-linux-x64-musl@1.13.4':
optional: true
- '@swc/core-win32-arm64-msvc@1.13.3':
+ '@swc/core-win32-arm64-msvc@1.13.4':
optional: true
- '@swc/core-win32-ia32-msvc@1.13.3':
+ '@swc/core-win32-ia32-msvc@1.13.4':
optional: true
- '@swc/core-win32-x64-msvc@1.13.3':
+ '@swc/core-win32-x64-msvc@1.13.4':
optional: true
- '@swc/core@1.13.3':
+ '@swc/core@1.13.4':
dependencies:
'@swc/counter': 0.1.3
'@swc/types': 0.1.24
optionalDependencies:
- '@swc/core-darwin-arm64': 1.13.3
- '@swc/core-darwin-x64': 1.13.3
- '@swc/core-linux-arm-gnueabihf': 1.13.3
- '@swc/core-linux-arm64-gnu': 1.13.3
- '@swc/core-linux-arm64-musl': 1.13.3
- '@swc/core-linux-x64-gnu': 1.13.3
- '@swc/core-linux-x64-musl': 1.13.3
- '@swc/core-win32-arm64-msvc': 1.13.3
- '@swc/core-win32-ia32-msvc': 1.13.3
- '@swc/core-win32-x64-msvc': 1.13.3
+ '@swc/core-darwin-arm64': 1.13.4
+ '@swc/core-darwin-x64': 1.13.4
+ '@swc/core-linux-arm-gnueabihf': 1.13.4
+ '@swc/core-linux-arm64-gnu': 1.13.4
+ '@swc/core-linux-arm64-musl': 1.13.4
+ '@swc/core-linux-x64-gnu': 1.13.4
+ '@swc/core-linux-x64-musl': 1.13.4
+ '@swc/core-win32-arm64-msvc': 1.13.4
+ '@swc/core-win32-ia32-msvc': 1.13.4
+ '@swc/core-win32-x64-msvc': 1.13.4
'@swc/counter@0.1.3': {}
- '@swc/jest@0.2.39(@swc/core@1.13.3)':
+ '@swc/jest@0.2.39(@swc/core@1.13.4)':
dependencies:
'@jest/create-cache-key-function': 30.0.5
- '@swc/core': 1.13.3
+ '@swc/core': 1.13.4
'@swc/counter': 0.1.3
jsonc-parser: 3.2.0
@@ -14600,20 +15103,20 @@ snapshots:
dependencies:
'@testing-library/dom': 10.4.0
- '@testing-library/vue@8.1.0(@vue/compiler-sfc@3.5.18)(@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))':
+ '@testing-library/vue@8.1.0(@vue/compiler-sfc@3.5.19)(@vue/server-renderer@3.5.19(vue@3.5.19(typescript@5.9.2)))(vue@3.5.19(typescript@5.9.2))':
dependencies:
'@babel/runtime': 7.27.0
'@testing-library/dom': 9.3.4
- '@vue/test-utils': 2.4.1(@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))
- vue: 3.5.18(typescript@5.9.2)
+ '@vue/test-utils': 2.4.1(@vue/server-renderer@3.5.19(vue@3.5.19(typescript@5.9.2)))(vue@3.5.19(typescript@5.9.2))
+ vue: 3.5.19(typescript@5.9.2)
optionalDependencies:
- '@vue/compiler-sfc': 3.5.18
+ '@vue/compiler-sfc': 3.5.19
transitivePeerDependencies:
- '@vue/server-renderer'
'@tokenizer/inflate@0.2.7':
dependencies:
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
fflate: 0.8.2
token-types: 6.0.0
transitivePeerDependencies:
@@ -14627,7 +15130,7 @@ snapshots:
'@types/accepts@1.3.7':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/archiver@6.0.3':
dependencies:
@@ -14663,7 +15166,7 @@ snapshots:
'@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.36
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/braces@3.0.1': {}
@@ -14681,7 +15184,7 @@ snapshots:
'@types/connect@3.4.36':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/content-disposition@0.5.9': {}
@@ -14710,7 +15213,7 @@ snapshots:
'@types/express-serve-static-core@4.17.33':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/qs': 6.9.7
'@types/range-parser': 1.2.4
@@ -14723,11 +15226,11 @@ snapshots:
'@types/fluent-ffmpeg@2.1.27':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/graceful-fs@4.1.6':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/hammerjs@2.0.46': {}
@@ -14741,7 +15244,7 @@ snapshots:
'@types/http-link-header@1.0.7':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -14762,7 +15265,7 @@ snapshots:
'@types/jsdom@21.1.7':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/tough-cookie': 4.0.5
parse5: 7.3.0
@@ -14776,7 +15279,7 @@ snapshots:
'@types/long@4.0.2': {}
- '@types/matter-js@0.19.8': {}
+ '@types/matter-js@0.20.0': {}
'@types/mdast@4.0.3':
dependencies:
@@ -14800,11 +15303,11 @@ snapshots:
'@types/mysql@2.15.26':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/node-fetch@2.6.11':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
form-data: 4.0.4
'@types/node@20.19.9':
@@ -14815,13 +15318,16 @@ snapshots:
dependencies:
undici-types: 6.21.0
- '@types/node@22.17.1':
+ '@types/node@22.17.2':
dependencies:
undici-types: 6.21.0
- '@types/nodemailer@6.4.17':
+ '@types/nodemailer@6.4.19':
dependencies:
- '@types/node': 22.17.1
+ '@aws-sdk/client-ses': 3.873.0
+ '@types/node': 22.17.2
+ transitivePeerDependencies:
+ - aws-crt
'@types/normalize-package-data@2.4.1': {}
@@ -14832,11 +15338,11 @@ snapshots:
'@types/oauth2orize@1.11.5':
dependencies:
'@types/express': 4.17.17
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/oauth@0.9.6':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/offscreencanvas@2019.3.0': {}
@@ -14848,13 +15354,13 @@ snapshots:
'@types/pg@8.15.5':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
pg-protocol: 1.10.0
pg-types: 2.2.0
'@types/pg@8.6.1':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
pg-protocol: 1.10.0
pg-types: 2.2.0
@@ -14866,7 +15372,7 @@ snapshots:
'@types/qrcode@1.5.5':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/qs@6.9.7': {}
@@ -14884,7 +15390,7 @@ snapshots:
'@types/readdir-glob@1.1.1':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/redis-info@3.0.3': {}
@@ -14907,7 +15413,7 @@ snapshots:
'@types/serve-static@1.15.1':
dependencies:
'@types/mime': 3.0.1
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/serviceworker@0.0.74': {}
@@ -14933,7 +15439,7 @@ snapshots:
dependencies:
'@types/cookiejar': 2.1.5
'@types/methods': 1.1.4
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
form-data: 4.0.4
'@types/supertest@6.0.3':
@@ -14943,7 +15449,7 @@ snapshots:
'@types/tedious@4.0.14':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/throttle-debounce@5.0.2': {}
@@ -14959,21 +15465,21 @@ snapshots:
'@types/vary@1.1.3':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/wawoff2@1.0.2':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/web-push@3.6.4':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/whatwg-mimetype@3.0.2': {}
'@types/ws@8.18.1':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
'@types/yargs-parser@21.0.0': {}
@@ -14983,18 +15489,18 @@ snapshots:
'@types/yauzl@2.10.0':
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
optional: true
- '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.38.0(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/scope-manager': 8.38.0
- '@typescript-eslint/type-utils': 8.38.0(eslint@9.33.0)(typescript@5.9.2)
- '@typescript-eslint/utils': 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ '@typescript-eslint/type-utils': 8.38.0(eslint@9.34.0)(typescript@5.9.2)
+ '@typescript-eslint/utils': 8.38.0(eslint@9.34.0)(typescript@5.9.2)
'@typescript-eslint/visitor-keys': 8.38.0
- eslint: 9.33.0
+ eslint: 9.34.0
graphemer: 1.4.0
ignore: 7.0.4
natural-compare: 1.4.0
@@ -15003,15 +15509,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- '@typescript-eslint/scope-manager': 8.39.0
- '@typescript-eslint/type-utils': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- '@typescript-eslint/utils': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.39.0
- eslint: 9.33.0
+ '@typescript-eslint/parser': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
+ '@typescript-eslint/scope-manager': 8.40.0
+ '@typescript-eslint/type-utils': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
+ '@typescript-eslint/visitor-keys': 8.40.0
+ eslint: 9.34.0
graphemer: 1.4.0
ignore: 7.0.4
natural-compare: 1.4.0
@@ -15020,44 +15526,44 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/parser@8.38.0(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
'@typescript-eslint/scope-manager': 8.38.0
'@typescript-eslint/types': 8.38.0
'@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2)
'@typescript-eslint/visitor-keys': 8.38.0
- debug: 4.4.1(supports-color@10.0.0)
- eslint: 9.33.0
+ debug: 4.4.1(supports-color@10.2.0)
+ eslint: 9.34.0
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.39.0
- '@typescript-eslint/types': 8.39.0
- '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2)
- '@typescript-eslint/visitor-keys': 8.39.0
- debug: 4.4.1(supports-color@10.0.0)
- eslint: 9.33.0
+ '@typescript-eslint/scope-manager': 8.40.0
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
+ '@typescript-eslint/visitor-keys': 8.40.0
+ debug: 4.4.1(supports-color@10.2.0)
+ eslint: 9.34.0
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
'@typescript-eslint/project-service@8.38.0(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.39.0
- debug: 4.4.1(supports-color@10.0.0)
+ '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.9.2)
+ '@typescript-eslint/types': 8.40.0
+ debug: 4.4.1(supports-color@10.2.0)
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.39.0(typescript@5.9.2)':
+ '@typescript-eslint/project-service@8.40.0(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.39.0
- debug: 4.4.1(supports-color@10.0.0)
+ '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.9.2)
+ '@typescript-eslint/types': 8.40.0
+ debug: 4.4.1(supports-color@10.2.0)
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
@@ -15067,38 +15573,38 @@ snapshots:
'@typescript-eslint/types': 8.38.0
'@typescript-eslint/visitor-keys': 8.38.0
- '@typescript-eslint/scope-manager@8.39.0':
+ '@typescript-eslint/scope-manager@8.40.0':
dependencies:
- '@typescript-eslint/types': 8.39.0
- '@typescript-eslint/visitor-keys': 8.39.0
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/visitor-keys': 8.40.0
'@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.9.2)':
dependencies:
typescript: 5.9.2
- '@typescript-eslint/tsconfig-utils@8.39.0(typescript@5.9.2)':
+ '@typescript-eslint/tsconfig-utils@8.40.0(typescript@5.9.2)':
dependencies:
typescript: 5.9.2
- '@typescript-eslint/type-utils@8.38.0(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/type-utils@8.38.0(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
'@typescript-eslint/types': 8.38.0
'@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2)
- '@typescript-eslint/utils': 8.38.0(eslint@9.33.0)(typescript@5.9.2)
- debug: 4.4.1(supports-color@10.0.0)
- eslint: 9.33.0
+ '@typescript-eslint/utils': 8.38.0(eslint@9.34.0)(typescript@5.9.2)
+ debug: 4.4.1(supports-color@10.2.0)
+ eslint: 9.34.0
ts-api-utils: 2.1.0(typescript@5.9.2)
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.39.0(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/type-utils@8.40.0(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/types': 8.39.0
- '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2)
- '@typescript-eslint/utils': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- debug: 4.4.1(supports-color@10.0.0)
- eslint: 9.33.0
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
+ debug: 4.4.1(supports-color@10.2.0)
+ eslint: 9.34.0
ts-api-utils: 2.1.0(typescript@5.9.2)
typescript: 5.9.2
transitivePeerDependencies:
@@ -15106,7 +15612,7 @@ snapshots:
'@typescript-eslint/types@8.38.0': {}
- '@typescript-eslint/types@8.39.0': {}
+ '@typescript-eslint/types@8.40.0': {}
'@typescript-eslint/typescript-estree@8.38.0(typescript@5.9.2)':
dependencies:
@@ -15114,7 +15620,7 @@ snapshots:
'@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.9.2)
'@typescript-eslint/types': 8.38.0
'@typescript-eslint/visitor-keys': 8.38.0
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
@@ -15124,13 +15630,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.39.0(typescript@5.9.2)':
+ '@typescript-eslint/typescript-estree@8.40.0(typescript@5.9.2)':
dependencies:
- '@typescript-eslint/project-service': 8.39.0(typescript@5.9.2)
- '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.39.0
- '@typescript-eslint/visitor-keys': 8.39.0
- debug: 4.4.1(supports-color@10.0.0)
+ '@typescript-eslint/project-service': 8.40.0(typescript@5.9.2)
+ '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.9.2)
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/visitor-keys': 8.40.0
+ debug: 4.4.1(supports-color@10.2.0)
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
@@ -15140,24 +15646,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.38.0(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/utils@8.38.0(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0)
'@typescript-eslint/scope-manager': 8.38.0
'@typescript-eslint/types': 8.38.0
'@typescript-eslint/typescript-estree': 8.38.0(typescript@5.9.2)
- eslint: 9.33.0
+ eslint: 9.34.0
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.39.0(eslint@9.33.0)(typescript@5.9.2)':
+ '@typescript-eslint/utils@8.40.0(eslint@9.34.0)(typescript@5.9.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0)
- '@typescript-eslint/scope-manager': 8.39.0
- '@typescript-eslint/types': 8.39.0
- '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.9.2)
- eslint: 9.33.0
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0)
+ '@typescript-eslint/scope-manager': 8.40.0
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.2)
+ eslint: 9.34.0
typescript: 5.9.2
transitivePeerDependencies:
- supports-color
@@ -15167,54 +15673,54 @@ snapshots:
'@typescript-eslint/types': 8.38.0
eslint-visitor-keys: 4.2.1
- '@typescript-eslint/visitor-keys@8.39.0':
+ '@typescript-eslint/visitor-keys@8.40.0':
dependencies:
- '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/types': 8.40.0
eslint-visitor-keys: 4.2.1
'@ungap/structured-clone@1.2.0': {}
- '@vitejs/plugin-vue@6.0.1(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))(vue@3.5.18(typescript@5.9.2))':
+ '@vitejs/plugin-vue@6.0.1(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))(vue@3.5.19(typescript@5.9.2))':
dependencies:
'@rolldown/pluginutils': 1.0.0-beta.29
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
- vue: 3.5.18(typescript@5.9.2)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
+ vue: 3.5.19(typescript@5.9.2)
- '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))':
+ '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
ast-v8-to-istanbul: 0.3.3
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.17
+ magic-string: 0.30.18
magicast: 0.3.5
std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))':
+ '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
ast-v8-to-istanbul: 0.3.3
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.17
+ magic-string: 0.30.18
magicast: 0.3.5
std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
transitivePeerDependencies:
- supports-color
@@ -15233,23 +15739,23 @@ snapshots:
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.2.4(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))':
+ '@vitest/mocker@3.2.4(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.17
+ magic-string: 0.30.18
optionalDependencies:
- msw: 2.10.4(@types/node@22.17.0)(typescript@5.9.2)
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ msw: 2.10.5(@types/node@22.17.2)(typescript@5.9.2)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
- '@vitest/mocker@3.2.4(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(vite@7.0.6(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))':
+ '@vitest/mocker@3.2.4(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.17
+ magic-string: 0.30.18
optionalDependencies:
- msw: 2.10.4(@types/node@22.17.1)(typescript@5.9.2)
- vite: 7.0.6(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ msw: 2.10.5(@types/node@22.17.2)(typescript@5.9.2)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
'@vitest/pretty-format@2.0.5':
dependencies:
@@ -15272,7 +15778,7 @@ snapshots:
'@vitest/snapshot@3.2.4':
dependencies:
'@vitest/pretty-format': 3.2.4
- magic-string: 0.30.17
+ magic-string: 0.30.18
pathe: 2.0.3
'@vitest/spy@2.0.5':
@@ -15306,24 +15812,24 @@ snapshots:
dependencies:
'@volar/source-map': 2.2.0
- '@volar/language-core@2.4.22':
+ '@volar/language-core@2.4.23':
dependencies:
- '@volar/source-map': 2.4.22
+ '@volar/source-map': 2.4.23
'@volar/source-map@2.2.0':
dependencies:
muggle-string: 0.4.1
- '@volar/source-map@2.4.22': {}
+ '@volar/source-map@2.4.23': {}
'@volar/typescript@2.2.0':
dependencies:
'@volar/language-core': 2.2.0
path-browserify: 1.0.1
- '@volar/typescript@2.4.22':
+ '@volar/typescript@2.4.23':
dependencies:
- '@volar/language-core': 2.4.22
+ '@volar/language-core': 2.4.23
path-browserify: 1.0.1
vscode-uri: 3.0.8
@@ -15335,27 +15841,40 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.1
+ '@vue/compiler-core@3.5.19':
+ dependencies:
+ '@babel/parser': 7.28.3
+ '@vue/shared': 3.5.19
+ entities: 4.5.0
+ estree-walker: 2.0.2
+ source-map-js: 1.2.1
+
'@vue/compiler-dom@3.5.18':
dependencies:
'@vue/compiler-core': 3.5.18
'@vue/shared': 3.5.18
- '@vue/compiler-sfc@3.5.18':
+ '@vue/compiler-dom@3.5.19':
dependencies:
- '@babel/parser': 7.28.0
- '@vue/compiler-core': 3.5.18
- '@vue/compiler-dom': 3.5.18
- '@vue/compiler-ssr': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/compiler-core': 3.5.19
+ '@vue/shared': 3.5.19
+
+ '@vue/compiler-sfc@3.5.19':
+ dependencies:
+ '@babel/parser': 7.28.3
+ '@vue/compiler-core': 3.5.19
+ '@vue/compiler-dom': 3.5.19
+ '@vue/compiler-ssr': 3.5.19
+ '@vue/shared': 3.5.19
estree-walker: 2.0.2
- magic-string: 0.30.17
+ magic-string: 0.30.18
postcss: 8.5.6
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.18':
+ '@vue/compiler-ssr@3.5.19':
dependencies:
- '@vue/compiler-dom': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/compiler-dom': 3.5.19
+ '@vue/shared': 3.5.19
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -15374,9 +15893,9 @@ snapshots:
optionalDependencies:
typescript: 5.9.2
- '@vue/language-core@3.0.5(typescript@5.9.2)':
+ '@vue/language-core@3.0.6(typescript@5.9.2)':
dependencies:
- '@volar/language-core': 2.4.22
+ '@volar/language-core': 2.4.23
'@vue/compiler-dom': 3.5.18
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.18
@@ -15387,37 +15906,39 @@ snapshots:
optionalDependencies:
typescript: 5.9.2
- '@vue/reactivity@3.5.18':
+ '@vue/reactivity@3.5.19':
dependencies:
- '@vue/shared': 3.5.18
+ '@vue/shared': 3.5.19
- '@vue/runtime-core@3.5.18':
+ '@vue/runtime-core@3.5.19':
dependencies:
- '@vue/reactivity': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/reactivity': 3.5.19
+ '@vue/shared': 3.5.19
- '@vue/runtime-dom@3.5.18':
+ '@vue/runtime-dom@3.5.19':
dependencies:
- '@vue/reactivity': 3.5.18
- '@vue/runtime-core': 3.5.18
- '@vue/shared': 3.5.18
+ '@vue/reactivity': 3.5.19
+ '@vue/runtime-core': 3.5.19
+ '@vue/shared': 3.5.19
csstype: 3.1.3
- '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2))':
+ '@vue/server-renderer@3.5.19(vue@3.5.19(typescript@5.9.2))':
dependencies:
- '@vue/compiler-ssr': 3.5.18
- '@vue/shared': 3.5.18
- vue: 3.5.18(typescript@5.9.2)
+ '@vue/compiler-ssr': 3.5.19
+ '@vue/shared': 3.5.19
+ vue: 3.5.19(typescript@5.9.2)
'@vue/shared@3.5.18': {}
- '@vue/test-utils@2.4.1(@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.9.2)))(vue@3.5.18(typescript@5.9.2))':
+ '@vue/shared@3.5.19': {}
+
+ '@vue/test-utils@2.4.1(@vue/server-renderer@3.5.19(vue@3.5.19(typescript@5.9.2)))(vue@3.5.19(typescript@5.9.2))':
dependencies:
js-beautify: 1.14.9
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.19(typescript@5.9.2)
vue-component-type-helpers: 1.8.4
optionalDependencies:
- '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.9.2))
+ '@vue/server-renderer': 3.5.19(vue@3.5.19(typescript@5.9.2))
'@webgpu/types@0.1.38': {}
@@ -15526,7 +16047,7 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
transitivePeerDependencies:
- supports-color
optional: true
@@ -15593,16 +16114,16 @@ snapshots:
alien-signals@2.0.6: {}
- analytics-utils@1.0.14(@types/dlv@1.1.5):
+ analytics-utils@1.1.1(@types/dlv@1.1.5):
dependencies:
- '@analytics/type-utils': 0.6.2
+ '@analytics/type-utils': 0.6.4
'@types/dlv': 1.1.5
dlv: 1.1.3
- analytics@0.8.16(@types/dlv@1.1.5):
+ analytics@0.8.19(@types/dlv@1.1.5):
dependencies:
- '@analytics/core': 0.12.17(@types/dlv@1.1.5)
- '@analytics/storage-utils': 0.4.2
+ '@analytics/core': 0.13.2(@types/dlv@1.1.5)
+ '@analytics/storage-utils': 0.4.4
transitivePeerDependencies:
- '@types/dlv'
@@ -16010,7 +16531,7 @@ snapshots:
node-gyp-build: 4.6.0
optional: true
- bullmq@5.56.9:
+ bullmq@5.58.1:
dependencies:
cron-parser: 4.9.0
ioredis: 5.7.0
@@ -16137,7 +16658,7 @@ snapshots:
chalk-template@1.1.0:
dependencies:
- chalk: 5.5.0
+ chalk: 5.6.0
chalk@3.0.0:
dependencies:
@@ -16149,7 +16670,7 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.5.0: {}
+ chalk@5.6.0: {}
change-case@5.4.4: {}
@@ -16417,13 +16938,13 @@ snapshots:
crc-32: 1.2.2
readable-stream: 4.3.0
- create-jest@29.7.0(@types/node@22.17.1):
+ create-jest@29.7.0(@types/node@22.17.2):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.17.1)
+ jest-config: 29.7.0(@types/node@22.17.2)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -16490,7 +17011,7 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@7.0.8(postcss@8.5.6):
+ cssnano-preset-default@7.0.9(postcss@8.5.6):
dependencies:
browserslist: 4.25.1
css-declaration-sorter: 7.2.0(postcss@8.5.6)
@@ -16498,7 +17019,7 @@ snapshots:
postcss: 8.5.6
postcss-calc: 10.1.1(postcss@8.5.6)
postcss-colormin: 7.0.4(postcss@8.5.6)
- postcss-convert-values: 7.0.6(postcss@8.5.6)
+ postcss-convert-values: 7.0.7(postcss@8.5.6)
postcss-discard-comments: 7.0.4(postcss@8.5.6)
postcss-discard-duplicates: 7.0.2(postcss@8.5.6)
postcss-discard-empty: 7.0.1(postcss@8.5.6)
@@ -16528,9 +17049,9 @@ snapshots:
dependencies:
postcss: 8.5.6
- cssnano@7.1.0(postcss@8.5.6):
+ cssnano@7.1.1(postcss@8.5.6):
dependencies:
- cssnano-preset-default: 7.0.8(postcss@8.5.6)
+ cssnano-preset-default: 7.0.9(postcss@8.5.6)
lilconfig: 3.1.3
postcss: 8.5.6
@@ -16545,53 +17066,6 @@ snapshots:
csstype@3.1.3: {}
- cypress@14.5.3:
- dependencies:
- '@cypress/request': 3.0.9
- '@cypress/xvfb': 1.2.4(supports-color@8.1.1)
- '@types/sinonjs__fake-timers': 8.1.1
- '@types/sizzle': 2.3.3
- arch: 2.2.0
- blob-util: 2.0.2
- bluebird: 3.7.2
- buffer: 5.7.1
- cachedir: 2.3.0
- chalk: 4.1.2
- check-more-types: 2.24.0
- ci-info: 4.1.0
- cli-cursor: 3.1.0
- cli-table3: 0.6.1
- commander: 6.2.1
- common-tags: 1.8.2
- dayjs: 1.11.13
- debug: 4.4.1(supports-color@8.1.1)
- enquirer: 2.3.6
- eventemitter2: 6.4.7
- execa: 4.1.0
- executable: 4.1.1
- extract-zip: 2.0.1(supports-color@8.1.1)
- figures: 3.2.0
- fs-extra: 9.1.0
- getos: 3.2.1
- hasha: 5.2.2
- is-installed-globally: 0.4.0
- lazy-ass: 1.6.0
- listr2: 3.14.0(enquirer@2.3.6)
- lodash: 4.17.21
- log-symbols: 4.1.0
- minimist: 1.2.8
- ospath: 1.2.2
- pretty-bytes: 5.6.0
- process: 0.11.10
- proxy-from-env: 1.0.0
- request-progress: 3.0.0
- semver: 7.7.2
- supports-color: 8.1.1
- tmp: 0.2.4
- tree-kill: 1.2.2
- untildify: 4.0.0
- yauzl: 2.10.0
-
cypress@14.5.4:
dependencies:
'@cypress/request': 3.0.9
@@ -16634,7 +17108,7 @@ snapshots:
request-progress: 3.0.0
semver: 7.7.2
supports-color: 8.1.1
- tmp: 0.2.4
+ tmp: 0.2.5
tree-kill: 1.2.2
untildify: 4.0.0
yauzl: 2.10.0
@@ -16688,11 +17162,11 @@ snapshots:
optionalDependencies:
supports-color: 8.1.1
- debug@4.4.1(supports-color@10.0.0):
+ debug@4.4.1(supports-color@10.2.0):
dependencies:
ms: 2.1.3
optionalDependencies:
- supports-color: 10.0.0
+ supports-color: 10.2.0
debug@4.4.1(supports-color@5.5.0):
dependencies:
@@ -17069,10 +17543,10 @@ snapshots:
es6-promise: 4.2.8
optional: true
- esbuild-register@3.5.0(esbuild@0.25.8):
+ esbuild-register@3.5.0(esbuild@0.25.9):
dependencies:
- debug: 4.4.1(supports-color@10.0.0)
- esbuild: 0.25.8
+ debug: 4.4.1(supports-color@10.2.0)
+ esbuild: 0.25.9
transitivePeerDependencies:
- supports-color
@@ -17105,6 +17579,35 @@ snapshots:
'@esbuild/win32-ia32': 0.25.8
'@esbuild/win32-x64': 0.25.8
+ esbuild@0.25.9:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.9
+ '@esbuild/android-arm': 0.25.9
+ '@esbuild/android-arm64': 0.25.9
+ '@esbuild/android-x64': 0.25.9
+ '@esbuild/darwin-arm64': 0.25.9
+ '@esbuild/darwin-x64': 0.25.9
+ '@esbuild/freebsd-arm64': 0.25.9
+ '@esbuild/freebsd-x64': 0.25.9
+ '@esbuild/linux-arm': 0.25.9
+ '@esbuild/linux-arm64': 0.25.9
+ '@esbuild/linux-ia32': 0.25.9
+ '@esbuild/linux-loong64': 0.25.9
+ '@esbuild/linux-mips64el': 0.25.9
+ '@esbuild/linux-ppc64': 0.25.9
+ '@esbuild/linux-riscv64': 0.25.9
+ '@esbuild/linux-s390x': 0.25.9
+ '@esbuild/linux-x64': 0.25.9
+ '@esbuild/netbsd-arm64': 0.25.9
+ '@esbuild/netbsd-x64': 0.25.9
+ '@esbuild/openbsd-arm64': 0.25.9
+ '@esbuild/openbsd-x64': 0.25.9
+ '@esbuild/openharmony-arm64': 0.25.9
+ '@esbuild/sunos-x64': 0.25.9
+ '@esbuild/win32-arm64': 0.25.9
+ '@esbuild/win32-ia32': 0.25.9
+ '@esbuild/win32-x64': 0.25.9
+
escalade@3.2.0: {}
escape-goat@3.0.0: {}
@@ -17140,27 +17643,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.33.0):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.34.0):
dependencies:
debug: 3.2.7(supports-color@8.1.1)
optionalDependencies:
- '@typescript-eslint/parser': 8.38.0(eslint@9.33.0)(typescript@5.9.2)
- eslint: 9.33.0
+ '@typescript-eslint/parser': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
+ eslint: 9.34.0
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.33.0):
- dependencies:
- debug: 3.2.7(supports-color@8.1.1)
- optionalDependencies:
- '@typescript-eslint/parser': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- eslint: 9.33.0
- eslint-import-resolver-node: 0.3.9
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -17169,9 +17662,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7(supports-color@8.1.1)
doctrine: 2.1.0
- eslint: 9.33.0
+ eslint: 9.34.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.33.0)
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.34.0)
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -17183,53 +17676,24 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0):
+ eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.40.0(eslint@9.34.0)(typescript@5.9.2))(eslint@9.34.0)(vue-eslint-parser@10.2.0(eslint@9.34.0)):
dependencies:
- '@rtsao/scc': 1.1.0
- array-includes: 3.1.9
- array.prototype.findlastindex: 1.2.6
- array.prototype.flat: 1.3.3
- array.prototype.flatmap: 1.3.3
- debug: 3.2.7(supports-color@8.1.1)
- doctrine: 2.1.0
- eslint: 9.33.0
- eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.39.0(eslint@9.33.0)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint@9.33.0)
- hasown: 2.0.2
- is-core-module: 2.16.1
- is-glob: 4.0.3
- minimatch: 3.1.2
- object.fromentries: 2.0.8
- object.groupby: 1.0.3
- object.values: 1.2.1
- semver: 6.3.1
- string.prototype.trimend: 1.0.9
- tsconfig-paths: 3.15.0
- optionalDependencies:
- '@typescript-eslint/parser': 8.39.0(eslint@9.33.0)(typescript@5.9.2)
- transitivePeerDependencies:
- - eslint-import-resolver-typescript
- - eslint-import-resolver-webpack
- - supports-color
-
- eslint-plugin-vue@10.4.0(@typescript-eslint/parser@8.38.0(eslint@9.33.0)(typescript@5.9.2))(eslint@9.33.0)(vue-eslint-parser@10.2.0(eslint@9.33.0)):
- dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0)
- eslint: 9.33.0
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0)
+ eslint: 9.34.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.1.2
semver: 7.7.2
- vue-eslint-parser: 10.2.0(eslint@9.33.0)
+ vue-eslint-parser: 10.2.0(eslint@9.34.0)
xml-name-validator: 4.0.0
optionalDependencies:
- '@typescript-eslint/parser': 8.38.0(eslint@9.33.0)(typescript@5.9.2)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.34.0)(typescript@5.9.2)
eslint-rule-docs@1.1.235: {}
@@ -17242,15 +17706,15 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@9.33.0:
+ eslint@9.34.0:
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.33.0)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.34.0)
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.21.0
'@eslint/config-helpers': 0.3.1
'@eslint/core': 0.15.2
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.33.0
+ '@eslint/js': 9.34.0
'@eslint/plugin-kit': 0.3.5
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
@@ -17260,7 +17724,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
escape-string-regexp: 4.0.0
eslint-scope: 8.4.0
eslint-visitor-keys: 4.2.1
@@ -17533,7 +17997,7 @@ snapshots:
raw-body: 3.0.0
secure-json-parse: 2.7.0
- fastify@5.4.0:
+ fastify@5.5.0:
dependencies:
'@fastify/ajv-compiler': 4.0.0
'@fastify/error': 4.0.0
@@ -17567,6 +18031,10 @@ snapshots:
optionalDependencies:
picomatch: 4.0.3
+ fdir@6.5.0(picomatch@4.0.3):
+ optionalDependencies:
+ picomatch: 4.0.3
+
feed@4.2.2:
dependencies:
xml-js: 1.6.11
@@ -17679,7 +18147,7 @@ snapshots:
follow-redirects@1.15.9(debug@4.4.1):
optionalDependencies:
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
for-each@0.3.5:
dependencies:
@@ -17967,7 +18435,7 @@ snapshots:
hard-rejection@2.1.0: {}
- harfbuzzjs@0.4.8: {}
+ harfbuzzjs@0.4.9: {}
has-bigints@1.0.2: {}
@@ -18085,7 +18553,7 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.3
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
transitivePeerDependencies:
- supports-color
@@ -18113,15 +18581,15 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
transitivePeerDependencies:
- supports-color
optional: true
- https-proxy-agent@7.0.6(supports-color@10.0.0):
+ https-proxy-agent@7.0.6(supports-color@10.2.0):
dependencies:
agent-base: 7.1.3
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
transitivePeerDependencies:
- supports-color
@@ -18217,7 +18685,7 @@ snapshots:
dependencies:
'@ioredis/commands': 1.3.0
cluster-key-slot: 1.1.2
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -18451,7 +18919,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -18460,7 +18928,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.29
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -18494,7 +18962,7 @@ snapshots:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
chalk: 4.1.2
co: 4.6.0
dedent: 1.6.0
@@ -18514,16 +18982,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@22.17.1):
+ jest-cli@29.7.0(@types/node@22.17.2):
dependencies:
'@jest/core': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.17.1)
+ create-jest: 29.7.0(@types/node@22.17.2)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@22.17.1)
+ jest-config: 29.7.0(@types/node@22.17.2)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -18533,7 +19001,7 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@22.17.1):
+ jest-config@29.7.0(@types/node@22.17.2):
dependencies:
'@babel/core': 7.24.7
'@jest/test-sequencer': 29.7.0
@@ -18558,7 +19026,7 @@ snapshots:
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -18587,7 +19055,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -18597,7 +19065,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.6
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -18636,7 +19104,7 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
jest-util: 29.7.0
jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -18673,7 +19141,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -18701,7 +19169,7 @@ snapshots:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
chalk: 4.1.2
cjs-module-lexer: 1.2.2
collect-v8-coverage: 1.0.1
@@ -18747,7 +19215,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
chalk: 4.1.2
ci-info: 3.7.1
graceful-fs: 4.2.11
@@ -18766,7 +19234,7 @@ snapshots:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -18775,17 +19243,17 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@22.17.1):
+ jest@29.7.0(@types/node@22.17.2):
dependencies:
'@jest/core': 29.7.0
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@22.17.1)
+ jest-cli: 29.7.0(@types/node@22.17.2)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -18839,7 +19307,7 @@ snapshots:
decimal.js: 10.5.0
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6(supports-color@10.0.0)
+ https-proxy-agent: 7.0.6(supports-color@10.2.0)
is-potential-custom-element-name: 1.0.1
nwsapi: 2.2.16
parse5: 7.3.0
@@ -19085,6 +19553,10 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ magic-string@0.30.18:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+
magicast@0.3.5:
dependencies:
'@babel/parser': 7.28.0
@@ -19255,7 +19727,7 @@ snapshots:
media-typer@0.3.0: {}
- meilisearch@0.51.0: {}
+ meilisearch@0.52.0: {}
memoizerific@1.11.3:
dependencies:
@@ -19466,7 +19938,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.0
@@ -19628,17 +20100,17 @@ snapshots:
optionalDependencies:
msgpackr-extract: 3.0.2
- msw-storybook-addon@2.0.5(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2)):
+ msw-storybook-addon@2.0.5(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2)):
dependencies:
is-node-process: 1.2.0
- msw: 2.10.4(@types/node@22.17.0)(typescript@5.9.2)
+ msw: 2.10.5(@types/node@22.17.2)(typescript@5.9.2)
- msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2):
+ msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
'@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.0.2(@types/node@22.17.0)
+ '@inquirer/confirm': 5.0.2(@types/node@22.17.2)
'@mswjs/interceptors': 0.39.2
'@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
@@ -19658,32 +20130,6 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2):
- dependencies:
- '@bundled-es-modules/cookie': 2.0.1
- '@bundled-es-modules/statuses': 1.0.1
- '@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.0.2(@types/node@22.17.1)
- '@mswjs/interceptors': 0.39.2
- '@open-draft/deferred-promise': 2.2.0
- '@open-draft/until': 2.1.0
- '@types/cookie': 0.6.0
- '@types/statuses': 2.0.4
- graphql: 16.8.1
- headers-polyfill: 4.0.2
- is-node-process: 1.2.0
- outvariant: 1.4.3
- path-to-regexp: 6.3.0
- picocolors: 1.1.1
- strict-event-emitter: 0.5.1
- type-fest: 4.41.0
- yargs: 17.7.2
- optionalDependencies:
- typescript: 5.9.2
- transitivePeerDependencies:
- - '@types/node'
- optional: true
-
muggle-string@0.4.1: {}
multer@2.0.2:
@@ -19980,13 +20426,13 @@ snapshots:
openapi-types@12.1.3: {}
- openapi-typescript@7.8.0(typescript@5.9.2):
+ openapi-typescript@7.9.1(typescript@5.9.2):
dependencies:
- '@redocly/openapi-core': 1.34.3(supports-color@10.0.0)
+ '@redocly/openapi-core': 1.34.5(supports-color@10.2.0)
ansi-colors: 4.1.3
change-case: 5.4.4
parse-json: 8.3.0
- supports-color: 10.0.0
+ supports-color: 10.2.0
typescript: 5.9.2
yargs-parser: 21.1.1
@@ -20003,9 +20449,9 @@ snapshots:
ospath@1.2.2: {}
- otpauth@9.4.0:
+ otpauth@9.4.1:
dependencies:
- '@noble/hashes': 1.7.1
+ '@noble/hashes': 1.8.0
outvariant@1.4.3: {}
@@ -20252,7 +20698,7 @@ snapshots:
pngjs@5.0.0: {}
- pnpm@10.14.0: {}
+ pnpm@10.15.0: {}
polished@4.2.2:
dependencies:
@@ -20274,7 +20720,7 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-convert-values@7.0.6(postcss@8.5.6):
+ postcss-convert-values@7.0.7(postcss@8.5.6):
dependencies:
browserslist: 4.25.1
postcss: 8.5.6
@@ -20883,7 +21329,7 @@ snapshots:
require-in-the-middle@7.3.0:
dependencies:
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
module-details-from-path: 1.0.3
resolve: 1.22.8
transitivePeerDependencies:
@@ -20970,6 +21416,32 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.46.2
fsevents: 2.3.3
+ rollup@4.48.0:
+ dependencies:
+ '@types/estree': 1.0.8
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.48.0
+ '@rollup/rollup-android-arm64': 4.48.0
+ '@rollup/rollup-darwin-arm64': 4.48.0
+ '@rollup/rollup-darwin-x64': 4.48.0
+ '@rollup/rollup-freebsd-arm64': 4.48.0
+ '@rollup/rollup-freebsd-x64': 4.48.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.48.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.48.0
+ '@rollup/rollup-linux-arm64-gnu': 4.48.0
+ '@rollup/rollup-linux-arm64-musl': 4.48.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.48.0
+ '@rollup/rollup-linux-ppc64-gnu': 4.48.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.48.0
+ '@rollup/rollup-linux-riscv64-musl': 4.48.0
+ '@rollup/rollup-linux-s390x-gnu': 4.48.0
+ '@rollup/rollup-linux-x64-gnu': 4.48.0
+ '@rollup/rollup-linux-x64-musl': 4.48.0
+ '@rollup/rollup-win32-arm64-msvc': 4.48.0
+ '@rollup/rollup-win32-ia32-msvc': 4.48.0
+ '@rollup/rollup-win32-x64-msvc': 4.48.0
+ fsevents: 2.3.3
+
rrweb-cssom@0.8.0: {}
rss-parser@3.13.0:
@@ -21025,7 +21497,7 @@ snapshots:
parse-srcset: 1.0.2
postcss: 8.5.6
- sass@1.89.2:
+ sass@1.90.0:
dependencies:
chokidar: 4.0.3
immutable: 5.0.3
@@ -21191,14 +21663,14 @@ snapshots:
shebang-regex@3.0.0: {}
- shiki@3.9.1:
+ shiki@3.11.0:
dependencies:
- '@shikijs/core': 3.9.1
- '@shikijs/engine-javascript': 3.9.1
- '@shikijs/engine-oniguruma': 3.9.1
- '@shikijs/langs': 3.9.1
- '@shikijs/themes': 3.9.1
- '@shikijs/types': 3.9.1
+ '@shikijs/core': 3.11.0
+ '@shikijs/engine-javascript': 3.11.0
+ '@shikijs/engine-oniguruma': 3.11.0
+ '@shikijs/langs': 3.11.0
+ '@shikijs/themes': 3.11.0
+ '@shikijs/types': 3.11.0
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -21252,7 +21724,7 @@ snapshots:
dependencies:
'@hapi/hoek': 11.0.4
'@hapi/wreck': 18.0.1
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
joi: 17.13.3
transitivePeerDependencies:
- supports-color
@@ -21352,7 +21824,7 @@ snapshots:
socks-proxy-agent@8.0.5:
dependencies:
agent-base: 7.1.3
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
socks: 2.8.4
transitivePeerDependencies:
- supports-color
@@ -21444,25 +21916,12 @@ snapshots:
standard-as-callback@2.1.0: {}
- start-server-and-test@2.0.12:
- dependencies:
- arg: 5.0.2
- bluebird: 3.7.2
- check-more-types: 2.24.0
- debug: 4.4.1(supports-color@10.0.0)
- execa: 5.1.1
- lazy-ass: 1.6.0
- ps-tree: 1.2.0
- wait-on: 8.0.3(debug@4.4.1)
- transitivePeerDependencies:
- - supports-color
-
start-server-and-test@2.0.13:
dependencies:
arg: 5.0.2
bluebird: 3.7.2
check-more-types: 2.24.0
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
execa: 5.1.1
lazy-ass: 1.6.0
ps-tree: 1.2.0
@@ -21479,30 +21938,30 @@ snapshots:
es-errors: 1.3.0
internal-slot: 1.1.0
- storybook-addon-misskey-theme@https://codeload.github.com/misskey-dev/storybook-addon-misskey-theme/tar.gz/cf583db098365b2ccc81a82f63ca9c93bc32b640(1169897c5e200f76aeb2e7696f1450e0):
+ storybook-addon-misskey-theme@https://codeload.github.com/misskey-dev/storybook-addon-misskey-theme/tar.gz/cf583db098365b2ccc81a82f63ca9c93bc32b640(259986330117e371e80190ddf50a33b9):
dependencies:
- '@storybook/blocks': 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/components': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/core-events': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/manager-api': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/preview-api': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/theming': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
- '@storybook/types': 8.6.14(storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)))
+ '@storybook/blocks': 8.6.14(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/components': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/core-events': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/manager-api': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/preview-api': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/theming': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
+ '@storybook/types': 8.6.14(storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)))
optionalDependencies:
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- storybook@9.1.0(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)):
+ storybook@9.1.3(@testing-library/dom@10.4.0)(bufferutil@4.0.9)(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(prettier@3.6.2)(utf-8-validate@6.0.5)(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)):
dependencies:
'@storybook/global': 5.0.0
'@testing-library/jest-dom': 6.6.4
'@testing-library/user-event': 14.6.1(@testing-library/dom@10.4.0)
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ '@vitest/mocker': 3.2.4(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
'@vitest/spy': 3.2.4
better-opn: 3.0.2
- esbuild: 0.25.8
- esbuild-register: 3.5.0(esbuild@0.25.8)
+ esbuild: 0.25.9
+ esbuild-register: 3.5.0(esbuild@0.25.9)
recast: 0.23.6
semver: 7.7.2
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@6.0.5)
@@ -21665,7 +22124,7 @@ snapshots:
dependencies:
component-emitter: 1.3.1
cookiejar: 2.1.4
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
fast-safe-stringify: 2.1.1
form-data: 4.0.4
formidable: 3.5.4
@@ -21682,7 +22141,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- supports-color@10.0.0: {}
+ supports-color@10.2.0: {}
supports-color@5.5.0:
dependencies:
@@ -21838,7 +22297,7 @@ snapshots:
dependencies:
tldts-core: 6.1.61
- tmp@0.2.4: {}
+ tmp@0.2.5: {}
tmpl@1.0.5: {}
@@ -21933,9 +22392,16 @@ snapshots:
tslib@2.8.1: {}
- tsx@4.20.3:
+ tsx@4.20.4:
dependencies:
- esbuild: 0.25.8
+ esbuild: 0.25.9
+ get-tsconfig: 4.10.1
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ tsx@4.20.5:
+ dependencies:
+ esbuild: 0.25.9
get-tsconfig: 4.10.1
optionalDependencies:
fsevents: 2.3.3
@@ -22004,14 +22470,14 @@ snapshots:
typedarray@0.0.6: {}
- typeorm@0.3.25(patch_hash=2677b97a423e157945c154e64183d3ae2eb44dfa9cb0e5ce731a7612f507bb56)(ioredis@5.7.0)(pg@8.16.3)(reflect-metadata@0.2.2):
+ typeorm@0.3.26(patch_hash=2677b97a423e157945c154e64183d3ae2eb44dfa9cb0e5ce731a7612f507bb56)(ioredis@5.7.0)(pg@8.16.3)(reflect-metadata@0.2.2):
dependencies:
'@sqltools/formatter': 1.2.5
ansis: 3.17.0
app-root-path: 3.1.0
buffer: 6.0.3
dayjs: 1.11.13
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
dedent: 1.6.0
dotenv: 16.4.7
glob: 10.4.5
@@ -22162,13 +22628,13 @@ snapshots:
uuid@9.0.1: {}
- v-code-diff@1.13.1(vue@3.5.18(typescript@5.9.2)):
+ v-code-diff@1.13.1(vue@3.5.19(typescript@5.9.2)):
dependencies:
diff: 5.2.0
diff-match-patch: 1.0.5
highlight.js: 11.10.0
- vue: 3.5.18(typescript@5.9.2)
- vue-demi: 0.14.7(vue@3.5.18(typescript@5.9.2))
+ vue: 3.5.19(typescript@5.9.2)
+ vue-demi: 0.14.7(vue@3.5.19(typescript@5.9.2))
v8-to-istanbul@9.2.0:
dependencies:
@@ -22202,13 +22668,13 @@ snapshots:
unist-util-stringify-position: 4.0.0
vfile-message: 4.0.2
- vite-node@3.2.4(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3):
+ vite-node@3.2.4(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4):
dependencies:
cac: 6.7.14
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -22223,13 +22689,13 @@ snapshots:
- tsx
- yaml
- vite-node@3.2.4(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3):
+ vite-node@3.2.4(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5):
dependencies:
cac: 6.7.14
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 7.0.6(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -22246,60 +22712,75 @@ snapshots:
vite-plugin-turbosnap@1.0.3: {}
- vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3):
+ vite@7.0.6(@types/node@22.17.0)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5):
dependencies:
esbuild: 0.25.8
fdir: 6.4.6(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
- rollup: 4.46.2
+ rollup: 4.48.0
tinyglobby: 0.2.14
optionalDependencies:
'@types/node': 22.17.0
fsevents: 2.3.3
- sass: 1.89.2
+ sass: 1.90.0
terser: 5.43.1
- tsx: 4.20.3
+ tsx: 4.20.5
- vite@7.0.6(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3):
+ vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4):
dependencies:
- esbuild: 0.25.8
- fdir: 6.4.6(picomatch@4.0.3)
+ esbuild: 0.25.9
+ fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
- rollup: 4.46.2
+ rollup: 4.48.0
tinyglobby: 0.2.14
optionalDependencies:
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
fsevents: 2.3.3
- sass: 1.89.2
+ sass: 1.90.0
terser: 5.43.1
- tsx: 4.20.3
+ tsx: 4.20.4
- vitest-fetch-mock@0.4.5(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)):
+ vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5):
dependencies:
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ esbuild: 0.25.9
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.48.0
+ tinyglobby: 0.2.14
+ optionalDependencies:
+ '@types/node': 22.17.2
+ fsevents: 2.3.3
+ sass: 1.90.0
+ terser: 5.43.1
+ tsx: 4.20.5
- vitest-websocket-mock@0.5.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)):
+ vitest-fetch-mock@0.4.5(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)):
+ dependencies:
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
+
+ vitest-websocket-mock@0.5.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)):
dependencies:
'@vitest/utils': 3.2.4
mock-socket: 9.3.1
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
- vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3):
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4):
dependencies:
'@types/chai': 5.2.2
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(msw@2.10.4(@types/node@22.17.0)(typescript@5.9.2))(vite@7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ '@vitest/mocker': 3.2.4(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.2.0
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
expect-type: 1.2.1
- magic-string: 0.30.17
+ magic-string: 0.30.18
pathe: 2.0.3
picomatch: 4.0.3
std-env: 3.9.0
@@ -22308,12 +22789,12 @@ snapshots:
tinyglobby: 0.2.14
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 7.0.6(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
- vite-node: 3.2.4(@types/node@22.17.0)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
+ vite-node: 3.2.4(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.4)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.17.0
+ '@types/node': 22.17.2
happy-dom: 18.0.1
jsdom: 26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5)
transitivePeerDependencies:
@@ -22330,20 +22811,20 @@ snapshots:
- tsx
- yaml
- vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.1)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3):
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.2)(happy-dom@18.0.1)(jsdom@26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5))(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5):
dependencies:
'@types/chai': 5.2.2
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(msw@2.10.4(@types/node@22.17.1)(typescript@5.9.2))(vite@7.0.6(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3))
+ '@vitest/mocker': 3.2.4(msw@2.10.5(@types/node@22.17.2)(typescript@5.9.2))(vite@7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.2.0
- debug: 4.4.1(supports-color@10.0.0)
+ debug: 4.4.1(supports-color@10.2.0)
expect-type: 1.2.1
- magic-string: 0.30.17
+ magic-string: 0.30.18
pathe: 2.0.3
picomatch: 4.0.3
std-env: 3.9.0
@@ -22352,12 +22833,12 @@ snapshots:
tinyglobby: 0.2.14
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 7.0.6(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
- vite-node: 3.2.4(@types/node@22.17.1)(sass@1.89.2)(terser@5.43.1)(tsx@4.20.3)
+ vite: 7.1.3(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
+ vite-node: 3.2.4(@types/node@22.17.2)(sass@1.90.0)(terser@5.43.1)(tsx@4.20.5)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.17.1
+ '@types/node': 22.17.2
happy-dom: 18.0.1
jsdom: 26.1.0(bufferutil@4.0.9)(canvas@3.1.0)(utf-8-validate@6.0.5)
transitivePeerDependencies:
@@ -22406,31 +22887,31 @@ snapshots:
vue-component-type-helpers@2.0.16: {}
- vue-component-type-helpers@3.0.5: {}
+ vue-component-type-helpers@3.0.6: {}
- vue-demi@0.14.7(vue@3.5.18(typescript@5.9.2)):
+ vue-demi@0.14.7(vue@3.5.19(typescript@5.9.2)):
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.19(typescript@5.9.2)
- vue-docgen-api@4.75.1(vue@3.5.18(typescript@5.9.2)):
+ vue-docgen-api@4.75.1(vue@3.5.19(typescript@5.9.2)):
dependencies:
'@babel/parser': 7.28.0
'@babel/types': 7.28.1
'@vue/compiler-dom': 3.5.18
- '@vue/compiler-sfc': 3.5.18
+ '@vue/compiler-sfc': 3.5.19
ast-types: 0.16.1
hash-sum: 2.0.0
lru-cache: 8.0.4
pug: 3.0.3
recast: 0.23.6
ts-map: 1.0.3
- vue: 3.5.18(typescript@5.9.2)
- vue-inbrowser-compiler-independent-utils: 4.71.1(vue@3.5.18(typescript@5.9.2))
+ vue: 3.5.19(typescript@5.9.2)
+ vue-inbrowser-compiler-independent-utils: 4.71.1(vue@3.5.19(typescript@5.9.2))
- vue-eslint-parser@10.2.0(eslint@9.33.0):
+ vue-eslint-parser@10.2.0(eslint@9.34.0):
dependencies:
- debug: 4.4.1(supports-color@10.0.0)
- eslint: 9.33.0
+ debug: 4.4.1(supports-color@10.2.0)
+ eslint: 9.34.0
eslint-scope: 8.4.0
eslint-visitor-keys: 4.2.1
espree: 10.4.0
@@ -22439,50 +22920,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-inbrowser-compiler-independent-utils@4.71.1(vue@3.5.18(typescript@5.9.2)):
+ vue-inbrowser-compiler-independent-utils@4.71.1(vue@3.5.19(typescript@5.9.2)):
dependencies:
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.19(typescript@5.9.2)
vue-template-compiler@2.7.14:
dependencies:
de-indent: 1.0.2
he: 1.2.0
- vue-tsc@3.0.5(typescript@5.9.2):
+ vue-tsc@3.0.6(typescript@5.9.2):
dependencies:
- '@volar/typescript': 2.4.22
- '@vue/language-core': 3.0.5(typescript@5.9.2)
+ '@volar/typescript': 2.4.23
+ '@vue/language-core': 3.0.6(typescript@5.9.2)
typescript: 5.9.2
- vue@3.5.18(typescript@5.9.2):
+ vue@3.5.19(typescript@5.9.2):
dependencies:
- '@vue/compiler-dom': 3.5.18
- '@vue/compiler-sfc': 3.5.18
- '@vue/runtime-dom': 3.5.18
- '@vue/server-renderer': 3.5.18(vue@3.5.18(typescript@5.9.2))
- '@vue/shared': 3.5.18
+ '@vue/compiler-dom': 3.5.19
+ '@vue/compiler-sfc': 3.5.19
+ '@vue/runtime-dom': 3.5.19
+ '@vue/server-renderer': 3.5.19(vue@3.5.19(typescript@5.9.2))
+ '@vue/shared': 3.5.19
optionalDependencies:
typescript: 5.9.2
- vuedraggable@4.1.0(vue@3.5.18(typescript@5.9.2)):
+ vuedraggable@4.1.0(vue@3.5.19(typescript@5.9.2)):
dependencies:
sortablejs: 1.14.0
- vue: 3.5.18(typescript@5.9.2)
+ vue: 3.5.19(typescript@5.9.2)
w3c-xmlserializer@5.0.0:
dependencies:
xml-name-validator: 5.0.0
- wait-on@8.0.3(debug@4.4.1):
- dependencies:
- axios: 1.11.0(debug@4.4.1)
- joi: 17.13.3
- lodash: 4.17.21
- minimist: 1.2.8
- rxjs: 7.8.2
- transitivePeerDependencies:
- - debug
-
wait-on@8.0.4(debug@4.4.1):
dependencies:
axios: 1.11.0(debug@4.4.1)
@@ -22507,7 +22978,7 @@ snapshots:
dependencies:
asn1.js: 5.4.1
http_ece: 1.2.0
- https-proxy-agent: 7.0.6(supports-color@10.0.0)
+ https-proxy-agent: 7.0.6(supports-color@10.2.0)
jws: 4.0.0
minimist: 1.2.8
transitivePeerDependencies: