diff --git a/playground/html/invalidEscape.html b/playground/html/invalidEscape.html
new file mode 100644
index 00000000000000..93797bfe524777
--- /dev/null
+++ b/playground/html/invalidEscape.html
@@ -0,0 +1 @@
+
diff --git a/playground/json/package.json b/playground/json/package.json
index 9ec04aa9469c09..42f7178041d718 100644
--- a/playground/json/package.json
+++ b/playground/json/package.json
@@ -12,6 +12,6 @@
"devDependencies": {
"@vitejs/test-json-require": "file:./dep-json-require",
"@vitejs/test-json-module": "file:./json-module",
- "vue": "^3.5.17"
+ "vue": "^3.5.18"
}
}
diff --git a/playground/optimize-deps-no-discovery/package.json b/playground/optimize-deps-no-discovery/package.json
index 5542624b50c5da..9fae45200ea109 100644
--- a/playground/optimize-deps-no-discovery/package.json
+++ b/playground/optimize-deps-no-discovery/package.json
@@ -11,7 +11,7 @@
},
"dependencies": {
"@vitejs/test-dep-no-discovery": "file:./dep-no-discovery",
- "vue": "^3.5.17",
+ "vue": "^3.5.18",
"vuex": "^4.1.0"
}
}
diff --git a/playground/optimize-deps/cjs-dynamic.js b/playground/optimize-deps/cjs-dynamic.js
index 616dffae4d6c0c..69c11051692272 100644
--- a/playground/optimize-deps/cjs-dynamic.js
+++ b/playground/optimize-deps/cjs-dynamic.js
@@ -22,7 +22,11 @@
}
const cjsFromCJS = await import('@vitejs/test-dep-cjs-compiled-from-cjs')
- if (typeof cjsFromCJS.default === 'function') {
+ if (
+ typeof cjsFromCJS.default === 'function' &&
+ typeof cjsFromCJS !== 'function' &&
+ cjsFromCJS.bar === 'bar'
+ ) {
text('.cjs-dynamic-dep-cjs-compiled-from-cjs', 'ok')
}
diff --git a/playground/optimize-deps/cjs.js b/playground/optimize-deps/cjs.js
index f0201008647889..cd26c373a4765a 100644
--- a/playground/optimize-deps/cjs.js
+++ b/playground/optimize-deps/cjs.js
@@ -7,6 +7,7 @@ import { Socket } from 'phoenix'
import clip from 'clipboard'
import cjsFromESM from '@vitejs/test-dep-cjs-compiled-from-esm'
import cjsFromCJS from '@vitejs/test-dep-cjs-compiled-from-cjs'
+import * as cjsFromCJSNamespace from '@vitejs/test-dep-cjs-compiled-from-cjs'
// Test exporting a name that was already imported
export { useState } from 'react'
@@ -25,7 +26,11 @@ if (typeof cjsFromESM === 'function') {
text('.cjs-dep-cjs-compiled-from-esm', 'ok')
}
-if (typeof cjsFromCJS === 'function') {
+if (
+ typeof cjsFromCJS === 'function' &&
+ typeof cjsFromCJSNamespace !== 'function' &&
+ cjsFromCJSNamespace.bar === 'bar'
+) {
text('.cjs-dep-cjs-compiled-from-cjs', 'ok')
}
diff --git a/playground/optimize-deps/dep-cjs-compiled-from-cjs/index.js b/playground/optimize-deps/dep-cjs-compiled-from-cjs/index.js
index 38d4c85c7c33ce..bb78ebd1f162bd 100644
--- a/playground/optimize-deps/dep-cjs-compiled-from-cjs/index.js
+++ b/playground/optimize-deps/dep-cjs-compiled-from-cjs/index.js
@@ -2,4 +2,5 @@
function foo() {
return 'foo'
}
+foo.bar = 'bar'
module.exports = foo
diff --git a/playground/optimize-deps/dep-linked-include/package.json b/playground/optimize-deps/dep-linked-include/package.json
index e2d233a277167a..43a5b1f88b0c85 100644
--- a/playground/optimize-deps/dep-linked-include/package.json
+++ b/playground/optimize-deps/dep-linked-include/package.json
@@ -4,6 +4,6 @@
"version": "0.0.0",
"main": "index.mjs",
"dependencies": {
- "react": "19.1.0"
+ "react": "19.1.1"
}
}
diff --git a/playground/optimize-deps/package.json b/playground/optimize-deps/package.json
index d8eeaa1ba0a39d..60ffa5f058d6b0 100644
--- a/playground/optimize-deps/package.json
+++ b/playground/optimize-deps/package.json
@@ -10,7 +10,7 @@
"preview": "vite preview"
},
"dependencies": {
- "axios": "^1.10.0",
+ "axios": "^1.11.0",
"clipboard": "^2.0.11",
"@vitejs/longfilename-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa": "file:./longfilename",
"@vitejs/test-dep-alias-using-absolute-path": "file:./dep-alias-using-absolute-path",
@@ -45,11 +45,11 @@
"lodash-es": "^4.17.21",
"@vitejs/test-nested-exclude": "file:./nested-exclude",
"phoenix": "^1.7.21",
- "react": "^19.1.0",
- "react-dom": "^19.1.0",
+ "react": "^19.1.1",
+ "react-dom": "^19.1.1",
"@vitejs/test-resolve-linked": "workspace:0.0.0",
"url": "^0.11.4",
- "vue": "^3.5.17",
+ "vue": "^3.5.18",
"vuex": "^4.1.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0"
diff --git a/playground/resolve/__tests__/resolve.spec.ts b/playground/resolve/__tests__/resolve.spec.ts
index e29d1480b01bc7..4d231a0ce7a177 100644
--- a/playground/resolve/__tests__/resolve.spec.ts
+++ b/playground/resolve/__tests__/resolve.spec.ts
@@ -1,8 +1,8 @@
import fs from 'node:fs'
import path from 'node:path'
import { fileURLToPath } from 'node:url'
-import { expect, test } from 'vitest'
-import { isBuild, isWindows, page, testDir, viteTestUrl } from '~utils'
+import { describe, expect, test } from 'vitest'
+import { isBuild, isServe, isWindows, page, testDir, viteTestUrl } from '~utils'
test('bom import', async () => {
expect(await page.textContent('.utf8-bom')).toMatch('[success]')
@@ -263,3 +263,26 @@ test.runIf(isBuild)('sideEffects field glob pattern is respected', async () => {
)
expect(sideEffectValues).toStrictEqual(['success'])
})
+
+describe.runIf(isServe)('HEAD request handling', () => {
+ test('HEAD request to JS file returns correct Content-Type', async () => {
+ const response = await fetch(new URL('/absolute.js', viteTestUrl), {
+ method: 'HEAD',
+ })
+ expect(response.headers.get('content-type')).toBe('text/javascript')
+ expect(response.status).toBe(200)
+ const text = await response.text()
+ expect(text).toBe('')
+ })
+
+ test('HEAD request to CSS file returns correct Content-Type', async () => {
+ const response = await fetch(new URL('/style.css', viteTestUrl), {
+ method: 'HEAD',
+ headers: {
+ Accept: 'text/css',
+ },
+ })
+ expect(response.headers.get('content-type')).toBe('text/css')
+ expect(response.status).toBe(200)
+ })
+})
diff --git a/playground/resolve/package.json b/playground/resolve/package.json
index ba225374c40670..30d56969fe54fc 100644
--- a/playground/resolve/package.json
+++ b/playground/resolve/package.json
@@ -19,7 +19,7 @@
"#query": "./imports-path/query.json"
},
"dependencies": {
- "@babel/runtime": "^7.27.6",
+ "@babel/runtime": "^7.28.2",
"es5-ext": "0.10.64",
"normalize.css": "^8.0.1",
"@vitejs/test-require-pkg-with-module-field": "link:./require-pkg-with-module-field",
diff --git a/playground/resolve/require-pkg-with-module-field/package.json b/playground/resolve/require-pkg-with-module-field/package.json
index 3d429aab7f9a45..320c4fbd9b6ee2 100644
--- a/playground/resolve/require-pkg-with-module-field/package.json
+++ b/playground/resolve/require-pkg-with-module-field/package.json
@@ -4,6 +4,6 @@
"version": "1.0.0",
"main": "./index.cjs",
"dependencies": {
- "bignumber.js": "9.3.0"
+ "bignumber.js": "9.3.1"
}
}
diff --git a/playground/resolve/style.css b/playground/resolve/style.css
new file mode 100644
index 00000000000000..ecf29daf04d543
--- /dev/null
+++ b/playground/resolve/style.css
@@ -0,0 +1,5 @@
+/* Simple CSS for HEAD request testing */
+body {
+ margin: 0;
+ padding: 0;
+}
diff --git a/playground/resolve/vite.config-mainfields-custom-first.js b/playground/resolve/vite.config-mainfields-custom-first.js
index 96279c461edd5b..7d131d8adccf46 100644
--- a/playground/resolve/vite.config-mainfields-custom-first.js
+++ b/playground/resolve/vite.config-mainfields-custom-first.js
@@ -3,4 +3,5 @@ config.resolve.mainFields = [
'custom',
...config.resolve.mainFields.filter((f) => f !== 'custom'),
]
+config.build.outDir = 'dist-mainfields-custom-first'
export default config
diff --git a/playground/ssr-resolve/__tests__/ssr-resolve.spec.ts b/playground/ssr-resolve/__tests__/ssr-resolve.spec.ts
index 3920d4ccbd052e..df0fefd686de4f 100644
--- a/playground/ssr-resolve/__tests__/ssr-resolve.spec.ts
+++ b/playground/ssr-resolve/__tests__/ssr-resolve.spec.ts
@@ -1,6 +1,10 @@
+import { execFile } from 'node:child_process'
+import { promisify } from 'node:util'
import { expect, test } from 'vitest'
import { isBuild, readFile, testDir } from '~utils'
+const execFileAsync = promisify(execFile)
+
test.runIf(isBuild)('correctly resolve entrypoints', async () => {
const contents = readFile('dist/main.mjs')
@@ -19,11 +23,13 @@ test.runIf(isBuild)('correctly resolve entrypoints', async () => {
new RegExp(`from ${_}@vitejs/test-deep-import/foo/index.js${_}`),
)
- expect(contents).toMatch(
- new RegExp(`from ${_}@vitejs/test-deep-import/bar${_}`),
- )
+ // expect(contents).toMatch(
+ // new RegExp(`from ${_}@vitejs/test-deep-import/utils/bar.js${_}`),
+ // )
+
+ expect(contents).toMatch(new RegExp(`from ${_}@vitejs/test-module-sync${_}`))
- await expect(import(`${testDir}/dist/main.mjs`)).resolves.toBeTruthy()
+ await execFileAsync('node', [`${testDir}/dist/main.mjs`])
})
test.runIf(isBuild)(
diff --git a/playground/ssr-resolve/main.js b/playground/ssr-resolve/main.js
index 699ca580034a28..b8111e0db9e26b 100644
--- a/playground/ssr-resolve/main.js
+++ b/playground/ssr-resolve/main.js
@@ -5,7 +5,8 @@ import fileEntry from '@vitejs/test-entries/file'
// has `exports` key, should resolve to pkg-exports/entry
import pkgExportsEntry from '@vitejs/test-resolve-pkg-exports/entry'
import deepFoo from '@vitejs/test-deep-import/foo'
-import deepBar from '@vitejs/test-deep-import/bar'
+// import deepBar from '@vitejs/test-deep-import/bar'
+import moduleSync from '@vitejs/test-module-sync'
import { used } from './util'
export default `
@@ -13,6 +14,7 @@ export default `
entries/file: ${fileEntry}
pkg-exports/entry: ${pkgExportsEntry}
deep-import/foo: ${deepFoo}
- deep-import/bar: ${deepBar}
+ ${/* `deep-import/bar: ${deepBar}` */ ''}
+ module-sync: ${moduleSync}
util: ${used(['[success]'])}
`
diff --git a/playground/ssr-resolve/package.json b/playground/ssr-resolve/package.json
index a764b385967ed2..33baf2481926ec 100644
--- a/playground/ssr-resolve/package.json
+++ b/playground/ssr-resolve/package.json
@@ -8,8 +8,9 @@
"debug": "node --inspect-brk ../../packages/vite/bin/vite build"
},
"dependencies": {
+ "@vitejs/test-deep-import": "file:./deep-import",
"@vitejs/test-entries": "file:./entries",
- "@vitejs/test-resolve-pkg-exports": "file:./pkg-exports",
- "@vitejs/test-deep-import": "file:./deep-import"
+ "@vitejs/test-module-sync": "file:./pkg-module-sync",
+ "@vitejs/test-resolve-pkg-exports": "file:./pkg-exports"
}
}
diff --git a/playground/ssr-resolve/pkg-module-sync/index.js b/playground/ssr-resolve/pkg-module-sync/index.js
new file mode 100644
index 00000000000000..7dbb673ab35516
--- /dev/null
+++ b/playground/ssr-resolve/pkg-module-sync/index.js
@@ -0,0 +1 @@
+export default 'module-sync'
diff --git a/playground/ssr-resolve/pkg-module-sync/package.json b/playground/ssr-resolve/pkg-module-sync/package.json
new file mode 100644
index 00000000000000..604ac7c0a5841c
--- /dev/null
+++ b/playground/ssr-resolve/pkg-module-sync/package.json
@@ -0,0 +1,11 @@
+{
+ "name": "@vitejs/test-module-sync",
+ "type": "module",
+ "private": true,
+ "version": "0.0.0",
+ "exports": {
+ ".": {
+ "module-sync": "./index.js"
+ }
+ }
+}
diff --git a/playground/ssr-webworker/__tests__/ssr-webworker.spec.ts b/playground/ssr-webworker/__tests__/ssr-webworker.spec.ts
index 65a01f196df295..cca04b00796912 100644
--- a/playground/ssr-webworker/__tests__/ssr-webworker.spec.ts
+++ b/playground/ssr-webworker/__tests__/ssr-webworker.spec.ts
@@ -32,5 +32,5 @@ test('supports nodejs_compat', async () => {
test.runIf(isBuild)('inlineDynamicImports', () => {
const dynamicJsContent = findAssetFile(/dynamic-[-\w]+\.js/, 'worker')
- expect(dynamicJsContent).toBe('')
+ expect(dynamicJsContent).toBeUndefined()
})
diff --git a/playground/ssr-webworker/package.json b/playground/ssr-webworker/package.json
index 7b0a68e51701d2..675c5189ea0f9b 100644
--- a/playground/ssr-webworker/package.json
+++ b/playground/ssr-webworker/package.json
@@ -8,12 +8,12 @@
"build:worker": "vite build --ssr src/entry-worker.jsx --outDir dist/worker"
},
"dependencies": {
- "react": "^19.1.0",
+ "react": "^19.1.1",
"@vitejs/test-browser-exports": "file:./browser-exports",
"@vitejs/test-worker-exports": "file:./worker-exports"
},
"devDependencies": {
- "miniflare": "^4.20250617.5",
+ "miniflare": "^4.20250730.0",
"@vitejs/test-resolve-linked": "workspace:*"
}
}
diff --git a/playground/ssr/__tests__/ssr.spec.ts b/playground/ssr/__tests__/ssr.spec.ts
index 864ea9fd16772c..4b026f7a7e5d1d 100644
--- a/playground/ssr/__tests__/ssr.spec.ts
+++ b/playground/ssr/__tests__/ssr.spec.ts
@@ -44,6 +44,20 @@ test(`deadlock doesn't happen for dynamic imports`, async () => {
)
})
+test(`import.meta.resolve is supported`, async () => {
+ await page.goto(`${url}/import-meta`)
+
+ const metaUrl = await page.textContent('.import-meta-url')
+ expect(metaUrl).not.toBe('')
+ expect(await page.textContent('.import-meta-resolve')).toBe(metaUrl)
+})
+
+test(`import.meta.main is supported`, async () => {
+ await page.goto(`${url}/import-meta`)
+
+ expect(await page.textContent('.import-meta-main')).toBe('false')
+})
+
test.runIf(isServe)('html proxy is encoded', async () => {
await page.goto(
`${url}?%22%3E%3C/script%3E%3Cscript%3Econsole.log(%27html%20proxy%20is%20not%20encoded%27)%3C/script%3E`,
diff --git a/playground/ssr/src/app.js b/playground/ssr/src/app.js
index 5124b45b06075b..7b26a30addf743 100644
--- a/playground/ssr/src/app.js
+++ b/playground/ssr/src/app.js
@@ -7,6 +7,7 @@ const pathRenderers = {
'/circular-import2': renderCircularImport2,
'/forked-deadlock-static-imports': renderForkedDeadlockStaticImports,
'/forked-deadlock-dynamic-imports': renderForkedDeadlockDynamicImports,
+ '/import-meta': renderImportMeta,
}
export async function render(url, rootDir) {
@@ -60,3 +61,14 @@ async function renderForkedDeadlockDynamicImports(rootDir) {
await commonModuleExport()
return `
rendered
`
}
+
+async function renderImportMeta(rootDir) {
+ const metaUrl = import.meta.url
+ const resolveResult = import.meta.resolve('./app.js')
+ const metaMain = import.meta.main
+ return (
+ `
${escapeHtml(metaUrl)}
` +
+ `
${escapeHtml(resolveResult)}
` +
+ `
${escapeHtml(String(metaMain))}
`
+ )
+}
diff --git a/playground/tailwind/__test__/tailwind.spec.ts b/playground/tailwind/__test__/tailwind.spec.ts
index 7e46a481a353df..a8b977ef9e1f3d 100644
--- a/playground/tailwind/__test__/tailwind.spec.ts
+++ b/playground/tailwind/__test__/tailwind.spec.ts
@@ -5,6 +5,22 @@ test('should render', async () => {
expect(await page.textContent('#pagetitle')).toBe('Page title')
})
+test.runIf(isServe)(
+ 'full reload happens when the HTML is changed',
+ async () => {
+ await expect
+ .poll(() => getColor('.html'))
+ .toBe('oklch(0.623 0.214 259.815)')
+
+ editFile('index.html', (code) =>
+ code.replace('"html text-blue-500"', '"html text-green-500"'),
+ )
+ await expect
+ .poll(() => getColor('.html'))
+ .toBe('oklch(0.723 0.219 149.579)')
+ },
+)
+
test.runIf(isServe)('regenerate CSS and HMR (glob pattern)', async () => {
const el = page.locator('#view1-text')
expect(await getColor(el)).toBe('oklch(0.627 0.194 149.214)')
diff --git a/playground/tailwind/index.html b/playground/tailwind/index.html
index 0c7bee6b26884f..c8c6e3f0b1bb0a 100644
--- a/playground/tailwind/index.html
+++ b/playground/tailwind/index.html
@@ -2,4 +2,6 @@
+
html
+
diff --git a/playground/tailwind/tailwind.config.ts b/playground/tailwind/tailwind.config.ts
index 0493bb41f439a5..fffc58f733f406 100644
--- a/playground/tailwind/tailwind.config.ts
+++ b/playground/tailwind/tailwind.config.ts
@@ -6,6 +6,7 @@ export default {
// Look https://github.com/vitejs/vite/pull/6959 for more details
__dirname + '/src/{components,views}/**/*.js',
__dirname + '/src/main.js',
+ __dirname + '/index.html',
],
theme: {
extend: {},
diff --git a/playground/test-utils.ts b/playground/test-utils.ts
index 2e25408a20788a..39ce32fecf34ef 100644
--- a/playground/test-utils.ts
+++ b/playground/test-utils.ts
@@ -129,17 +129,43 @@ export async function getBgColor(
return hexToNameMap[rgbToHex(rgb)] ?? rgb
}
-export function readFile(filename: string): string {
- return fs.readFileSync(path.resolve(testDir, filename), 'utf-8')
+export function readFile(filename: string, encoding?: BufferEncoding): string
+export function readFile(filename: string, encoding: null): Buffer
+export function readFile(
+ filename: string,
+ encoding?: BufferEncoding | null,
+): Buffer | string {
+ if (encoding === undefined) encoding = 'utf-8'
+ return fs.readFileSync(path.resolve(testDir, filename), encoding)
}
export function editFile(
filename: string,
- replacer: (str: string) => string,
+ replacer: (content: string) => string,
+): void
+export function editFile(
+ filename: string,
+ encoding: null,
+ replacer: (content: Buffer) => Buffer,
+): void
+export function editFile(
+ filename: string,
+ encoding: BufferEncoding | null,
+ replacer: ((content: Buffer) => Buffer) | ((content: string) => string),
+): void
+export function editFile(
+ filename: string,
+ encodingOrReplacer: BufferEncoding | null | ((content: string) => string),
+ maybeReplacer?: ((content: Buffer) => Buffer) | ((content: string) => string),
): void {
filename = path.resolve(testDir, filename)
- const content = fs.readFileSync(filename, 'utf-8')
- const modified = replacer(content)
+ const [encoding, replacer] = maybeReplacer
+ ? [encodingOrReplacer as BufferEncoding | null, maybeReplacer]
+ : ['utf-8' as const, encodingOrReplacer as (content: string) => string]
+ const content: string | Buffer = fs.readFileSync(filename, encoding)
+ const modified = (replacer as (content: string | Buffer) => string | Buffer)(
+ content,
+ )
fs.writeFileSync(filename, modified)
}
@@ -163,14 +189,14 @@ export function findAssetFile(
base = '',
assets = 'assets',
matchAll = false,
-): string {
+): string | undefined {
const assetsDir = path.join(testDir, 'dist', base, assets)
let files: string[]
try {
files = fs.readdirSync(assetsDir)
} catch (e) {
if (e.code === 'ENOENT') {
- return ''
+ return undefined
}
throw e
}
@@ -182,12 +208,12 @@ export function findAssetFile(
fs.readFileSync(path.resolve(assetsDir, file), 'utf-8'),
)
.join('')
- : ''
+ : undefined
} else {
const matchedFile = files.find((file) => file.match(match))
return matchedFile
? fs.readFileSync(path.resolve(assetsDir, matchedFile), 'utf-8')
- : ''
+ : undefined
}
}
diff --git a/playground/vitestGlobalSetup.ts b/playground/vitestGlobalSetup.ts
index e8554d7e0a3a8b..167fe644a60251 100644
--- a/playground/vitestGlobalSetup.ts
+++ b/playground/vitestGlobalSetup.ts
@@ -43,6 +43,7 @@ export async function setup({ provide }: TestProject): Promise
{
})
// also setup dedicated copy for "variant" tests
for (const [original, variants] of [
+ ['assets', ['encoded-base', 'relative-base', 'runtime-base', 'url-base']],
['css', ['lightningcss']],
['transform-plugin', ['base']],
] as const) {
diff --git a/playground/vitestSetup.ts b/playground/vitestSetup.ts
index cf750eea471a3d..6ee74427c09ed5 100644
--- a/playground/vitestSetup.ts
+++ b/playground/vitestSetup.ts
@@ -76,6 +76,21 @@ export function setViteUrl(url: string): void {
viteTestUrl = url
}
+function throwHtmlParseError() {
+ return {
+ name: 'vite-plugin-throw-html-parse-error',
+ configResolved(config: ResolvedConfig) {
+ const warn = config.logger.warn
+ config.logger.warn = (msg, opts) => {
+ // convert HTML parse warnings to make it easier to test
+ if (msg.includes('Unable to parse HTML;')) {
+ throw new Error(msg)
+ }
+ warn.call(config.logger, msg, opts)
+ }
+ },
+ }
+}
// #endregion
beforeAll(async (s) => {
@@ -224,6 +239,7 @@ async function loadConfig(configEnv: ConfigEnv) {
emptyOutDir: false,
},
customLogger: createInMemoryLogger(serverLogs),
+ plugins: [throwHtmlParseError()],
}
return mergeConfig(options, config || {})
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b21716b6244e1c..7c41e2342d5737 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -16,9 +16,6 @@ patchedDependencies:
dotenv-expand@12.0.2:
hash: 49330a663821151418e003e822a82a6a61d2f0f8a6e3cab00c1c94815a112889
path: patches/dotenv-expand@12.0.2.patch
- http-proxy@1.18.1:
- hash: 8071c23044f455271f4d4074ae4c7b81beec17a03aefd158d5f4edd4ef751c11
- path: patches/http-proxy@1.18.1.patch
sirv@3.0.1:
hash: 95b663b930c5cc6e609c7fa15b69a86ff3b30df68978611d1d3d724c65135cb1
path: patches/sirv@3.0.1.patch
@@ -28,8 +25,8 @@ importers:
.:
devDependencies:
'@eslint/js':
- specifier: ^9.30.1
- version: 9.30.1
+ specifier: ^9.32.0
+ version: 9.32.0
'@type-challenges/utils':
specifier: ^0.1.1
version: 0.1.1
@@ -58,11 +55,11 @@ importers:
specifier: ^3.0.8
version: 3.0.8
'@types/node':
- specifier: ^22.16.0
- version: 22.16.0
+ specifier: ^22.17.0
+ version: 22.17.0
'@types/picomatch':
- specifier: ^4.0.0
- version: 4.0.0
+ specifier: ^4.0.2
+ version: 4.0.2
'@types/stylus':
specifier: ^0.48.43
version: 0.48.43
@@ -73,17 +70,17 @@ importers:
specifier: ^1.6.0
version: 1.6.0(conventional-commits-filter@5.0.0)
eslint:
- specifier: ^9.30.1
- version: 9.30.1(jiti@2.4.2)
+ specifier: ^9.32.0
+ version: 9.32.0(jiti@2.4.2)
eslint-plugin-import-x:
specifier: ^4.16.1
- version: 4.16.1(@typescript-eslint/utils@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.30.1(jiti@2.4.2))
+ version: 4.16.1(@typescript-eslint/utils@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.32.0(jiti@2.4.2))
eslint-plugin-n:
- specifier: ^17.21.0
- version: 17.21.0(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
+ specifier: ^17.21.3
+ version: 17.21.3(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
eslint-plugin-regexp:
- specifier: ^2.9.0
- version: 2.9.0(eslint@9.30.1(jiti@2.4.2))
+ specifier: ^2.9.1
+ version: 2.9.1(eslint@9.32.0(jiti@2.4.2))
execa:
specifier: ^9.6.0
version: 9.6.0
@@ -91,23 +88,23 @@ importers:
specifier: ^16.3.0
version: 16.3.0
lint-staged:
- specifier: ^16.1.2
- version: 16.1.2
+ specifier: ^16.1.4
+ version: 16.1.4
picocolors:
specifier: ^1.1.1
version: 1.1.1
playwright-chromium:
- specifier: ^1.53.2
- version: 1.53.2
+ specifier: ^1.54.2
+ version: 1.54.2
prettier:
specifier: 3.6.2
version: 3.6.2
rollup:
- specifier: ^4.40.0
- version: 4.40.1
+ specifier: ^4.43.0
+ version: 4.43.0
simple-git-hooks:
- specifier: ^2.13.0
- version: 2.13.0
+ specifier: ^2.13.1
+ version: 2.13.1
tsx:
specifier: ^4.20.3
version: 4.20.3
@@ -115,20 +112,20 @@ importers:
specifier: ~5.7.2
version: 5.7.3
typescript-eslint:
- specifier: ^8.35.1
- version: 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
+ specifier: ^8.39.0
+ version: 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
vite:
specifier: workspace:*
version: link:packages/vite
vitest:
specifier: ^3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@22.16.0)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@22.17.0)
docs:
devDependencies:
'@shikijs/vitepress-twoslash':
- specifier: ^3.7.0
- version: 3.7.0(typescript@5.7.3)
+ specifier: ^3.9.2
+ version: 3.9.2(typescript@5.7.3)
'@types/express':
specifier: ^5.0.3
version: 5.0.3
@@ -138,18 +135,21 @@ importers:
gsap:
specifier: ^3.13.0
version: 3.13.0
+ markdown-it-image-size:
+ specifier: ^14.7.0
+ version: 14.7.0(markdown-it@14.1.0)
vitepress:
- specifier: ^2.0.0-alpha.7
- version: 2.0.0-alpha.7(@algolia/client-search@5.20.3)(@types/react@19.1.8)(axios@1.10.0)(postcss@8.5.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.7.3)
+ specifier: ^2.0.0-alpha.9
+ version: 2.0.0-alpha.9(axios@1.11.0)(postcss@8.5.6)(typescript@5.7.3)
vitepress-plugin-group-icons:
specifier: ^1.6.1
version: 1.6.1(markdown-it@14.1.0)(vite@packages+vite)
vitepress-plugin-llms:
- specifier: ^1.7.0
- version: 1.7.0
+ specifier: ^1.7.2
+ version: 1.7.2
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
packages/create-vite:
devDependencies:
@@ -166,17 +166,29 @@ importers:
specifier: ^1.1.1
version: 1.1.1
tsdown:
- specifier: ^0.12.9
- version: 0.12.9(publint@0.3.12)(typescript@5.7.3)
+ specifier: ^0.13.3
+ version: 0.13.3(publint@0.3.12)(typescript@5.7.3)
packages/plugin-legacy:
dependencies:
'@babel/core':
specifier: ^7.28.0
version: 7.28.0
+ '@babel/plugin-transform-dynamic-import':
+ specifier: ^7.27.1
+ version: 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-systemjs':
+ specifier: ^7.27.1
+ version: 7.27.1(@babel/core@7.28.0)
'@babel/preset-env':
specifier: ^7.28.0
version: 7.28.0(@babel/core@7.28.0)
+ babel-plugin-polyfill-corejs3:
+ specifier: ^0.13.0
+ version: 0.13.0(@babel/core@7.28.0)
+ babel-plugin-polyfill-regenerator:
+ specifier: ^0.6.5
+ version: 0.6.5(@babel/core@7.28.0)
browserslist:
specifier: ^4.25.1
version: 4.25.1
@@ -184,8 +196,8 @@ importers:
specifier: ^2.1.1
version: 2.1.1(browserslist@4.25.1)
core-js:
- specifier: ^3.43.0
- version: 3.43.0
+ specifier: ^3.45.0
+ version: 3.45.0
magic-string:
specifier: ^0.30.17
version: 0.30.17
@@ -196,15 +208,21 @@ importers:
specifier: ^6.15.1
version: 6.15.1
devDependencies:
+ '@vitejs/plugin-legacy-for-rolldown-vite':
+ specifier: https://pkg.pr.new/vitejs/rolldown-vite/@vitejs/plugin-legacy@b19b90a
+ version: '@vitejs/plugin-legacy@https://pkg.pr.new/vitejs/rolldown-vite/@vitejs/plugin-legacy@b19b90a(terser@5.43.1)(vite@packages+vite)'
acorn:
specifier: ^8.15.0
version: 8.15.0
+ fdir:
+ specifier: ^6.4.6
+ version: 6.4.6(picomatch@4.0.3)
picocolors:
specifier: ^1.1.1
version: 1.1.1
tsdown:
- specifier: ^0.12.9
- version: 0.12.9(publint@0.3.12)(typescript@5.7.3)
+ specifier: ^0.13.3
+ version: 0.13.3(publint@0.3.12)(typescript@5.7.3)
vite:
specifier: workspace:*
version: link:../vite
@@ -216,16 +234,16 @@ importers:
version: 0.25.0
fdir:
specifier: ^6.4.6
- version: 6.4.6(picomatch@4.0.2)
+ version: 6.4.6(picomatch@4.0.3)
picomatch:
- specifier: ^4.0.2
- version: 4.0.2
+ specifier: ^4.0.3
+ version: 4.0.3
postcss:
specifier: ^8.5.6
version: 8.5.6
rollup:
- specifier: ^4.40.0
- version: 4.40.1
+ specifier: ^4.43.0
+ version: 4.43.0
tinyglobby:
specifier: ^0.2.14
version: 0.2.14
@@ -240,23 +258,26 @@ importers:
specifier: ^0.3.29
version: 0.3.29
'@oxc-project/types':
- specifier: 0.75.1
- version: 0.75.1
+ specifier: 0.77.0
+ version: 0.77.0
'@polka/compression':
specifier: ^1.0.0-next.25
version: 1.0.0-next.25
+ '@rolldown/pluginutils':
+ specifier: ^1.0.0-beta.31
+ version: 1.0.0-beta.31
'@rollup/plugin-alias':
specifier: ^5.1.1
- version: 5.1.1(rollup@4.40.1)
+ version: 5.1.1(rollup@4.43.0)
'@rollup/plugin-commonjs':
specifier: ^28.0.6
- version: 28.0.6(rollup@4.40.1)
+ version: 28.0.6(rollup@4.43.0)
'@rollup/plugin-dynamic-import-vars':
specifier: 2.1.4
- version: 2.1.4(rollup@4.40.1)
+ version: 2.1.4(rollup@4.43.0)
'@rollup/pluginutils':
specifier: ^5.2.0
- version: 5.2.0(rollup@4.40.1)
+ version: 5.2.0(rollup@4.43.0)
'@types/escape-html':
specifier: ^1.0.4
version: 1.0.4
@@ -267,8 +288,8 @@ importers:
specifier: ^0.3.2
version: 0.3.2
baseline-browser-mapping:
- specifier: ^2.4.4
- version: 2.4.4
+ specifier: ^2.5.7
+ version: 2.5.7
cac:
specifier: ^6.7.14
version: 6.7.14
@@ -294,8 +315,8 @@ importers:
specifier: link:./src/types
version: link:src/types
dotenv:
- specifier: ^17.0.1
- version: 17.0.1
+ specifier: ^17.2.1
+ version: 17.2.1
dotenv-expand:
specifier: ^12.0.2
version: 12.0.2(patch_hash=49330a663821151418e003e822a82a6a61d2f0f8a6e3cab00c1c94815a112889)
@@ -314,12 +335,12 @@ importers:
host-validation-middleware:
specifier: ^0.1.1
version: 0.1.1
- http-proxy:
- specifier: ^1.18.1
- version: 1.18.1(patch_hash=8071c23044f455271f4d4074ae4c7b81beec17a03aefd158d5f4edd4ef751c11)(debug@4.4.1)
+ http-proxy-3:
+ specifier: ^1.20.10
+ version: 1.20.10
launch-editor-middleware:
- specifier: ^2.10.0
- version: 2.10.0
+ specifier: ^2.11.0
+ version: 2.11.0
lightningcss:
specifier: ^1.30.1
version: 1.30.1
@@ -336,11 +357,11 @@ importers:
specifier: ^5.1.5
version: 5.1.5
open:
- specifier: ^10.1.2
- version: 10.1.2
+ specifier: ^10.2.0
+ version: 10.2.0
parse5:
- specifier: ^7.3.0
- version: 7.3.0
+ specifier: ^8.0.0
+ version: 8.0.0
pathe:
specifier: ^2.0.3
version: 2.0.3
@@ -366,14 +387,14 @@ importers:
specifier: ^2.0.3
version: 2.0.3
rolldown:
- specifier: ^1.0.0-beta.24
- version: 1.0.0-beta.24
+ specifier: ^1.0.0-beta.31
+ version: 1.0.0-beta.31
rolldown-plugin-dts:
- specifier: ^0.13.13
- version: 0.13.13(rolldown@1.0.0-beta.24)(typescript@5.7.3)
+ specifier: ^0.15.3
+ version: 0.15.3(rolldown@1.0.0-beta.31)(typescript@5.7.3)
rollup-plugin-license:
specifier: ^3.6.0
- version: 3.6.0(picomatch@4.0.2)(rollup@4.40.1)
+ version: 3.6.0(picomatch@4.0.3)(rollup@4.43.0)
sass:
specifier: ^1.89.2
version: 1.89.2
@@ -417,6 +438,9 @@ importers:
'@vitejs/test-dep-conditions':
specifier: file:./fixtures/test-dep-conditions
version: file:packages/vite/src/node/__tests__/fixtures/test-dep-conditions
+ vue:
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
packages/vite/src/node/__tests__/fixtures/cjs-ssr-dep: {}
@@ -511,14 +535,14 @@ importers:
playground/alias:
dependencies:
'@vue/shared':
- specifier: ^3.5.17
- version: 3.5.17
+ specifier: ^3.5.18
+ version: 3.5.18
aliased-module:
specifier: file:./dir/module
version: '@vitejs/test-aliased-module@file:playground/alias/dir/module'
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
devDependencies:
'@vitejs/test-resolve-linked':
specifier: workspace:*
@@ -577,8 +601,8 @@ importers:
specifier: file:./scss-proxy-dep
version: file:playground/css/scss-proxy-dep
less:
- specifier: ^4.3.0
- version: 4.3.0
+ specifier: ^4.4.0
+ version: 4.4.0
lightningcss:
specifier: ^1.30.1
version: 1.30.1
@@ -592,8 +616,8 @@ importers:
specifier: ^0.64.0
version: 0.64.0
sugarss:
- specifier: ^5.0.0
- version: 5.0.0(postcss@8.5.6)
+ specifier: ^5.0.1
+ version: 5.0.1(postcss@8.5.6)
tinyglobby:
specifier: ^0.2.14
version: 0.2.14
@@ -630,8 +654,8 @@ importers:
playground/css-sourcemap:
devDependencies:
less:
- specifier: ^4.3.0
- version: 4.3.0
+ specifier: ^4.4.0
+ version: 4.4.0
lightningcss:
specifier: ^1.30.1
version: 1.30.1
@@ -645,8 +669,8 @@ importers:
specifier: ^0.64.0
version: 0.64.0
sugarss:
- specifier: ^5.0.0
- version: 5.0.0(postcss@8.5.6)
+ specifier: ^5.0.1
+ version: 5.0.1(postcss@8.5.6)
playground/css/css-dep: {}
@@ -703,29 +727,29 @@ importers:
playground/environment-react-ssr:
devDependencies:
'@types/react':
- specifier: ^19.1.8
- version: 19.1.8
+ specifier: ^19.1.9
+ version: 19.1.9
'@types/react-dom':
- specifier: ^19.1.6
- version: 19.1.6(@types/react@19.1.8)
+ specifier: ^19.1.7
+ version: 19.1.7(@types/react@19.1.9)
react:
- specifier: ^19.1.0
- version: 19.1.0
+ specifier: ^19.1.1
+ version: 19.1.1
react-dom:
- specifier: ^19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: ^19.1.1
+ version: 19.1.1(react@19.1.1)
react-fake-client:
- specifier: npm:react@^19.1.0
- version: react@19.1.0
+ specifier: npm:react@^19.1.1
+ version: react@19.1.1
react-fake-server:
- specifier: npm:react@^19.1.0
- version: react@19.1.0
+ specifier: npm:react@^19.1.1
+ version: react@19.1.1
playground/extensions:
dependencies:
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
playground/external:
dependencies:
@@ -746,8 +770,8 @@ importers:
specifier: workspace:*
version: link:../../packages/vite
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
vue34:
specifier: npm:vue@~3.4.38
version: vue@3.4.38(typescript@5.7.3)
@@ -761,8 +785,8 @@ importers:
specifier: npm:slash@^5.1.0
version: slash@5.1.0
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
playground/external/dep-that-requires:
dependencies:
@@ -773,8 +797,8 @@ importers:
specifier: npm:slash@^5.1.0
version: slash@5.1.0
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
playground/fs-serve:
devDependencies:
@@ -826,8 +850,8 @@ importers:
specifier: file:./dep-json-require
version: '@vitejs/require@file:playground/json/dep-json-require'
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
playground/json/dep-json-require: {}
@@ -1028,8 +1052,8 @@ importers:
specifier: workspace:0.0.0
version: link:../resolve-linked
axios:
- specifier: ^1.10.0
- version: 1.10.0
+ specifier: ^1.11.0
+ version: 1.11.0
clipboard:
specifier: ^2.0.11
version: 2.0.11
@@ -1046,20 +1070,20 @@ importers:
specifier: ^1.7.21
version: 1.7.21
react:
- specifier: ^19.1.0
- version: 19.1.0
+ specifier: ^19.1.1
+ version: 19.1.1
react-dom:
- specifier: ^19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: ^19.1.1
+ version: 19.1.1(react@19.1.1)
url:
specifier: ^0.11.4
version: 0.11.4
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
vuex:
specifier: ^4.1.0
- version: 4.1.0(vue@3.5.17(typescript@5.7.3))
+ version: 4.1.0(vue@3.5.18(typescript@5.7.3))
playground/optimize-deps-no-discovery:
dependencies:
@@ -1067,11 +1091,11 @@ importers:
specifier: file:./dep-no-discovery
version: file:playground/optimize-deps-no-discovery/dep-no-discovery
vue:
- specifier: ^3.5.17
- version: 3.5.17(typescript@5.7.3)
+ specifier: ^3.5.18
+ version: 3.5.18(typescript@5.7.3)
vuex:
specifier: ^4.1.0
- version: 4.1.0(vue@3.5.17(typescript@5.7.3))
+ version: 4.1.0(vue@3.5.18(typescript@5.7.3))
playground/optimize-deps-no-discovery/dep-no-discovery: {}
@@ -1121,8 +1145,8 @@ importers:
playground/optimize-deps/dep-linked-include:
dependencies:
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.1.1
+ version: 19.1.1
playground/optimize-deps/dep-node-env: {}
@@ -1227,8 +1251,8 @@ importers:
playground/resolve:
dependencies:
'@babel/runtime':
- specifier: ^7.27.6
- version: 7.27.6
+ specifier: ^7.28.2
+ version: 7.28.2
'@vitejs/test-require-pkg-with-module-field':
specifier: link:./require-pkg-with-module-field
version: link:require-pkg-with-module-field
@@ -1359,8 +1383,8 @@ importers:
playground/resolve/require-pkg-with-module-field:
dependencies:
bignumber.js:
- specifier: 9.3.0
- version: 9.3.0
+ specifier: 9.3.1
+ version: 9.3.1
playground/resolve/sharp-dir:
dependencies:
@@ -1604,6 +1628,9 @@ importers:
'@vitejs/test-entries':
specifier: file:./entries
version: file:playground/ssr-resolve/entries
+ '@vitejs/test-module-sync':
+ specifier: file:./pkg-module-sync
+ version: file:playground/ssr-resolve/pkg-module-sync
'@vitejs/test-resolve-pkg-exports':
specifier: file:./pkg-exports
version: file:playground/ssr-resolve/pkg-exports
@@ -1618,6 +1645,8 @@ importers:
playground/ssr-resolve/pkg-exports: {}
+ playground/ssr-resolve/pkg-module-sync: {}
+
playground/ssr-webworker:
dependencies:
'@vitejs/test-browser-exports':
@@ -1627,15 +1656,15 @@ importers:
specifier: file:./worker-exports
version: file:playground/ssr-webworker/worker-exports
react:
- specifier: ^19.1.0
- version: 19.1.0
+ specifier: ^19.1.1
+ version: 19.1.1
devDependencies:
'@vitejs/test-resolve-linked':
specifier: workspace:*
version: link:../resolve-linked
miniflare:
- specifier: ^4.20250617.5
- version: 4.20250617.5
+ specifier: ^4.20250730.0
+ version: 4.20250730.0
playground/ssr-webworker/browser-exports: {}
@@ -1707,78 +1736,6 @@ packages:
'@adobe/css-tools@4.3.3':
resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
- '@algolia/autocomplete-core@1.17.9':
- resolution: {integrity: sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==}
-
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9':
- resolution: {integrity: sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==}
- peerDependencies:
- search-insights: '>= 1 < 3'
-
- '@algolia/autocomplete-preset-algolia@1.17.9':
- resolution: {integrity: sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==}
- peerDependencies:
- '@algolia/client-search': '>= 4.9.1 < 6'
- algoliasearch: '>= 4.9.1 < 6'
-
- '@algolia/autocomplete-shared@1.17.9':
- resolution: {integrity: sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==}
- peerDependencies:
- '@algolia/client-search': '>= 4.9.1 < 6'
- algoliasearch: '>= 4.9.1 < 6'
-
- '@algolia/client-abtesting@5.20.3':
- resolution: {integrity: sha512-wPOzHYSsW+H97JkBLmnlOdJSpbb9mIiuNPycUCV5DgzSkJFaI/OFxXfZXAh1gqxK+hf0miKue1C9bltjWljrNA==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-analytics@5.20.3':
- resolution: {integrity: sha512-XE3iduH9lA7iTQacDGofBQyIyIgaX8qbTRRdj1bOCmfzc9b98CoiMwhNwdTifmmMewmN0EhVF3hP8KjKWwX7Yw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-common@5.20.3':
- resolution: {integrity: sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-insights@5.20.3':
- resolution: {integrity: sha512-QGc/bmDUBgzB71rDL6kihI2e1Mx6G6PxYO5Ks84iL3tDcIel1aFuxtRF14P8saGgdIe1B6I6QkpkeIddZ6vWQw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-personalization@5.20.3':
- resolution: {integrity: sha512-zuM31VNPDJ1LBIwKbYGz/7+CSm+M8EhlljDamTg8AnDilnCpKjBebWZR5Tftv/FdWSro4tnYGOIz1AURQgZ+tQ==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-query-suggestions@5.20.3':
- resolution: {integrity: sha512-Nn872PuOI8qzi1bxMMhJ0t2AzVBqN01jbymBQOkypvZHrrjZPso3iTpuuLLo9gi3yc/08vaaWTAwJfPhxPwJUw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/client-search@5.20.3':
- resolution: {integrity: sha512-9+Fm1ahV8/2goSIPIqZnVitV5yHW5E5xTdKy33xnqGd45A9yVv5tTkudWzEXsbfBB47j9Xb3uYPZjAvV5RHbKA==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/ingestion@1.20.3':
- resolution: {integrity: sha512-5GHNTiZ3saLjTNyr6WkP5hzDg2eFFAYWomvPcm9eHWskjzXt8R0IOiW9kkTS6I6hXBwN5H9Zna5mZDSqqJdg+g==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/monitoring@1.20.3':
- resolution: {integrity: sha512-KUWQbTPoRjP37ivXSQ1+lWMfaifCCMzTnEcEnXwAmherS5Tp7us6BAqQDMGOD4E7xyaS2I8pto6WlOzxH+CxmA==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/recommend@5.20.3':
- resolution: {integrity: sha512-oo/gG77xTTTclkrdFem0Kmx5+iSRFiwuRRdxZETDjwzCI7svutdbwBgV/Vy4D4QpYaX4nhY/P43k84uEowCE4Q==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/requester-browser-xhr@5.20.3':
- resolution: {integrity: sha512-BkkW7otbiI/Er1AiEPZs1h7lxbtSO9p09jFhv3/iT8/0Yz0CY79VJ9iq+Wv1+dq/l0OxnMpBy8mozrieGA3mXQ==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/requester-fetch@5.20.3':
- resolution: {integrity: sha512-eAVlXz7UNzTsA1EDr+p0nlIH7WFxo7k3NMxYe8p38DH8YVWLgm2MgOVFUMNg9HCi6ZNOi/A2w/id2ZZ4sKgUOw==}
- engines: {node: '>= 14.0.0'}
-
- '@algolia/requester-node-http@5.20.3':
- resolution: {integrity: sha512-FqR3pQPfHfQyX1wgcdK6iyqu86yP76MZd4Pzj1y/YLMj9rRmRCY0E0AffKr//nrOFEwv6uY8BQY4fd9/6b0ZCg==}
- engines: {node: '>= 14.0.0'}
-
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
@@ -2206,8 +2163,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.28.0':
- resolution: {integrity: sha512-LOAozRVbqxEVjSKfhGnuLoE4Kz4Oc5UJzuvFUhSsQzdCdaAQu06mG8zDv2GFSerM62nImUZ7K92vxnQcLSDlCQ==}
+ '@babel/plugin-transform-regenerator@7.28.1':
+ resolution: {integrity: sha512-P0QiV/taaa3kXpLY+sXla5zec4E+4t4Aqc9ggHlfZ7a2cp8/x/Gv08jfwEtn9gnnYIMvHx6aoOZ8XJL8eU71Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2289,8 +2246,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/runtime@7.27.6':
- resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
+ '@babel/runtime@7.28.2':
+ resolution: {integrity: sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==}
engines: {node: '>=6.9.0'}
'@babel/template@7.27.2':
@@ -2309,8 +2266,12 @@ packages:
resolution: {integrity: sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.0':
- resolution: {integrity: sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==}
+ '@babel/types@7.28.1':
+ 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'}
'@bufbuild/protobuf@2.5.2':
@@ -2322,32 +2283,32 @@ packages:
'@clack/prompts@0.11.0':
resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==}
- '@cloudflare/workerd-darwin-64@1.20250617.0':
- resolution: {integrity: sha512-toG8JUKVLIks4oOJLe9FeuixE84pDpMZ32ip7mCpE7JaFc5BqGFvevk0YC/db3T71AQlialjRwioH3jS/dzItA==}
+ '@cloudflare/workerd-darwin-64@1.20250730.0':
+ resolution: {integrity: sha512-X3egNyTjLQaECYe34x8Al7r4oXAhcN3a8+8qcpNCcq1sgtuHIeAwS9potgRR/mwkGfmrJn7nfAyDKC4vrkniQQ==}
engines: {node: '>=16'}
cpu: [x64]
os: [darwin]
- '@cloudflare/workerd-darwin-arm64@1.20250617.0':
- resolution: {integrity: sha512-JTX0exbC9/ZtMmQQA8tDZEZFMXZrxOpTUj2hHnsUkErWYkr5SSZH04RBhPg6dU4VL8bXuB5/eJAh7+P9cZAp7g==}
+ '@cloudflare/workerd-darwin-arm64@1.20250730.0':
+ resolution: {integrity: sha512-/4bvcaGY/9v0rghgKboGiyPKKGQTbDnQ1EeY0oN0SSQH0Cp3OBzqwni/JRvh8TEaD+5azJnSFLlFZj9w7fo+hw==}
engines: {node: '>=16'}
cpu: [arm64]
os: [darwin]
- '@cloudflare/workerd-linux-64@1.20250617.0':
- resolution: {integrity: sha512-8jkSoVRJ+1bOx3tuWlZCGaGCV2ew7/jFMl6V3CPXOoEtERUHsZBQLVkQIGKcmC/LKSj7f/mpyBUeu2EPTo2HEg==}
+ '@cloudflare/workerd-linux-64@1.20250730.0':
+ resolution: {integrity: sha512-I4ZsXYdNkqkJnzNFKADMufiLIzRdIRsN7dSH8UCPw2fYp1BbKA10AkKVqitFwBxIY8eOzQ6Vf7c41AjLQmtJqA==}
engines: {node: '>=16'}
cpu: [x64]
os: [linux]
- '@cloudflare/workerd-linux-arm64@1.20250617.0':
- resolution: {integrity: sha512-YAzcOyu897z5dQKFzme1oujGWMGEJCR7/Wrrm1nSP6dqutxFPTubRADM8BHn2CV3ij//vaPnAeLmZE3jVwOwig==}
+ '@cloudflare/workerd-linux-arm64@1.20250730.0':
+ resolution: {integrity: sha512-tTpO6139jFQ5vxgtBZgS8Y8R1jVidS4n7s37x5xO9bCWLZoL0kTj38UGZ8FENkTeaMxE9Mm//nbQol7TfJ2nZg==}
engines: {node: '>=16'}
cpu: [arm64]
os: [linux]
- '@cloudflare/workerd-windows-64@1.20250617.0':
- resolution: {integrity: sha512-XWM/6sagDrO0CYDKhXhPjM23qusvIN1ju9ZEml6gOQs8tNOFnq6Cn6X9FAmnyapRFCGUSEC3HZYJAm7zwVKaMA==}
+ '@cloudflare/workerd-windows-64@1.20250730.0':
+ resolution: {integrity: sha512-paVHgocuilMzOU+gEyKR/86j/yI+QzmSHRnqdd8OdQ37Hf6SyPX7kQj6VVNRXbzVHWix1WxaJsXfTGK1LK05wA==}
engines: {node: '>=16'}
cpu: [x64]
os: [win32]
@@ -2368,38 +2329,30 @@ packages:
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
- '@docsearch/css@3.9.0':
- resolution: {integrity: sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==}
+ '@docsearch/css@4.0.0-beta.5':
+ resolution: {integrity: sha512-bZy+gIXRZch0KNPC7MLoj4wkEcNVeEHBXOKJtonoJ2EaLw2vbO1PLGIXxtPgW7Ab7TvI0StkrmGuEQqE2q/1QA==}
- '@docsearch/js@3.9.0':
- resolution: {integrity: sha512-4bKHcye6EkLgRE8ze0vcdshmEqxeiJM77M0JXjef7lrYZfSlMunrDOCqyLjiZyo1+c0BhUqA2QpFartIjuHIjw==}
-
- '@docsearch/react@3.9.0':
- resolution: {integrity: sha512-mb5FOZYZIkRQ6s/NWnM98k879vu5pscWqTLubLFBO87igYYT4VzVazh4h5o/zCvTIZgEt3PvsCOMOswOUo9yHQ==}
- peerDependencies:
- '@types/react': '>= 16.8.0 < 20.0.0'
- react: '>= 16.8.0 < 20.0.0'
- react-dom: '>= 16.8.0 < 20.0.0'
- search-insights: '>= 1 < 3'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- search-insights:
- optional: true
+ '@docsearch/js@4.0.0-beta.5':
+ resolution: {integrity: sha512-FEtkwdblZDrTkd0mYwmfR94Vo/jgkXVIbS6vD2FcKazK/L5RmgNb7KAUDUWW11V/fIcS5XHvHprIxEnoB9gllQ==}
'@emnapi/core@1.4.3':
resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==}
+ '@emnapi/core@1.4.5':
+ resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==}
+
'@emnapi/runtime@1.4.3':
resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
+ '@emnapi/runtime@1.4.5':
+ resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==}
+
'@emnapi/wasi-threads@1.0.2':
resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==}
+ '@emnapi/wasi-threads@1.0.4':
+ resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==}
+
'@esbuild/aix-ppc64@0.25.0':
resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
engines: {node: '>=18'}
@@ -2568,30 +2521,26 @@ packages:
resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/core@0.14.0':
- resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==}
+ '@eslint/core@0.15.1':
+ resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/eslintrc@3.3.1':
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.30.1':
- resolution: {integrity: sha512-zXhuECFlyep42KZUhWjfvsmXGX39W8K8LFb8AWXM9gSV9dQB+MrJGLKvW6Zw0Ggnbpw0VHTtrhFXYe3Gym18jg==}
+ '@eslint/js@9.32.0':
+ resolution: {integrity: sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/plugin-kit@0.3.1':
- resolution: {integrity: sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==}
+ '@eslint/plugin-kit@0.3.4':
+ resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@fastify/busboy@2.1.1':
- resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
- engines: {node: '>=14'}
-
'@floating-ui/core@1.6.9':
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
@@ -2624,8 +2573,8 @@ packages:
'@iconify-json/logos@1.2.4':
resolution: {integrity: sha512-XC4If5D/hbaZvUkTV8iaZuGlQCyG6CNOlaAaJaGa13V5QMYwYjgtKk3vPP8wz3wtTVNVEVk3LRx1fOJz+YnSMw==}
- '@iconify-json/simple-icons@1.2.40':
- resolution: {integrity: sha512-sr2fbrS8rRhJNap41ucTStctxTcWQ3lcsHkY3loc4Yt1KNOne6D+l1JTOQCDj9f/VrUktVIEdaRQoYTvqfuSSw==}
+ '@iconify-json/simple-icons@1.2.44':
+ resolution: {integrity: sha512-CdWgSPygwDlDbKtDWjvi3NtUefnkoepXv90n3dQxJerqzD9kI+nEJOiWUBM+eOyMYQKtxBpLWFBrgeotF0IZKw==}
'@iconify-json/vscode-icons@1.2.23':
resolution: {integrity: sha512-gFTcKecKra2/b5SbGDgHGI/l8CuikHyBPmqGlK+YCmS8AK72dtDQbUekdoACsju/3TYS37QvdPoOQwnyx2LdYg==}
@@ -2784,15 +2733,15 @@ packages:
'@jridgewell/trace-mapping@0.3.9':
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
- '@mdn/browser-compat-data@6.0.17':
- resolution: {integrity: sha512-yBMooSEtOoVz6vUP5OeGUnq4JBVMyE4vWsGalbrOLoGaXXNwA3YAE2mkgT4YPcOhGuPosSIk901PQI9pSMzgVg==}
-
'@napi-rs/wasm-runtime@0.2.11':
resolution: {integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==}
'@napi-rs/wasm-runtime@0.2.9':
resolution: {integrity: sha512-OKRBiajrrxB9ATokgEQoG87Z25c67pCpYcCwmXYX8PBftC9pBfN18gnm/fh1wurSLEKIAt+QRFLFCQISrb66Jg==}
+ '@napi-rs/wasm-runtime@1.0.1':
+ resolution: {integrity: sha512-KVlQ/jgywZpixGCKMNwxStmmbYEMyokZpCf2YuIChhfJA2uqfAKNEM8INz7zzTo55iEXfBhIIs3VqYyqzDLj8g==}
+
'@node-rs/bcrypt-android-arm-eabi@1.10.7':
resolution: {integrity: sha512-8dO6/PcbeMZXS3VXGEtct9pDYdShp2WBOWlDvSbcRwVqyB580aCBh0BEFmKYtXLzLvUK8Wf+CG3U6sCdILW1lA==}
engines: {node: '>= 10'}
@@ -2892,19 +2841,15 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@oxc-project/runtime@0.75.0':
- resolution: {integrity: sha512-gzRmVI/vorsPmbDXt7GD4Uh2lD3rCOku/1xWPB4Yx48k0EP4TZmzQudWapjN4+7Vv+rgXr0RqCHQadeaMvdBuw==}
- engines: {node: '>=6.9.0'}
-
- '@oxc-project/runtime@0.75.1':
- resolution: {integrity: sha512-UH07DRi7xXqAsJ/sFbJJg0liIXnapB6P5uADXIiF1s6WQjZzcTIkKHca0s522QVxmijPxVX5ijCYxSr7eSq5CQ==}
+ '@oxc-project/runtime@0.80.0':
+ resolution: {integrity: sha512-3rzy1bJAZ4s7zV9TKT60x119RwJDCDqEtCwK/Zc2qlm7wGhiIUxLLYUhE/mN91yB0u1kxm5sh4NjU12sPqQTpg==}
engines: {node: '>=6.9.0'}
- '@oxc-project/types@0.75.0':
- resolution: {integrity: sha512-QMW+06WOXs7+F301Y3X0VpmWhwuQVc/X/RP2zF9OIwvSMmsif3xURS2wxbakFIABYsytgBcHpUcFepVS0Qnd3A==}
+ '@oxc-project/types@0.77.0':
+ resolution: {integrity: sha512-iUQj185VvCPnSba+ltUV5tVDrPX6LeZVtQywnnoGbe4oJ1VKvDKisjGkD/AvVtdm98b/BdsVS35IlJV1m2mBBA==}
- '@oxc-project/types@0.75.1':
- resolution: {integrity: sha512-7ZJy+51qWpZRvynaQUezeYfjCtaSdiXIWFUZIlOuTSfDXpXqnSl/m1IUPLx6XrOy6s0SFv3CLE14vcZy63bz7g==}
+ '@oxc-project/types@0.80.0':
+ resolution: {integrity: sha512-xxHQm8wfCv2e8EmtaDwpMeAHOWqgQDAYg+BJouLXSQt5oTKu9TIXrgNMGSrM2fLvKmECsRd9uUFAAD+hPyootA==}
'@parcel/watcher-android-arm64@2.5.1':
resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
@@ -2999,6 +2944,15 @@ packages:
'@polka/url@1.0.0-next.28':
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
+ '@poppinss/colors@4.1.5':
+ resolution: {integrity: sha512-FvdDqtcRCtz6hThExcFOgW0cWX+xwSMWcRuQe5ZEb2m7cVQOAVZOIMt+/v9RxGiD9/OY16qJBXK4CVKWAPalBw==}
+
+ '@poppinss/dumper@0.6.4':
+ resolution: {integrity: sha512-iG0TIdqv8xJ3Lt9O8DrPRxw1MRLjNpoqiSGU03P/wNLP/s0ra0udPJ1J2Tx5M0J3H/cVyEgpbn8xUKRY9j59kQ==}
+
+ '@poppinss/exception@1.2.2':
+ resolution: {integrity: sha512-m7bpKCD4QMlFCjA/nKTs23fuvoVFoA83brRKmObCUNmi/9tVu8Ve3w4YQAnJu4q3Tjf5fr685HYIC/IA2zHRSg==}
+
'@publint/pack@0.1.2':
resolution: {integrity: sha512-S+9ANAvUmjutrshV4jZjaiG8XQyuJIZ8a4utWmN/vW1sgQ9IfBnPndwkmQYw53QmouOIytT874u65HEmu6H5jw==}
engines: {node: '>=18'}
@@ -3007,134 +2961,81 @@ packages:
resolution: {integrity: sha512-G0OnZbMWEs5LhDyqy2UL17vGhSVHkQIfVojMtEWVenvj0V5S84VBgy86kJIuNsGDp2p7sTKlpSIpBUWdC35OKg==}
engines: {node: '>=20.0.0'}
- '@rolldown/binding-darwin-arm64@1.0.0-beta.21':
- resolution: {integrity: sha512-FFkhqqq4kz7UCa4mGkexdsPK5++31zBTnhUTYhDUX+hdCwcYOlh2r2WsjHY+fQCMbIJ2UqOdAIocVGirs6/f7w==}
+ '@rolldown/binding-android-arm64@1.0.0-beta.31':
+ resolution: {integrity: sha512-0mFtKwOG7smn0HkvQ6h8j0m/ohkR7Fp5eMTJ2Pns/HSbePHuDpxMaQ4TjZ6arlVXxpeWZlAHeT5BeNsOA3iWTg==}
cpu: [arm64]
- os: [darwin]
+ os: [android]
- '@rolldown/binding-darwin-arm64@1.0.0-beta.24':
- resolution: {integrity: sha512-gE4HGjIioZaMGZupq2zQQdqhlRV2b2qnjFHHkJEW50zVDmiVNWwdHjwvZDPx9JfW5y4GuHgp/zKDLZZbJlQ1/Q==}
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.31':
+ resolution: {integrity: sha512-BHfHJ8Nb5G7ZKJl6pimJacupONT4F7w6gmQHw41rouAnJF51ORDwGefWeb6OMLzGmJwzxlIVPERfnJf1EsMM7A==}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.0-beta.21':
- resolution: {integrity: sha512-To/Ma+/5rxSoCVO/EInVCpQBB5YA4PDme0yYsbC5b76d+1OzuENaY4iq8vmCcEDZVnTU+xnfwfiMR9X+gB8W/w==}
- cpu: [x64]
- os: [darwin]
-
- '@rolldown/binding-darwin-x64@1.0.0-beta.24':
- resolution: {integrity: sha512-h2HfOtqmjIHIz9WdpKAJ8sBfLNGkrMlwrCfNV2MDDGu0x3YdYBYPE+ozS5PvE53Tp8y6EYn2/thNWJTGWy/N3Q==}
+ '@rolldown/binding-darwin-x64@1.0.0-beta.31':
+ resolution: {integrity: sha512-4MiuRtExC08jHbSU/diIL+IuQP+3Ck1FbWAplK+ysQJ7fxT3DMxy5FmnIGfmhaqow8oTjb2GEwZJKgTRjZL1Vw==}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-freebsd-x64@1.0.0-beta.21':
- resolution: {integrity: sha512-Z1lct0slFVDp08xzmRX6dPI7/uh6JG8dAswVdM4h5jjeXksC2AQpzBj4YgeX6t0OI428PC7FKP1k6T8HZS7Frg==}
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.31':
+ resolution: {integrity: sha512-nffC1u7ccm12qlAea8ExY3AvqlaHy/o/3L4p5Es8JFJ3zJSs6e3DyuxGZZVdl9EVwsLxPPTvioIl4tEm2afwyw==}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-freebsd-x64@1.0.0-beta.24':
- resolution: {integrity: sha512-lx3Q2TU2bbY4yDCZ6e+Wiom3VMLFlZmQswx/1CyjFd+Vv3Q+99SZm6CSfNAIZBaWD246yQRRr1Vx+iIoWCdYzQ==}
- cpu: [x64]
- os: [freebsd]
-
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.21':
- resolution: {integrity: sha512-XKfjZLMODXpgHW1gZUkP/3giahuZD+35ft92nJX6qzEAjcwsZRNsAW2mlWPH68Kp97TBw09+zkNuL8vP66L9uw==}
- cpu: [arm]
- os: [linux]
-
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.24':
- resolution: {integrity: sha512-PLtsV6uf3uS1/cNF8Wu/kitTpXT2YpOZbN6VJm7oMi5A8o5oO0vh8STCB71O5k2kwQMVycsmxHWFk2ZyEa6aMw==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.31':
+ resolution: {integrity: sha512-LHmAaB3rB1GOJuHscKcL2Ts/LKLcb3YWTh2uQ/876rg/J9WE9kQ0kZ+3lRSYbth/YL8ln54j4JZmHpqQY3xptQ==}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.21':
- resolution: {integrity: sha512-Q+5C4gUakWccecCmsr3ts6ypQzGPHUp+ooUQhQAf7L6bTv6037gsRYGDdkxla77S5+VfLXBwNXKZFsndDOuZoQ==}
- cpu: [arm64]
- os: [linux]
-
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.24':
- resolution: {integrity: sha512-UxGukDkWnv7uS5R+BPVeJ4FSuwA+lgC62LRsyPPSJhJhKMNGZ2W9sQPIpEtBRlww8t0qR6QBsiD5TGLW98ktGw==}
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.31':
+ resolution: {integrity: sha512-oTDZVfqIAjLB2I1yTiLyyhfPPO6dky33sTblxTCpe+ZT55WizN3KDoBKJ4yXG8shI6I4bRShVu29Xg0yAjyQYw==}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.21':
- resolution: {integrity: sha512-xf30hS7YvyZlkqR3NZAWm+so0m9Rrp24TRq1F4UmNWpDL5Cwbmgak/Cn4IYUEY6PE960+ZejuAhbCDPt5Bxaeg==}
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.31':
+ resolution: {integrity: sha512-duJ3IkEBj9Xe9NYW1n8Y3483VXHGi8zQ0ZsLbK8464EJUXLF7CXM8Ry+jkkUw+ZvA+Zu1E/+C6p2Y6T9el0C9g==}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.24':
- resolution: {integrity: sha512-vB99yGYW9FOQe4lk3MNKa13+vRj+7waZFlRE3Ba/IpEy7RFxZ78ASkPLXkz4+kYYbUvMnRaOfk9RKX2fqYZRUg==}
+ '@rolldown/binding-linux-arm64-ohos@1.0.0-beta.31':
+ resolution: {integrity: sha512-qdbmU5QSZ0uoLZBYMxiHsMQmizqtzFGTVPU5oyU1n0jU0Mo+mkSzqZuL8VBnjHOHzhVxZsoAGH9JjiRzCnoGVA==}
cpu: [arm64]
- os: [linux]
-
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.21':
- resolution: {integrity: sha512-/X3MvmRcIQSxmHF/TxO2SI0snHjGlY2uO3BKwgPA100hSmvVDuz6cFB80tcGNCUVSJAtRHt/FniNTmbMHfdHLQ==}
- cpu: [x64]
- os: [linux]
+ os: [openharmony]
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.24':
- resolution: {integrity: sha512-fAMZBWutuKWHsyvHVsKjFYRXVgTbzBfNmomzPPpog8UtdkHk5Vnb0qVEeZP4hR4TsXnKfzD2EQ98NRqFej5QYA==}
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.31':
+ resolution: {integrity: sha512-H7+r34TSV8udB2gAsebFM/YuEeNCkPGEAGJ1JE7SgI9XML6FflqcdKfrRSneQFsPaom/gCEc1g0WW5MZ0O3blw==}
cpu: [x64]
os: [linux]
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.21':
- resolution: {integrity: sha512-z5rjicKLgYiffiHOQgM3kROyEUILRZx3GeLtRnrf9yjgMDdpguRl3ggB67ej5ytgRXn5K5F13lsIv5R0i9KRFQ==}
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.31':
+ resolution: {integrity: sha512-zRm2YmzFVqbsmUsyyZnHfJrOlQUcWS/FJ5ZWL8Q1kZh5PnLBrTVZNpakIWwAxpN5gNEi9MmFd5YHocVJp8ps1Q==}
cpu: [x64]
os: [linux]
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.24':
- resolution: {integrity: sha512-0UY/Qo8fAlpolcWOg2ZU7SCUrsCJWifdRMliV9GXlZaBKbMoVNFw0pHGDm9cj/3TWhJu/iB0peZK00dm22LlNw==}
- cpu: [x64]
- os: [linux]
-
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.21':
- resolution: {integrity: sha512-v5eFQYJcD4a2FBb/KDzS+bhVW2tf5aolJCbAiqlVnJwD3dbYMQtwJRwej2kISDerGplx6yQIHp5R5Y7GRoEGhw==}
- engines: {node: '>=14.21.3'}
- cpu: [wasm32]
-
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.24':
- resolution: {integrity: sha512-7ubbtKCo6FBuAM4q6LoT5dOea7f/zj9OYXgumbwSmA0fw18mN5h8SrFTUjl7h9MpPkOyhi2uY6ss4pb39KXkcw==}
- engines: {node: '>=14.21.3'}
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.31':
+ resolution: {integrity: sha512-fM1eUIuHLsNJXRlWOuIIex1oBJ89I0skFWo5r/D3KSJ5gD9MBd3g4Hp+v1JGohvyFE+7ylnwRxSUyMEeYpA69A==}
+ engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.21':
- resolution: {integrity: sha512-1QZIJXSlbIlHJT6xY1YCuyF54sSOoOlsUaX3pWlJvuZs4fbgl894gN4wZATYd0V7KT62qfRdB40wg0yfrTkfFQ==}
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.31':
+ resolution: {integrity: sha512-4nftR9V2KHH3zjBwf6leuZZJQZ7v0d70ogjHIqB3SDsbDLvVEZiGSsSn2X6blSZRZeJSFzK0pp4kZ67zdZXwSw==}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.24':
- resolution: {integrity: sha512-S5WKIabtRBJyzu31KnJRlbZRR6FMrTMzYRrNTnIY2hWWXfpcB1PNuHqbo+98ODLpH8knul4Vyf5sCL61okLTjA==}
- cpu: [arm64]
- os: [win32]
-
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.21':
- resolution: {integrity: sha512-JXTN7gKNmQoFtqYrCK0If4HuZagvBQ7ThY6fl2rAMbUXpq3mtVd+Z2k0TzzeWB7Nxwo6FusLYYlbmPYS5QCl1w==}
- cpu: [ia32]
- os: [win32]
-
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.24':
- resolution: {integrity: sha512-5EW8mzHoukz3zBn/VAaTapK+i+/ZFbSSP9meDmLSuGnk6La8uLAPc7E+6S3gbJnQ6k8lSC6ipIIeXC4SPdttKQ==}
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.31':
+ resolution: {integrity: sha512-0TQcKu9xZVHYALit+WJsSuADGlTFfOXhnZoIHWWQhTk3OgbwwbYcSoZUXjRdFmR6Wswn4csHtJGN1oYKeQ6/2g==}
cpu: [ia32]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.21':
- resolution: {integrity: sha512-wp7kF6IpuVVqQVzkaDxrxJqBByMSEJ8uAa9LTW1fK2x8TulNRjlxPRpjeDNji2uiEGa+QbdQDfRm/WS8ROnutg==}
- cpu: [x64]
- os: [win32]
-
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.24':
- resolution: {integrity: sha512-KpurHt8+B0yTg9gHroC3H/Tf2c9VfjIBsC/wVHTf7GGAe+xkw1+5iYB3Y5iSy3OaMTGq1U3/YEvTqqBdSbDMUg==}
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.31':
+ resolution: {integrity: sha512-3zMICWwpZh1jrkkKDYIUCx/2wY3PXLICAS0AnbeLlhzfWPhCcpNK9eKhiTlLAZyTp+3kyipoi/ZSVIh+WDnBpQ==}
cpu: [x64]
os: [win32]
'@rolldown/pluginutils@1.0.0-beta.19':
resolution: {integrity: sha512-3FL3mnMbPu0muGOCaKAhhFEYmqv9eTfPSJRJmANrCwtgK8VuxpsZDGK+m0LYAGoyO8+0j5uRe4PeyPDK1yA/hA==}
- '@rolldown/pluginutils@1.0.0-beta.21':
- resolution: {integrity: sha512-OTjWr7XYqRZaSzi6dTe0fP25EEsYEQ2H04xIedXG3D0Hrs+Bpe3V5L48R6y+R5ohTygp1ijC09mbrd7vlslpzA==}
-
- '@rolldown/pluginutils@1.0.0-beta.24':
- resolution: {integrity: sha512-NMiim/enJlffMP16IanVj1ajFNEg8SaMEYyxyYfJoEyt5EiFT3HUH/T2GRdeStNWp+/kg5U8DiJqnQBgLQ8uCw==}
+ '@rolldown/pluginutils@1.0.0-beta.31':
+ resolution: {integrity: sha512-IaDZ9NhjOIOkYtm+hH0GX33h3iVZ2OeSUnFF0+7Z4+1GuKs4Kj5wK3+I2zNV9IPLfqV4XlwWif8SXrZNutxciQ==}
'@rollup/plugin-alias@5.1.1':
resolution: {integrity: sha512-PR9zDb+rOzkRb2VD+EuKB7UC41vU5DIwZ5qqCpk0KJudcWAyi8rvYOhS7+L5aZCspw1stTViLgN5v6FF1p5cgQ==}
@@ -3172,137 +3073,155 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.1':
- resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==}
+ '@rollup/rollup-android-arm-eabi@4.43.0':
+ resolution: {integrity: sha512-Krjy9awJl6rKbruhQDgivNbD1WuLb8xAclM4IR4cN5pHGAs2oIMMQJEiC3IC/9TZJ+QZkmZhlMO/6MBGxPidpw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.1':
- resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==}
+ '@rollup/rollup-android-arm64@4.43.0':
+ resolution: {integrity: sha512-ss4YJwRt5I63454Rpj+mXCXicakdFmKnUNxr1dLK+5rv5FJgAxnN7s31a5VchRYxCFWdmnDWKd0wbAdTr0J5EA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.1':
- resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==}
+ '@rollup/rollup-darwin-arm64@4.43.0':
+ resolution: {integrity: sha512-eKoL8ykZ7zz8MjgBenEF2OoTNFAPFz1/lyJ5UmmFSz5jW+7XbH1+MAgCVHy72aG59rbuQLcJeiMrP8qP5d/N0A==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.1':
- resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==}
+ '@rollup/rollup-darwin-x64@4.43.0':
+ resolution: {integrity: sha512-SYwXJgaBYW33Wi/q4ubN+ldWC4DzQY62S4Ll2dgfr/dbPoF50dlQwEaEHSKrQdSjC6oIe1WgzosoaNoHCdNuMg==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.1':
- resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==}
+ '@rollup/rollup-freebsd-arm64@4.43.0':
+ resolution: {integrity: sha512-SV+U5sSo0yujrjzBF7/YidieK2iF6E7MdF6EbYxNz94lA+R0wKl3SiixGyG/9Klab6uNBIqsN7j4Y/Fya7wAjQ==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.1':
- resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==}
+ '@rollup/rollup-freebsd-x64@4.43.0':
+ resolution: {integrity: sha512-J7uCsiV13L/VOeHJBo5SjasKiGxJ0g+nQTrBkAsmQBIdil3KhPnSE9GnRon4ejX1XDdsmK/l30IYLiAaQEO0Cg==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
- resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.43.0':
+ resolution: {integrity: sha512-gTJ/JnnjCMc15uwB10TTATBEhK9meBIY+gXP4s0sHD1zHOaIh4Dmy1X9wup18IiY9tTNk5gJc4yx9ctj/fjrIw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
- resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.43.0':
+ resolution: {integrity: sha512-ZJ3gZynL1LDSIvRfz0qXtTNs56n5DI2Mq+WACWZ7yGHFUEirHBRt7fyIk0NsCKhmRhn7WAcjgSkSVVxKlPNFFw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
- resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==}
+ '@rollup/rollup-linux-arm64-gnu@4.43.0':
+ resolution: {integrity: sha512-8FnkipasmOOSSlfucGYEu58U8cxEdhziKjPD2FIa0ONVMxvl/hmONtX/7y4vGjdUhjcTHlKlDhw3H9t98fPvyA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.1':
- resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==}
+ '@rollup/rollup-linux-arm64-musl@4.43.0':
+ resolution: {integrity: sha512-KPPyAdlcIZ6S9C3S2cndXDkV0Bb1OSMsX0Eelr2Bay4EsF9yi9u9uzc9RniK3mcUGCLhWY9oLr6er80P5DE6XA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
- resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.43.0':
+ resolution: {integrity: sha512-HPGDIH0/ZzAZjvtlXj6g+KDQ9ZMHfSP553za7o2Odegb/BEfwJcR0Sw0RLNpQ9nC6Gy8s+3mSS9xjZ0n3rhcYg==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
- resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.43.0':
+ resolution: {integrity: sha512-gEmwbOws4U4GLAJDhhtSPWPXUzDfMRedT3hFMyRAvM9Mrnj+dJIFIeL7otsv2WF3D7GrV0GIewW0y28dOYWkmw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
- resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==}
+ '@rollup/rollup-linux-riscv64-gnu@4.43.0':
+ resolution: {integrity: sha512-XXKvo2e+wFtXZF/9xoWohHg+MuRnvO29TI5Hqe9xwN5uN8NKUYy7tXUG3EZAlfchufNCTHNGjEx7uN78KsBo0g==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
- resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==}
+ '@rollup/rollup-linux-riscv64-musl@4.43.0':
+ resolution: {integrity: sha512-ruf3hPWhjw6uDFsOAzmbNIvlXFXlBQ4nk57Sec8E8rUxs/AI4HD6xmiiasOOx/3QxS2f5eQMKTAwk7KHwpzr/Q==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
- resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==}
+ '@rollup/rollup-linux-s390x-gnu@4.43.0':
+ resolution: {integrity: sha512-QmNIAqDiEMEvFV15rsSnjoSmO0+eJLoKRD9EAa9rrYNwO/XRCtOGM3A5A0X+wmG+XRrw9Fxdsw+LnyYiZWWcVw==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.1':
- resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==}
+ '@rollup/rollup-linux-x64-gnu@4.43.0':
+ resolution: {integrity: sha512-jAHr/S0iiBtFyzjhOkAics/2SrXE092qyqEg96e90L3t9Op8OTzS6+IX0Fy5wCt2+KqeHAkti+eitV0wvblEoQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.1':
- resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==}
+ '@rollup/rollup-linux-x64-musl@4.43.0':
+ resolution: {integrity: sha512-3yATWgdeXyuHtBhrLt98w+5fKurdqvs8B53LaoKD7P7H7FKOONLsBVMNl9ghPQZQuYcceV5CDyPfyfGpMWD9mQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
- resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==}
+ '@rollup/rollup-win32-arm64-msvc@4.43.0':
+ resolution: {integrity: sha512-wVzXp2qDSCOpcBCT5WRWLmpJRIzv23valvcTwMHEobkjippNf+C3ys/+wf07poPkeNix0paTNemB2XrHr2TnGw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
- resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==}
+ '@rollup/rollup-win32-ia32-msvc@4.43.0':
+ resolution: {integrity: sha512-fYCTEyzf8d+7diCw8b+asvWDCLMjsCEA8alvtAutqJOJp/wL5hs1rWSqJ1vkjgW0L2NB4bsYJrpKkiIPRR9dvw==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.1':
- resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==}
+ '@rollup/rollup-win32-x64-msvc@4.43.0':
+ resolution: {integrity: sha512-SnGhLiE5rlK0ofq8kzuDkM0g7FN1s5VYY+YSMTibP7CqShxCQvqtNxTARS4xX4PFJfHjG0ZQYX9iGzI3FQh5Aw==}
cpu: [x64]
os: [win32]
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@shikijs/core@3.7.0':
- resolution: {integrity: sha512-yilc0S9HvTPyahHpcum8eonYrQtmGTU0lbtwxhA6jHv4Bm1cAdlPFRCJX4AHebkCm75aKTjjRAW+DezqD1b/cg==}
+ '@shikijs/core@3.8.1':
+ resolution: {integrity: sha512-uTSXzUBQ/IgFcUa6gmGShCHr4tMdR3pxUiiWKDm8pd42UKJdYhkAYsAmHX5mTwybQ5VyGDgTjW4qKSsRvGSang==}
+
+ '@shikijs/core@3.9.2':
+ resolution: {integrity: sha512-3q/mzmw09B2B6PgFNeiaN8pkNOixWS726IHmJEpjDAcneDPMQmUg2cweT9cWXY4XcyQS3i6mOOUgQz9RRUP6HA==}
+
+ '@shikijs/engine-javascript@3.8.1':
+ resolution: {integrity: sha512-rZRp3BM1llrHkuBPAdYAzjlF7OqlM0rm/7EWASeCcY7cRYZIrOnGIHE9qsLz5TCjGefxBFnwgIECzBs2vmOyKA==}
+
+ '@shikijs/engine-javascript@3.9.2':
+ resolution: {integrity: sha512-kUTRVKPsB/28H5Ko6qEsyudBiWEDLst+Sfi+hwr59E0GLHV0h8RfgbQU7fdN5Lt9A8R1ulRiZyTvAizkROjwDA==}
- '@shikijs/engine-javascript@3.7.0':
- resolution: {integrity: sha512-0t17s03Cbv+ZcUvv+y33GtX75WBLQELgNdVghnsdhTgU3hVcWcMsoP6Lb0nDTl95ZJfbP1mVMO0p3byVh3uuzA==}
+ '@shikijs/engine-oniguruma@3.8.1':
+ resolution: {integrity: sha512-KGQJZHlNY7c656qPFEQpIoqOuC4LrxjyNndRdzk5WKB/Ie87+NJCF1xo9KkOUxwxylk7rT6nhlZyTGTC4fCe1g==}
- '@shikijs/engine-oniguruma@3.7.0':
- resolution: {integrity: sha512-5BxcD6LjVWsGu4xyaBC5bu8LdNgPCVBnAkWTtOCs/CZxcB22L8rcoWfv7Hh/3WooVjBZmFtyxhgvkQFedPGnFw==}
+ '@shikijs/engine-oniguruma@3.9.2':
+ resolution: {integrity: sha512-Vn/w5oyQ6TUgTVDIC/BrpXwIlfK6V6kGWDVVz2eRkF2v13YoENUvaNwxMsQU/t6oCuZKzqp9vqtEtEzKl9VegA==}
- '@shikijs/langs@3.7.0':
- resolution: {integrity: sha512-1zYtdfXLr9xDKLTGy5kb7O0zDQsxXiIsw1iIBcNOO8Yi5/Y1qDbJ+0VsFoqTlzdmneO8Ij35g7QKF8kcLyznCQ==}
+ '@shikijs/langs@3.8.1':
+ resolution: {integrity: sha512-TjOFg2Wp1w07oKnXjs0AUMb4kJvujML+fJ1C5cmEj45lhjbUXtziT1x2bPQb9Db6kmPhkG5NI2tgYW1/DzhUuQ==}
- '@shikijs/themes@3.7.0':
- resolution: {integrity: sha512-VJx8497iZPy5zLiiCTSIaOChIcKQwR0FebwE9S3rcN0+J/GTWwQ1v/bqhTbpbY3zybPKeO8wdammqkpXc4NVjQ==}
+ '@shikijs/langs@3.9.2':
+ resolution: {integrity: sha512-X1Q6wRRQXY7HqAuX3I8WjMscjeGjqXCg/Sve7J2GWFORXkSrXud23UECqTBIdCSNKJioFtmUGJQNKtlMMZMn0w==}
- '@shikijs/transformers@3.7.0':
- resolution: {integrity: sha512-VplaqIMRNsNOorCXJHkbF5S0pT6xm8Z/s7w7OPZLohf8tR93XH0krvUafpNy/ozEylrWuShJF0+ftEB+wFRwGA==}
+ '@shikijs/themes@3.8.1':
+ resolution: {integrity: sha512-Vu3t3BBLifc0GB0UPg2Pox1naTemrrvyZv2lkiSw3QayVV60me1ujFQwPZGgUTmwXl1yhCPW8Lieesm0CYruLQ==}
- '@shikijs/twoslash@3.7.0':
- resolution: {integrity: sha512-EjnV193iasm/M5UHVDJg6WyX6dIMCb0YhsKKlgWv3OK7iLFjuW7sUp978ZkO2OIn3niqBT6e+CX1LgoPM8jYjQ==}
+ '@shikijs/themes@3.9.2':
+ resolution: {integrity: sha512-6z5lBPBMRfLyyEsgf6uJDHPa6NAGVzFJqH4EAZ+03+7sedYir2yJBRu2uPZOKmj43GyhVHWHvyduLDAwJQfDjA==}
+
+ '@shikijs/transformers@3.8.1':
+ resolution: {integrity: sha512-nmTyFfBrhJk6HJi118jes0wuWdfKXeVUq1Nq+hm8h6wbk1KUfvtg+LY/uDfxZD2VDItHO3QoINIs3NtoKBmgxw==}
+
+ '@shikijs/twoslash@3.9.2':
+ resolution: {integrity: sha512-LRAhdZwp+4AXyScSgWAyoo1EM6lf2iTQPivl3w9fWSBi3yp4MJZfbed/6dcemd20jW4A9olzB3j1mFAKv/CRFw==}
peerDependencies:
typescript: '>=5.5.0'
- '@shikijs/types@3.7.0':
- resolution: {integrity: sha512-MGaLeaRlSWpnP0XSAum3kP3a8vtcTsITqoEPYdt3lQG3YCdQH4DnEhodkYcNMcU0uW0RffhoD1O3e0vG5eSBBg==}
+ '@shikijs/types@3.8.1':
+ resolution: {integrity: sha512-5C39Q8/8r1I26suLh+5TPk1DTrbY/kn3IdWA5HdizR0FhlhD05zx5nKCqhzSfDHH3p4S0ZefxWd77DLV+8FhGg==}
+
+ '@shikijs/types@3.9.2':
+ resolution: {integrity: sha512-/M5L0Uc2ljyn2jKvj4Yiah7ow/W+DJSglVafvWAJ/b8AZDeeRAdMu3c2riDzB7N42VD+jSnWxeP9AKtd4TfYVw==}
- '@shikijs/vitepress-twoslash@3.7.0':
- resolution: {integrity: sha512-NGqsd5dfkf8MTCYKKhMZubVfEXUyXXwtbgdDmHlXLB/8S2WZ1bPwduoVldxuETvr/54w/y7gkWbVgkKtq8GvYg==}
+ '@shikijs/vitepress-twoslash@3.9.2':
+ resolution: {integrity: sha512-s1pQyHr6QJG37MMPVZeGBfNjb359e/ndKhqh5b5OTfLO+a3BHe9qKAc6YZCBLhx/2aclYcbrNSUpm0RqLP6EkA==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -3315,10 +3234,17 @@ packages:
resolution: {integrity: sha512-6rsHTjodIn/t90lv5snQjRPVtOosM7Vp0AKdrObymq45ojlgVwnpAqdc+0OBBrpEiy31zZ6/TKeIVqV1HwvnuQ==}
engines: {node: '>=18'}
+ '@sindresorhus/is@7.0.2':
+ resolution: {integrity: sha512-d9xRovfKNz1SKieM0qJdO+PQonjnnIfSNWfHYnBSJ9hkjm0ZPw6HlxscDXYstp3z+7V2GOFHc+J0CYrYTjqCJw==}
+ engines: {node: '>=18'}
+
'@sindresorhus/merge-streams@4.0.0':
resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==}
engines: {node: '>=18'}
+ '@speed-highlight/core@1.2.7':
+ resolution: {integrity: sha512-0dxmVj4gxg3Jg879kvFS/msl4s9F3T9UXC1InxgOf7t5NvcPD97u/WTA5vL/IxWHMn7qSxBozqrnnE2wvl1m8g==}
+
'@tailwindcss/node@4.1.11':
resolution: {integrity: sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==}
@@ -3412,6 +3338,9 @@ packages:
peerDependencies:
vite: workspace:*
+ '@tybys/wasm-util@0.10.0':
+ resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==}
+
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -3496,14 +3425,14 @@ packages:
'@types/ms@2.1.0':
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
- '@types/node@22.16.0':
- resolution: {integrity: sha512-B2egV9wALML1JCpv3VQoQ+yesQKAmNMBIAY7OteVrikcOcAkWm+dGL6qpeCktPjAv6N1JLnhbNiqS35UpFyBsQ==}
+ '@types/node@22.17.0':
+ resolution: {integrity: sha512-bbAKTCqX5aNVryi7qXVMi+OkB3w/OyblodicMbvE38blyAz7GxXf6XYhklokijuPwwVg9sDLKRxt0ZHXQwZVfQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
- '@types/picomatch@4.0.0':
- resolution: {integrity: sha512-J1Bng+wlyEERWSgJQU1Pi0HObCLVcr994xT/M+1wcl/yNRTGBupsCxthgkdYG+GCOMaQH7iSVUY3LJVBBqG7MQ==}
+ '@types/picomatch@4.0.2':
+ resolution: {integrity: sha512-qHHxQ+P9PysNEGbALT8f8YOSHW0KJu6l2xU8DYY0fu/EmGxXdVnuTLvFUvBgPJMSqXq29SYHveejeAha+4AYgA==}
'@types/pnpapi@0.0.5':
resolution: {integrity: sha512-tjymquatF9seZGE3GcN1barqNqpmyEpqIN0rBKTcoZWwgDC0SgBp5LFqCRJE6YhzXA7TjpXbpTdcL5A8cwyryw==}
@@ -3514,13 +3443,13 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@19.1.6':
- resolution: {integrity: sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==}
+ '@types/react-dom@19.1.7':
+ resolution: {integrity: sha512-i5ZzwYpqjmrKenzkoLM2Ibzt6mAsM7pxB6BCIouEVVmgiqaMj1TjaK7hnA36hbW5aZv20kx7Lw6hWzPWg0Rurw==}
peerDependencies:
'@types/react': ^19.0.0
- '@types/react@19.1.8':
- resolution: {integrity: sha512-AwAfQ2Wa5bCx9WP8nZL2uMZWod7J7/JSplxbTmBQ5ms6QpqNYm672H0Vu9ZVKVngQ+ii4R/byguVEUZQyeg44g==}
+ '@types/react@19.1.9':
+ resolution: {integrity: sha512-WmdoynAX8Stew/36uTSVMcLJJ1KRh6L3IZRx1PZ7qJtBqT3dYTgyDTx8H1qoRghErydW7xw9mSJ3wS//tCRpFA==}
'@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
@@ -3540,67 +3469,67 @@ packages:
'@types/ws@8.18.1':
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
- '@typescript-eslint/eslint-plugin@8.35.1':
- resolution: {integrity: sha512-9XNTlo7P7RJxbVeICaIIIEipqxLKguyh+3UbXuT2XQuFp6d8VOeDEGuz5IiX0dgZo8CiI6aOFLg4e8cF71SFVg==}
+ '@typescript-eslint/eslint-plugin@8.39.0':
+ resolution: {integrity: sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.35.1
+ '@typescript-eslint/parser': ^8.39.0
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.35.1':
- resolution: {integrity: sha512-3MyiDfrfLeK06bi/g9DqJxP5pV74LNv4rFTyvGDmT3x2p1yp1lOd+qYZfiRPIOf/oON+WRZR5wxxuF85qOar+w==}
+ '@typescript-eslint/parser@8.39.0':
+ resolution: {integrity: sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/project-service@8.35.1':
- resolution: {integrity: sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q==}
+ '@typescript-eslint/project-service@8.39.0':
+ resolution: {integrity: sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@8.35.1':
- resolution: {integrity: sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg==}
+ '@typescript-eslint/scope-manager@8.39.0':
+ resolution: {integrity: sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.35.1':
- resolution: {integrity: sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ==}
+ '@typescript-eslint/tsconfig-utils@8.39.0':
+ resolution: {integrity: sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.35.1':
- resolution: {integrity: sha512-HOrUBlfVRz5W2LIKpXzZoy6VTZzMu2n8q9C2V/cFngIC5U1nStJgv0tMV4sZPzdf4wQm9/ToWUFPMN9Vq9VJQQ==}
+ '@typescript-eslint/type-utils@8.39.0':
+ resolution: {integrity: sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
'@typescript-eslint/types@8.35.0':
resolution: {integrity: sha512-0mYH3emanku0vHw2aRLNGqe7EXh9WHEhi7kZzscrMDf6IIRUQ5Jk4wp1QrledE/36KtdZrVfKnE32eZCf/vaVQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/types@8.35.1':
- resolution: {integrity: sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ==}
+ '@typescript-eslint/types@8.39.0':
+ resolution: {integrity: sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.35.1':
- resolution: {integrity: sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g==}
+ '@typescript-eslint/typescript-estree@8.39.0':
+ resolution: {integrity: sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/utils@8.35.1':
- resolution: {integrity: sha512-lhnwatFmOFcazAsUm3ZnZFpXSxiwoa1Lj50HphnDe1Et01NF4+hrdXONSUHIcbVu2eFb1bAf+5yjXkGVkXBKAQ==}
+ '@typescript-eslint/utils@8.39.0':
+ resolution: {integrity: sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@8.35.1':
- resolution: {integrity: sha512-VRwixir4zBWCSTP/ljEo091lbpypz57PoeAQ9imjG+vbeof9LplljsL1mos4ccG6H9IjfrVGM359RozUnuFhpw==}
+ '@typescript-eslint/visitor-keys@8.39.0':
+ resolution: {integrity: sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript/vfs@1.6.1':
@@ -3709,6 +3638,14 @@ packages:
'@vitejs/longfilename-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa@file:playground/optimize-deps/longfilename':
resolution: {directory: playground/optimize-deps/longfilename, type: directory}
+ '@vitejs/plugin-legacy@https://pkg.pr.new/vitejs/rolldown-vite/@vitejs/plugin-legacy@b19b90a':
+ resolution: {tarball: https://pkg.pr.new/vitejs/rolldown-vite/@vitejs/plugin-legacy@b19b90a}
+ version: 7.0.1
+ engines: {node: ^20.19.0 || >=22.12.0}
+ peerDependencies:
+ terser: ^5.16.0
+ vite: workspace:*
+
'@vitejs/plugin-vue@6.0.0':
resolution: {integrity: sha512-iAliE72WsdhjzTOp2DtvKThq1VBC4REhwRcaA+zPAAph6I+OQhUXv+Xu2KS7ElxYtb7Zc/3R30Hwv1DxEo7NXQ==}
engines: {node: ^20.19.0 || >=22.12.0}
@@ -3920,6 +3857,9 @@ packages:
'@vitejs/test-module-condition@file:playground/ssr-deps/module-condition':
resolution: {directory: playground/ssr-deps/module-condition, type: directory}
+ '@vitejs/test-module-sync@file:playground/ssr-resolve/pkg-module-sync':
+ resolution: {directory: playground/ssr-resolve/pkg-module-sync, type: directory}
+
'@vitejs/test-multi-entry-dep@file:playground/optimize-missing-deps/multi-entry-dep':
resolution: {directory: playground/optimize-missing-deps/multi-entry-dep, type: directory}
@@ -4024,35 +3964,35 @@ packages:
'@vitest/utils@3.2.4':
resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==}
- '@volar/language-core@2.4.11':
- resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
+ '@volar/language-core@2.4.20':
+ resolution: {integrity: sha512-dRDF1G33xaAIDqR6+mXUIjXYdu9vzSxlMGfMEwBxQsfY/JMUEXSpLTR057oTKlUQ2nIvCmP9k94A8h8z2VrNSA==}
- '@volar/source-map@2.4.11':
- resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
+ '@volar/source-map@2.4.20':
+ resolution: {integrity: sha512-mVjmFQH8mC+nUaVwmbxoYUy8cww+abaO8dWzqPUjilsavjxH0jCJ3Mp8HFuHsdewZs2c+SP+EO7hCd8Z92whJg==}
'@vue/compiler-core@3.4.38':
resolution: {integrity: sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==}
- '@vue/compiler-core@3.5.17':
- resolution: {integrity: sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==}
+ '@vue/compiler-core@3.5.18':
+ resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==}
'@vue/compiler-dom@3.4.38':
resolution: {integrity: sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==}
- '@vue/compiler-dom@3.5.17':
- resolution: {integrity: sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==}
+ '@vue/compiler-dom@3.5.18':
+ resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==}
'@vue/compiler-sfc@3.4.38':
resolution: {integrity: sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==}
- '@vue/compiler-sfc@3.5.17':
- resolution: {integrity: sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww==}
+ '@vue/compiler-sfc@3.5.18':
+ resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==}
'@vue/compiler-ssr@3.4.38':
resolution: {integrity: sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==}
- '@vue/compiler-ssr@3.5.17':
- resolution: {integrity: sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ==}
+ '@vue/compiler-ssr@3.5.18':
+ resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==}
'@vue/compiler-vue2@2.7.16':
resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==}
@@ -4069,8 +4009,8 @@ packages:
'@vue/devtools-shared@7.7.7':
resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==}
- '@vue/language-core@2.2.4':
- resolution: {integrity: sha512-eGGdw7eWUwdIn9Fy/irJ7uavCGfgemuHQABgJ/hU1UgZFnbTg9VWeXvHQdhY+2SPQZWJqWXvRWIg67t4iWEa+Q==}
+ '@vue/language-core@3.0.3':
+ resolution: {integrity: sha512-I9wY0ULMN9tMSua+2C7g+ez1cIziVMUzIHlDYGSl2rtru3Eh4sXj95vZ+4GBuXwwPnEmYfzSApVbXiVbI8V5Gg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -4080,44 +4020,44 @@ packages:
'@vue/reactivity@3.4.38':
resolution: {integrity: sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==}
- '@vue/reactivity@3.5.17':
- resolution: {integrity: sha512-l/rmw2STIscWi7SNJp708FK4Kofs97zc/5aEPQh4bOsReD/8ICuBcEmS7KGwDj5ODQLYWVN2lNibKJL1z5b+Lw==}
+ '@vue/reactivity@3.5.18':
+ resolution: {integrity: sha512-x0vPO5Imw+3sChLM5Y+B6G1zPjwdOri9e8V21NnTnlEvkxatHEH5B5KEAJcjuzQ7BsjGrKtfzuQ5eQwXh8HXBg==}
'@vue/runtime-core@3.4.38':
resolution: {integrity: sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==}
- '@vue/runtime-core@3.5.17':
- resolution: {integrity: sha512-QQLXa20dHg1R0ri4bjKeGFKEkJA7MMBxrKo2G+gJikmumRS7PTD4BOU9FKrDQWMKowz7frJJGqBffYMgQYS96Q==}
+ '@vue/runtime-core@3.5.18':
+ resolution: {integrity: sha512-DUpHa1HpeOQEt6+3nheUfqVXRog2kivkXHUhoqJiKR33SO4x+a5uNOMkV487WPerQkL0vUuRvq/7JhRgLW3S+w==}
'@vue/runtime-dom@3.4.38':
resolution: {integrity: sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==}
- '@vue/runtime-dom@3.5.17':
- resolution: {integrity: sha512-8El0M60TcwZ1QMz4/os2MdlQECgGoVHPuLnQBU3m9h3gdNRW9xRmI8iLS4t/22OQlOE6aJvNNlBiCzPHur4H9g==}
+ '@vue/runtime-dom@3.5.18':
+ resolution: {integrity: sha512-YwDj71iV05j4RnzZnZtGaXwPoUWeRsqinblgVJwR8XTXYZ9D5PbahHQgsbmzUvCWNF6x7siQ89HgnX5eWkr3mw==}
'@vue/server-renderer@3.4.38':
resolution: {integrity: sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==}
peerDependencies:
vue: 3.4.38
- '@vue/server-renderer@3.5.17':
- resolution: {integrity: sha512-BOHhm8HalujY6lmC3DbqF6uXN/K00uWiEeF22LfEsm9Q93XeJ/plHTepGwf6tqFcF7GA5oGSSAAUock3VvzaCA==}
+ '@vue/server-renderer@3.5.18':
+ resolution: {integrity: sha512-PvIHLUoWgSbDG7zLHqSqaCoZvHi6NNmfVFOqO+OnwvqMz/tqQr3FuGWS8ufluNddk7ZLBJYMrjcw1c6XzR12mA==}
peerDependencies:
- vue: 3.5.17
+ vue: 3.5.18
'@vue/shared@3.4.38':
resolution: {integrity: sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==}
- '@vue/shared@3.5.17':
- resolution: {integrity: sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg==}
+ '@vue/shared@3.5.18':
+ resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==}
- '@vueuse/core@13.4.0':
- resolution: {integrity: sha512-OnK7zW3bTq/QclEk17+vDFN3tuAm8ONb9zQUIHrYQkkFesu3WeGUx/3YzpEp+ly53IfDAT9rsYXgGW6piNZC5w==}
+ '@vueuse/core@13.5.0':
+ resolution: {integrity: sha512-wV7z0eUpifKmvmN78UBZX8T7lMW53Nrk6JP5+6hbzrB9+cJ3jr//hUlhl9TZO/03bUkMK6gGkQpqOPWoabr72g==}
peerDependencies:
vue: ^3.5.0
- '@vueuse/integrations@13.4.0':
- resolution: {integrity: sha512-rwNoE0MNJBUuSzTZcUVrkovtHvpWIySOcC6XpcS33ZarHDNhd9CPvCD4eNl3N0Phz1he1JV0iYULRyPQ5HCbFA==}
+ '@vueuse/integrations@13.5.0':
+ resolution: {integrity: sha512-7RACJySnlpl0MkSzxbtadioNGSX4TL5/Wl2cUy4nDq/XkeHwPYvVM880HJUSiap/FXhVEup9VKTM9y/n5UspAw==}
peerDependencies:
async-validator: ^4
axios: ^1
@@ -4130,7 +4070,7 @@ packages:
nprogress: ^0.2
qrcode: ^1.5
sortablejs: ^1
- universal-cookie: ^7
+ universal-cookie: ^7 || ^8
vue: ^3.5.0
peerDependenciesMeta:
async-validator:
@@ -4158,11 +4098,11 @@ packages:
universal-cookie:
optional: true
- '@vueuse/metadata@13.4.0':
- resolution: {integrity: sha512-CPDQ/IgOeWbqItg1c/pS+Ulum63MNbpJ4eecjFJqgD/JUCJ822zLfpw6M9HzSvL6wbzMieOtIAW/H8deQASKHg==}
+ '@vueuse/metadata@13.5.0':
+ resolution: {integrity: sha512-euhItU3b0SqXxSy8u1XHxUCdQ8M++bsRs+TYhOLDU/OykS7KvJnyIFfep0XM5WjIFry9uAPlVSjmVHiqeshmkw==}
- '@vueuse/shared@13.4.0':
- resolution: {integrity: sha512-+AxuKbw8R1gYy5T21V5yhadeNM7rJqb4cPaRI9DdGnnNl3uqXh+unvQ3uCaA2DjYLbNr1+l7ht/B4qEsRegX6A==}
+ '@vueuse/shared@13.5.0':
+ resolution: {integrity: sha512-K7GrQIxJ/ANtucxIXbQlUHdB0TPA8c+q5i+zbrjxuhJCnJ9GtBg75sBSnvmLSxHKPg2Yo8w62PWksl9kwH0Q8g==}
peerDependencies:
vue: ^3.5.0
@@ -4197,12 +4137,8 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- algoliasearch@5.20.3:
- resolution: {integrity: sha512-iNC6BGvipaalFfDfDnXUje8GUlW5asj0cTMsZJwO/0rhsyLx1L7GZFAY8wW+eQ6AM4Yge2p5GSE5hrBlfSD90Q==}
- engines: {node: '>= 14.0.0'}
-
- alien-signals@1.0.13:
- resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
+ alien-signals@2.0.5:
+ resolution: {integrity: sha512-PdJB6+06nUNAClInE3Dweq7/2xVAYM64vvvS1IHVHSJmgeOtEdrAGyp7Z2oJtYm0B342/Exd2NT0uMJaThcjLQ==}
ansi-escapes@7.0.0:
resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
@@ -4255,9 +4191,6 @@ packages:
resolution: {integrity: sha512-DOBIGtORx7L8bZNjWPeoGoDISpUgFXScvbFCAJsSvJ9V7rQ6C+lKYxcQ1tSBPVIAENLkiH2WxOkPVL26LvEfbA==}
engines: {node: ^18.0.0 || >=20.0.0}
- as-table@1.0.55:
- resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==}
-
asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
@@ -4268,8 +4201,8 @@ packages:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
- ast-kit@2.1.0:
- resolution: {integrity: sha512-ROM2LlXbZBZVk97crfw8PGDOBzzsJvN2uJCmwswvPUNyfH14eg90mSN3xNqsri1JS1G9cz0VzeDUhxJkTrr4Ew==}
+ ast-kit@2.1.1:
+ resolution: {integrity: sha512-mfh6a7gKXE8pDlxTvqIc/syH/P3RkzbOF6LeHdcKztLEzYe6IMsRCL7N8vI7hqTGWNxpkCuuRTpT21xNWqhRtQ==}
engines: {node: '>=20.18.0'}
astring@1.9.0:
@@ -4286,8 +4219,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- axios@1.10.0:
- resolution: {integrity: sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==}
+ axios@1.11.0:
+ resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
babel-plugin-polyfill-corejs2@0.4.14:
resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
@@ -4314,11 +4247,11 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- baseline-browser-mapping@2.4.4:
- resolution: {integrity: sha512-+kFK5pRzOn5a1gHdVmM2xo5j/XVsrJdWpy3SSwe463xraxzy3ZPQOwOzB6/MfsaWf72vRnbIBubiT28E94GkAA==}
+ baseline-browser-mapping@2.5.7:
+ resolution: {integrity: sha512-XbsaBD5JI8NuV7leydXR5lPySX2dRaGXcXoJkCOkmlwRG80mSvVd34ns2sdx0k91IMq/ic0JE/Sx1NteATAYrA==}
- bignumber.js@9.3.0:
- resolution: {integrity: sha512-EM7aMFTXbptt/wZdMlBv2t8IViwQL+h6SLHosp8Yf0dqJMTnY6iL32opnAB6kAdL0SZPuvcAzFr31o0c/R3/RA==}
+ bignumber.js@9.3.1:
+ resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
@@ -4327,18 +4260,18 @@ packages:
birpc@0.2.19:
resolution: {integrity: sha512-5WeXXAvTmitV1RqJFppT5QtUiz2p1mRSYU000Jkft5ZUCLJIk4uQriYNO50HknxKwM6jd8utNc66K1qGIwwWBQ==}
- birpc@2.4.0:
- resolution: {integrity: sha512-5IdNxTyhXHv2UlgnPHQ0h+5ypVmkrYHzL8QT+DwFZ//2N/oNV8Ch+BCRmTJ3x6/z9Axo/cXYBc9eprsUVK/Jsg==}
+ birpc@2.5.0:
+ resolution: {integrity: sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==}
body-parser@2.2.0:
resolution: {integrity: sha512-02qvAaxv8tp7fBa/mw1ga98OGm+eCbqzJOKoRt70sLmfEEi+jyBYVTDGfCL/k06/4EMk/z01gCe7HoCH/f2LTg==}
engines: {node: '>=18'}
- brace-expansion@1.1.12:
- resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
+ brace-expansion@1.1.11:
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
- brace-expansion@2.0.2:
- resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+ brace-expansion@2.0.1:
+ resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
@@ -4573,6 +4506,10 @@ packages:
resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
+ cookie@1.0.2:
+ resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
+ engines: {node: '>=18'}
+
copy-anything@2.0.6:
resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
@@ -4580,11 +4517,11 @@ packages:
resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==}
engines: {node: '>=12.13'}
- core-js-compat@3.43.0:
- resolution: {integrity: sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA==}
+ core-js-compat@3.44.0:
+ resolution: {integrity: sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==}
- core-js@3.43.0:
- resolution: {integrity: sha512-N6wEbTTZSYOY2rYAn85CuvWWkCK6QweMn7/4Nr3w+gDBeBhk/x4EJeY6FPo4QzDoJZxVTv8U7CMvgWk6pOHHqA==}
+ core-js@3.45.0:
+ resolution: {integrity: sha512-c2KZL9lP4DjkN3hk/an4pWn5b5ZefhRJnAc42n6LJ19kSnbeRbdQZE5dSeE2LBol1OwJD3X1BQvFTAsa8ReeDA==}
cors@2.8.5:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
@@ -4609,9 +4546,6 @@ packages:
resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==}
engines: {node: '>=0.12'}
- data-uri-to-buffer@2.0.2:
- resolution: {integrity: sha512-ND9qDTLc6diwj+Xe5cdAgVTbLVdXbtxTJRXRhli8Mowuaan+0EJOtdqJ0QCHNSSPyoXGx9HX2/VMnKeC34AChA==}
-
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -4709,8 +4643,8 @@ packages:
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
engines: {node: '>=12'}
- dotenv@17.0.1:
- resolution: {integrity: sha512-GLjkduuAL7IMJg/ZnOPm9AnWKJ82mSE2tzXLaJ/6hD6DhwGfZaXG77oB8qbReyiczNxnbxQKyh0OE5mXq0bAHA==}
+ dotenv@17.2.1:
+ resolution: {integrity: sha512-kQhDYKZecqnM0fCnzI5eIv5L4cAe/iRI+HqMbO/hbRdTAeXDG+M9FjipUxNfbARuEg4iHIbhnhs78BCHNbSxEQ==}
engines: {node: '>=12'}
dts-resolver@2.1.1:
@@ -4776,6 +4710,9 @@ packages:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
+ error-stack-parser-es@1.0.5:
+ resolution: {integrity: sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==}
+
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -4860,14 +4797,14 @@ packages:
eslint-import-resolver-node:
optional: true
- eslint-plugin-n@17.21.0:
- resolution: {integrity: sha512-1+iZ8We4ZlwVMtb/DcHG3y5/bZOdazIpa/4TySo22MLKdwrLcfrX0hbadnCvykSQCCmkAnWmIP8jZVb2AAq29A==}
+ eslint-plugin-n@17.21.3:
+ resolution: {integrity: sha512-MtxYjDZhMQgsWRm/4xYLL0i2EhusWT7itDxlJ80l1NND2AL2Vi5Mvneqv/ikG9+zpran0VsVRXTEHrpLmUZRNw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
- eslint-plugin-regexp@2.9.0:
- resolution: {integrity: sha512-9WqJMnOq8VlE/cK+YAo9C9YHhkOtcEtEk9d12a+H7OSZFwlpI6stiHmYPGa2VE0QhTzodJyhlyprUaXDZLgHBw==}
+ eslint-plugin-regexp@2.9.1:
+ resolution: {integrity: sha512-JwK6glV/aoYDxvXcrvMQbw/pByBewZwqXVSBzzjot3GxSbmjDYuWU4LWiLdBO8JKi4o8A1+rygO6JWRBg4qAQQ==}
engines: {node: ^18 || >=20}
peerDependencies:
eslint: '>=8.44.0'
@@ -4884,8 +4821,8 @@ packages:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.30.1:
- resolution: {integrity: sha512-zmxXPNMOXmwm9E0yQLi5uqXHs7uq2UIiqEKo3Gq+3fwo1XrJ+hijAZImyF7hclW3E6oHz43Yk3RP8at6OTKflQ==}
+ eslint@9.32.0:
+ resolution: {integrity: sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
peerDependencies:
@@ -4936,9 +4873,6 @@ packages:
event-emitter@0.3.5:
resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
- eventemitter3@4.0.7:
- resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
-
eventemitter3@5.0.1:
resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
@@ -5034,6 +4968,10 @@ packages:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
+ flat-cache@5.0.0:
+ resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==}
+ engines: {node: '>=18'}
+
flatted@3.3.3:
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
@@ -5062,8 +5000,8 @@ packages:
resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
- form-data@4.0.2:
- resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
+ form-data@4.0.4:
+ resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -5108,13 +5046,14 @@ packages:
resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
engines: {node: '>= 0.4'}
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
+
get-proto@1.0.1:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-source@2.0.12:
- resolution: {integrity: sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==}
-
get-stream@8.0.1:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
@@ -5160,6 +5099,9 @@ packages:
resolution: {integrity: sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==}
engines: {node: '>=18'}
+ globrex@0.1.2:
+ resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
+
good-listener@1.2.2:
resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
@@ -5229,9 +5171,9 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
- http-proxy@1.18.1:
- resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
- engines: {node: '>=8.0.0'}
+ http-proxy-3@1.20.10:
+ resolution: {integrity: sha512-jVCbIXd849IGpLyFSHuIFDE4HenkUJMaFB7P/pbRFAwfjTtOt1bkF+l7TQE/jsLADiconvSIBwF6eclEt9tjVA==}
+ engines: {node: '>=18'}
human-signals@5.0.0:
resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
@@ -5264,6 +5206,11 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
+ image-size@2.0.2:
+ resolution: {integrity: sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==}
+ engines: {node: '>=16.x'}
+ hasBin: true
+
immutable@5.0.3:
resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
@@ -5458,17 +5405,21 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
+ kleur@4.1.5:
+ resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
+ engines: {node: '>=6'}
+
kolorist@1.8.0:
resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}
- launch-editor-middleware@2.10.0:
- resolution: {integrity: sha512-RzZu7MeVlE3p1H6Sadc2BhuDGAj7bkeDCBpNq/zSENP4ohJGhso00k5+iYaRwKshIpiOAhMmimce+5D389xmSg==}
+ launch-editor-middleware@2.11.0:
+ resolution: {integrity: sha512-AEKcN/lnbugcXYoYOpEuTR87vhFvEWH6azZl6gqqUrnntFBNowIkgof2g8wHQ+UrM9aNRKykTWFz/TW+uiqlow==}
- launch-editor@2.10.0:
- resolution: {integrity: sha512-D7dBRJo/qcGX9xlvt/6wUYzQxjh5G1RvZPgPv8vi4KRU99DVQL/oW7tnVOCCTm2HGeo3C5HvGE5Yrh6UBoZ0vA==}
+ launch-editor@2.11.0:
+ resolution: {integrity: sha512-R/PIF14L6e2eHkhvQPu7jDRCr0msfCYCxbYiLgkkAGi0dVPWuM+RrsPu0a5dpuNe0KWGL3jpAkOlv53xGfPheQ==}
- less@4.3.0:
- resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==}
+ less@4.4.0:
+ resolution: {integrity: sha512-kdTwsyRuncDfjEs0DlRILWNvxhDG/Zij4YLO4TMJgDLW+8OzpfkdPnRgrsRuY1o+oaxJGWsps5f/RVBgGmmN0w==}
engines: {node: '>=14'}
hasBin: true
@@ -5550,14 +5501,14 @@ packages:
linkify-it@5.0.0:
resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==}
- lint-staged@16.1.2:
- resolution: {integrity: sha512-sQKw2Si2g9KUZNY3XNvRuDq4UJqpHwF0/FQzZR2M7I5MvtpWvibikCjUVJzZdGE0ByurEl3KQNvsGetd1ty1/Q==}
+ lint-staged@16.1.4:
+ resolution: {integrity: sha512-xy7rnzQrhTVGKMpv6+bmIA3C0yET31x8OhKBYfvGo0/byeZ6E0BjGARrir3Kg/RhhYHutpsi01+2J5IpfVoueA==}
engines: {node: '>=20.17'}
hasBin: true
- listr2@8.3.3:
- resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==}
- engines: {node: '>=18.0.0'}
+ listr2@9.0.1:
+ resolution: {integrity: sha512-SL0JY3DaxylDuo/MecFeiC+7pedM0zia33zl0vcjgwcq1q1FWWF1To9EIauPbl8GbMCU0R2e0uJ8bZunhYKD2g==}
+ engines: {node: '>=20.0.0'}
loader-utils@3.3.1:
resolution: {integrity: sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==}
@@ -5618,6 +5569,12 @@ packages:
mark.js@8.11.1:
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
+ markdown-it-image-size@14.7.0:
+ resolution: {integrity: sha512-Tdsi5drDNv9mP8+0mJx8uyVO3VLu2faBAuQdO1ure/KCYXbFY1lRVViXNxG1l/ExqA6F765VA8XmXciTaOkKjg==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ markdown-it: '>= 10 < 15'
+
markdown-it@14.1.0:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
@@ -5797,8 +5754,8 @@ packages:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
- miniflare@4.20250617.5:
- resolution: {integrity: sha512-Qqn30jR6dCjXaKVizT6vH4KOb+GyLccoxLNOJEfu63yBPn8eoXa7PrdiSGTmjs2RY8/tr7eTO8Wu/Yr14k0xVA==}
+ miniflare@4.20250730.0:
+ resolution: {integrity: sha512-avGXBStHQSqcJr8ra1mJ3/OQvnLZ49B1uAILQapAha1DHNZZvXWLIgUVre/WGY6ZOlNGFPh5CJ+dXLm4yuV3Jw==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -5862,10 +5819,6 @@ packages:
muggle-string@0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
- mustache@4.2.0:
- resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==}
- hasBin: true
-
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -5912,6 +5865,15 @@ packages:
node-addon-api@7.1.1:
resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+ node-fetch@2.7.0:
+ resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
+ engines: {node: 4.x || >=6.0.0}
+ peerDependencies:
+ encoding: ^0.1.0
+ peerDependenciesMeta:
+ encoding:
+ optional: true
+
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
@@ -5975,8 +5937,8 @@ packages:
oniguruma-to-es@4.3.3:
resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==}
- open@10.1.2:
- resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==}
+ open@10.2.0:
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
optionator@0.9.4:
@@ -6016,8 +5978,8 @@ packages:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
engines: {node: '>= 0.10'}
- parse5@7.3.0:
- resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
+ parse5@8.0.0:
+ resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==}
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
@@ -6076,6 +6038,10 @@ packages:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
+ engines: {node: '>=12'}
+
pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
@@ -6096,13 +6062,13 @@ packages:
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
- playwright-chromium@1.53.2:
- resolution: {integrity: sha512-srR0AVmLltaDH6bkEdPlHrqOwtqHI7XkQNm1m20RZNYBIo3L83uv2ENX2SZyYNKtTcT6R//F5moFS7D5UoMINw==}
+ playwright-chromium@1.54.2:
+ resolution: {integrity: sha512-8ytI6xNjB//5zWSZUvOvn+N9xkXw6GXiDuBePOejcDiyUmzl5R5rvAU7MTl6h633sS3JVmlCS10EhYCt4Crzsg==}
engines: {node: '>=18'}
hasBin: true
- playwright-core@1.53.2:
- resolution: {integrity: sha512-ox/OytMy+2w1jcYEYlOo1Hhp8hZkLCximMTUTMBXjGUA1KoFfiSZ+DU+3a739jsPY0yoKH2TFy9S2fsJas8yAw==}
+ playwright-core@1.54.2:
+ resolution: {integrity: sha512-n5r4HFbMmWsB4twG7tJLDN9gmBUeSPcsBZiWSE4DnYz9mJMAFqr2ID7+eGC9kpEnxExJ1epttwR59LEWCk8mtA==}
engines: {node: '>=18'}
hasBin: true
@@ -6210,9 +6176,6 @@ packages:
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.26.2:
- resolution: {integrity: sha512-0gNmv4qpS9HaN3+40CLBAnKe0ZfyE4ZWo5xKlC1rVrr0ckkEvJvAQqKaHANdFKsGstoxrY4AItZ7kZSGVoVjgg==}
-
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -6231,9 +6194,6 @@ packages:
resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
engines: {node: '>=18'}
- printable-characters@1.0.42:
- resolution: {integrity: sha512-dKp+C4iXWK4vVYZmYSd0KBH5F/h1HoZRsbJ82AVKRO3PEo8L4lBS/vLwhVtpwwuYcoIsVY+1JYKR268yn480uQ==}
-
promise@7.3.1:
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
@@ -6324,13 +6284,13 @@ packages:
resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==}
engines: {node: '>= 0.8'}
- react-dom@19.1.0:
- resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
+ react-dom@19.1.1:
+ resolution: {integrity: sha512-Dlq/5LAZgF0Gaz6yiqZCf6VCcZs1ghAJyrsu84Q/GT0gV+mCxbfmKNoGRKBYMJ8IEdGPqu49YWXD02GCknEDkw==}
peerDependencies:
- react: ^19.1.0
+ react: ^19.1.1
- react@19.1.0:
- resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ react@19.1.1:
+ resolution: {integrity: sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -6398,9 +6358,6 @@ packages:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
- requires-port@1.0.0:
- resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
-
resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
@@ -6428,14 +6385,14 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rolldown-plugin-dts@0.13.13:
- resolution: {integrity: sha512-Nchx9nQoa4IpfQ/BJzodKMvtJ3H3dT322siAJSp3uvQJ+Pi1qgEjOp7hSQwGSQRhaC5gC+9hparbWEH5oiAL9Q==}
+ rolldown-plugin-dts@0.15.3:
+ resolution: {integrity: sha512-qILn8tXV828UpzgSN7R3KeCl1lfc2eRhPJDGO78C6PztEQH51gBTG3tyQDIVIAYY58afhOsWW/zTYpfewTGCdg==}
engines: {node: '>=20.18.0'}
peerDependencies:
'@typescript/native-preview': '>=7.0.0-dev.20250601.1'
rolldown: ^1.0.0-beta.9
typescript: ^5.0.0
- vue-tsc: ~2.2.0
+ vue-tsc: ~3.0.3
peerDependenciesMeta:
'@typescript/native-preview':
optional: true
@@ -6444,12 +6401,8 @@ packages:
vue-tsc:
optional: true
- rolldown@1.0.0-beta.21:
- resolution: {integrity: sha512-pjU+yNElXbreaNNz2EDOPrf5Yj6aoT8cTfd4pViBSdO7Nr0MOqHV0vDR9w3V8venZmjzF4LAfs03Cbl46YsdVw==}
- hasBin: true
-
- rolldown@1.0.0-beta.24:
- resolution: {integrity: sha512-eDyipoOnoHQ5p6INkJ8g31eKGlqPSCAN9PapyOTw5HET4FYIWALZnSgpMZ67mdn+xT3jAsqGidNnBcIM6EAUhA==}
+ rolldown@1.0.0-beta.31:
+ resolution: {integrity: sha512-M2Q+RfG0FMJeSW3RSFTbvtjGVTcQpTQvN247D0EMSsPkpZFoinopR9oAnQiwgogQyzDuvKNnbyCbQQlmNAzSoQ==}
hasBin: true
rollup-plugin-license@3.6.0:
@@ -6458,8 +6411,8 @@ packages:
peerDependencies:
rollup: ^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
- rollup@4.40.1:
- resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==}
+ rollup@4.43.0:
+ resolution: {integrity: sha512-wdN2Kd3Twh8MAEOEJZsuxuLKCsBEo4PVNLK6tQWAn10VhsVewQLzcucMgLolRlhFybGxfclbPeEYBaP6RvUFGg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -6654,12 +6607,15 @@ packages:
shell-exec@1.0.2:
resolution: {integrity: sha512-jyVd+kU2X+mWKMmGhx4fpWbPsjvD53k9ivqetutVW/BQ+WIZoDoP4d8vUMGezV6saZsiNoW2f9GIhg9Dondohg==}
- shell-quote@1.8.2:
- resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ shell-quote@1.8.3:
+ resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
engines: {node: '>= 0.4'}
- shiki@3.7.0:
- resolution: {integrity: sha512-ZcI4UT9n6N2pDuM2n3Jbk0sR4Swzq43nLPgS/4h0E3B/NrFn2HKElrDtceSf8Zx/OWYOo7G1SAtBLypCp+YXqg==}
+ shiki@3.8.1:
+ resolution: {integrity: sha512-+MYIyjwGPCaegbpBeFN9+oOifI8CKiKG3awI/6h3JeT85c//H2wDW/xCJEGuQ5jPqtbboKNqNy+JyX9PYpGwNg==}
+
+ shiki@3.9.2:
+ resolution: {integrity: sha512-t6NKl5e/zGTvw/IyftLcumolgOczhuroqwXngDeMqJ3h3EQiTY/7wmfgPlsmloD8oYfqkEDqxiaH37Pjm1zUhQ==}
side-channel-list@1.0.0:
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
@@ -6684,8 +6640,8 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-git-hooks@2.13.0:
- resolution: {integrity: sha512-N+goiLxlkHJlyaYEglFypzVNMaNplPAk5syu0+OPp/Bk6dwVoXF6FfOw2vO0Dp+JHsBaI+w6cm8TnFl2Hw6tDA==}
+ simple-git-hooks@2.13.1:
+ resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==}
hasBin: true
simple-swizzle@0.2.2:
@@ -6770,9 +6726,6 @@ packages:
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
- stacktracey@2.1.8:
- resolution: {integrity: sha512-Kpij9riA+UNg7TnphqjH7/CzctQ/owJGNbFkfEeve4Z4uxT5+JapVLFXcsurIfN34gnTWZNJ/f7NMG0E8JDzTw==}
-
statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
@@ -6847,8 +6800,8 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
- sugarss@5.0.0:
- resolution: {integrity: sha512-3//knMoF9btXcxHTbMRckIYjkEzSZ6pZjiaZ3wM6OIpUtQ06Uwqc0XgAr6jf+U74cLLTV/BEgmHWoeXPC+NhdQ==}
+ sugarss@5.0.1:
+ resolution: {integrity: sha512-ctS5RYCBVvPoZAnzIaX5QSShK8ZiZxD5HUqSxlusvEMC+QZQIPCPOIJg6aceFX+K2rf4+SH89eu++h1Zmsr2nw==}
engines: {node: '>=18.0'}
peerDependencies:
postcss: ^8.3.3
@@ -6857,6 +6810,10 @@ packages:
resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
engines: {node: '>=16'}
+ supports-color@10.0.0:
+ resolution: {integrity: sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==}
+ engines: {node: '>=18'}
+
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -6873,6 +6830,10 @@ packages:
resolution: {integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==}
engines: {node: '>=16.0.0'}
+ sync-fetch@0.5.2:
+ resolution: {integrity: sha512-6gBqqkHrYvkH65WI2bzrDwrIKmt3U10s4Exnz3dYuE5Ah62FIfNv/F63inrNhu2Nyh3GH5f42GKU3RrSJoaUyQ==}
+ engines: {node: '>=14'}
+
sync-message-port@1.1.3:
resolution: {integrity: sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==}
engines: {node: '>=16.0.0'}
@@ -6961,6 +6922,13 @@ packages:
resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}
engines: {node: '>=6'}
+ tr46@0.0.3:
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
+
+ tree-kill@1.2.2:
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
+ hasBin: true
+
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
@@ -6991,9 +6959,9 @@ packages:
typescript:
optional: true
- tsdown@0.12.9:
- resolution: {integrity: sha512-MfrXm9PIlT3saovtWKf/gCJJ/NQCdE0SiREkdNC+9Qy6UHhdeDPxnkFaBD7xttVUmgp0yUHtGirpoLB+OVLuLA==}
- engines: {node: '>=18.0.0'}
+ tsdown@0.13.3:
+ resolution: {integrity: sha512-3ujweLJB70DdWXX3v7xnzrFhzW1F/6/99XhGeKzh1UCmZ+ttFmF7Czha7VaunA5Dq/u+z4aNz3n4GH748uivYg==}
+ engines: {node: '>=20.19.0'}
hasBin: true
peerDependencies:
'@arethetypeswrong/core': ^0.18.1
@@ -7021,16 +6989,16 @@ packages:
engines: {node: '>=18.0.0'}
hasBin: true
- twoslash-protocol@0.3.1:
- resolution: {integrity: sha512-BMePTL9OkuNISSyyMclBBhV2s9++DiOCyhhCoV5Kaht6eaWLwVjCCUJHY33eZJPsyKeZYS8Wzz0h+XI01VohVw==}
+ twoslash-protocol@0.3.3:
+ resolution: {integrity: sha512-26NXjXEj+2NgytwOjjhFtNpQI7Zgct6PTyLg6JO7fIbO7MIm+kx89IxvBustgBOSKxoWjNBN2LXjNHHMD7+k0g==}
- twoslash-vue@0.3.1:
- resolution: {integrity: sha512-9/PS0/iL2m8G6N2ILdI18sZ8l6ex+W2nN5jIaTpfFPlnY0MOX2G5UxEVs+AuNimM9SwEnwfiIuDY9ubDCIQpSQ==}
+ twoslash-vue@0.3.3:
+ resolution: {integrity: sha512-CoIvzNK9QRJUUTTEzT0bFcf5kJc9wgBQHRcj5VcmhzFvcSdk/hevExeahcSHClpz1eE4EHJtma2+1wbK+GOjeg==}
peerDependencies:
typescript: ^5.5.0
- twoslash@0.3.1:
- resolution: {integrity: sha512-OGqMTGvqXTcb92YQdwGfEdK0nZJA64Aj/ChLOelbl3TfYch2IoBST0Yx4C0LQ7Lzyqm9RpgcpgDxeXQIz4p2Kg==}
+ twoslash@0.3.3:
+ resolution: {integrity: sha512-Yen1RBSYh/NUR6tfK6xT7DsXkBYby7lfp078Q7XoJR5dtAeG9jB5PVL1oF2sZwHapLjaqcZNlw7GSB8himZNsQ==}
peerDependencies:
typescript: ^5.5.0
@@ -7045,12 +7013,12 @@ packages:
type@2.7.3:
resolution: {integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==}
- typescript-eslint@8.35.1:
- resolution: {integrity: sha512-xslJjFzhOmHYQzSB/QTeASAHbjmxOGEP6Coh93TXmUBFQoJ1VU35UHIDmG06Jd6taf3wqqC1ntBnCMeymy5Ovw==}
+ typescript-eslint@8.39.0:
+ resolution: {integrity: sha512-lH8FvtdtzcHJCkMOKnN73LIn6SLTpoojgJqDAxPm1jCR14eWSGPX8ul/gggBdPMk/d5+u9V854vTYQ8T5jF/1Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
typescript@5.7.3:
resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
@@ -7074,9 +7042,9 @@ packages:
undici-types@6.21.0:
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
- undici@5.29.0:
- resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==}
- engines: {node: '>=14.0'}
+ undici@7.12.0:
+ resolution: {integrity: sha512-GrKEsc3ughskmGA9jevVlIOPMiiAHJ4OFUtaAH+NhfTUSiZ1wMPIQqQvAJUrJspFXJt3EBWgpAeoHEDVT1IBug==}
+ engines: {node: '>=20.18.1'}
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
@@ -7173,15 +7141,15 @@ packages:
markdown-it: '>=14'
vite: workspace:*
- vitepress-plugin-llms@1.7.0:
- resolution: {integrity: sha512-J4va/lPTBcrlV5RXmuML8Lg1nzRR8cB1nJszqjITtayOrliR1jDbho31nkzJCdU/SmwdR7PFVQDRwwOTEDdoHA==}
+ vitepress-plugin-llms@1.7.2:
+ resolution: {integrity: sha512-4UxB3PXfRAfzbcKRXizRQajstjmYn1hoFOSCGIQBYyu3qYs9/TEAUe6oLGbiwaDD+wPQ/T1ow59pt2LAMR4/1A==}
- vitepress@2.0.0-alpha.7:
- resolution: {integrity: sha512-75xXvCWymnSgA7BFt1BmiXnusl4aeV4sM6DpIo9sf2OvkNER3cMLWN6xqZrLGu3SNaQccfS5u3ikCqAnA4p70w==}
+ vitepress@2.0.0-alpha.9:
+ resolution: {integrity: sha512-oUdZiT8ZCLf80Nw02Ha+v25aaabwik6iSMTEBXg46bMypNS/5i6AfMgFqpTuR5l3qG9XfNmau/SLT0sRiks2Zg==}
hasBin: true
peerDependencies:
markdown-it-mathjax3: ^4
- oxc-minify: ^0.74.0
+ oxc-minify: ^0.78.0
postcss: ^8
peerDependenciesMeta:
markdown-it-mathjax3:
@@ -7236,8 +7204,8 @@ packages:
typescript:
optional: true
- vue@3.5.17:
- resolution: {integrity: sha512-LbHV3xPN9BeljML+Xctq4lbz2lVHCR6DtbpTf5XIO6gugpXUN49j2QQPcMj086r9+AkJ0FfUT8xjulKKBkkr9g==}
+ vue@3.5.18:
+ resolution: {integrity: sha512-7W4Y4ZbMiQ3SEo+m9lnoNpV9xG7QVMLa+/0RFwwiAVkeYoyGXqWE85jabU4pllJNUzqfLShJ5YLptewhCWUgNA==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -7252,8 +7220,11 @@ packages:
walk-up-path@3.0.1:
resolution: {integrity: sha512-9YlCL/ynK3CTlrSRrDxZvUauLzAswPCrsaCgilqFevUYpeEW0/3ScEjaa3kbW/T0ghhkEr7mv+fpjqn1Y1YuTA==}
- web-features@2.35.3:
- resolution: {integrity: sha512-BKKN56q08Vrw0/sUz0bxWifNvsbfzw0JXrNyIR+rATRWj/+D+A7+zYDM5vHDmTnZaPwu9cNr1Sjhmp+GBxxnrA==}
+ webidl-conversions@3.0.1:
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
+
+ whatwg-url@5.0.0:
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
@@ -7276,8 +7247,8 @@ packages:
wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
- workerd@1.20250617.0:
- resolution: {integrity: sha512-Uv6p0PYUHp/W/aWfUPLkZVAoAjapisM27JJlwcX9wCPTfCfnuegGOxFMvvlYpmNaX4YCwEdLCwuNn3xkpSkuZw==}
+ workerd@1.20250730.0:
+ resolution: {integrity: sha512-w6e0WM2YGfYQGmg0dewZeLUYIxAzMYK1R31vaS4HHHjgT32Xqj0eVQH+leegzY51RZPNCvw5pe8DFmW4MGf8Fg==}
engines: {node: '>=16'}
hasBin: true
@@ -7320,6 +7291,10 @@ packages:
utf-8-validate:
optional: true
+ wsl-utils@0.1.0:
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
+ engines: {node: '>=18'}
+
xml-js@1.6.11:
resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
hasBin: true
@@ -7335,11 +7310,6 @@ packages:
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
engines: {node: '>=18'}
- yaml@2.7.0:
- resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
- engines: {node: '>= 14'}
- hasBin: true
-
yaml@2.8.0:
resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
engines: {node: '>= 14.6'}
@@ -7361,8 +7331,11 @@ packages:
resolution: {integrity: sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==}
engines: {node: '>=18'}
- youch@3.3.4:
- resolution: {integrity: sha512-UeVBXie8cA35DS6+nBkls68xaBBXCye0CNznrhszZjTbRVnJKQuNsyLKBTTL4ln1o1rh2PKtv35twV7irj5SEg==}
+ youch-core@0.3.3:
+ resolution: {integrity: sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==}
+
+ youch@4.1.0-beta.10:
+ resolution: {integrity: sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==}
zimmerframe@1.1.2:
resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==}
@@ -7377,110 +7350,6 @@ snapshots:
'@adobe/css-tools@4.3.3': {}
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)':
- dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
- - search-insights
-
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)':
- dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)
- transitivePeerDependencies:
- - '@algolia/client-search'
- - algoliasearch
-
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)':
- dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)
- '@algolia/client-search': 5.20.3
- algoliasearch: 5.20.3
-
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)':
- dependencies:
- '@algolia/client-search': 5.20.3
- algoliasearch: 5.20.3
-
- '@algolia/client-abtesting@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/client-analytics@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/client-common@5.20.3': {}
-
- '@algolia/client-insights@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/client-personalization@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/client-query-suggestions@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/client-search@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/ingestion@1.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/monitoring@1.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/recommend@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- '@algolia/requester-browser-xhr@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
-
- '@algolia/requester-fetch@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
-
- '@algolia/requester-node-http@5.20.3':
- dependencies:
- '@algolia/client-common': 5.20.3
-
'@alloc/quick-lru@5.2.0': {}
'@ampproject/remapping@2.3.0':
@@ -7516,7 +7385,7 @@ snapshots:
'@babel/parser': 7.28.0
'@babel/template': 7.27.2
'@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.1
convert-source-map: 2.0.0
debug: 4.4.1
gensync: 1.0.0-beta.2
@@ -7528,7 +7397,7 @@ snapshots:
'@babel/generator@7.27.5':
dependencies:
'@babel/parser': 7.28.0
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.29
jsesc: 3.1.0
@@ -7536,18 +7405,18 @@ snapshots:
'@babel/generator@7.28.0':
dependencies:
'@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.1
'@jridgewell/gen-mapping': 0.3.12
'@jridgewell/trace-mapping': 0.3.29
jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.27.1':
dependencies:
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
'@babel/helper-compilation-targets@7.27.2':
dependencies:
@@ -7592,15 +7461,15 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.28.0
- '@babel/types': 7.27.7
+ '@babel/traverse': 7.27.7
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.27.1':
dependencies:
'@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
@@ -7615,7 +7484,7 @@ snapshots:
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
'@babel/helper-plugin-utils@7.27.1': {}
@@ -7633,14 +7502,14 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.27.7
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
'@babel/traverse': 7.27.7
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
@@ -7654,14 +7523,14 @@ snapshots:
dependencies:
'@babel/template': 7.27.2
'@babel/traverse': 7.27.7
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
transitivePeerDependencies:
- supports-color
'@babel/helpers@7.27.6':
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.1
'@babel/parser@7.27.5':
dependencies:
@@ -7669,7 +7538,7 @@ snapshots:
'@babel/parser@7.28.0':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.1
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -7992,7 +7861,7 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.28.0(@babel/core@7.28.0)':
+ '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
@@ -8114,7 +7983,7 @@ snapshots:
'@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.0)
'@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.0)
'@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.0)
- '@babel/plugin-transform-regenerator': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.28.0)
'@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.0)
'@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.0)
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0)
@@ -8130,7 +7999,7 @@ snapshots:
babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.0)
babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.0)
babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.0)
- core-js-compat: 3.43.0
+ core-js-compat: 3.44.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -8142,13 +8011,13 @@ snapshots:
'@babel/types': 7.27.7
esutils: 2.0.3
- '@babel/runtime@7.27.6': {}
+ '@babel/runtime@7.28.2': {}
'@babel/template@7.27.2':
dependencies:
'@babel/code-frame': 7.27.1
'@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.1
'@babel/traverse@7.27.7':
dependencies:
@@ -8169,7 +8038,7 @@ snapshots:
'@babel/helper-globals': 7.28.0
'@babel/parser': 7.28.0
'@babel/template': 7.27.2
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.1
debug: 4.4.1
transitivePeerDependencies:
- supports-color
@@ -8179,7 +8048,12 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/types@7.28.0':
+ '@babel/types@7.28.1':
+ dependencies:
+ '@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
@@ -8197,19 +8071,19 @@ snapshots:
picocolors: 1.1.1
sisteransi: 1.0.5
- '@cloudflare/workerd-darwin-64@1.20250617.0':
+ '@cloudflare/workerd-darwin-64@1.20250730.0':
optional: true
- '@cloudflare/workerd-darwin-arm64@1.20250617.0':
+ '@cloudflare/workerd-darwin-arm64@1.20250730.0':
optional: true
- '@cloudflare/workerd-linux-64@1.20250617.0':
+ '@cloudflare/workerd-linux-64@1.20250730.0':
optional: true
- '@cloudflare/workerd-linux-arm64@1.20250617.0':
+ '@cloudflare/workerd-linux-arm64@1.20250730.0':
optional: true
- '@cloudflare/workerd-windows-64@1.20250617.0':
+ '@cloudflare/workerd-windows-64@1.20250730.0':
optional: true
'@conventional-changelog/git-client@2.5.1(conventional-commits-filter@5.0.0)(conventional-commits-parser@6.1.0)':
@@ -8225,31 +8099,9 @@ snapshots:
dependencies:
'@jridgewell/trace-mapping': 0.3.9
- '@docsearch/css@3.9.0': {}
+ '@docsearch/css@4.0.0-beta.5': {}
- '@docsearch/js@3.9.0(@algolia/client-search@5.20.3)(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@docsearch/react': 3.9.0(@algolia/client-search@5.20.3)(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- preact: 10.26.2
- transitivePeerDependencies:
- - '@algolia/client-search'
- - '@types/react'
- - react
- - react-dom
- - search-insights
-
- '@docsearch/react@3.9.0(@algolia/client-search@5.20.3)(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.20.3)(algoliasearch@5.20.3)
- '@docsearch/css': 3.9.0
- algoliasearch: 5.20.3
- optionalDependencies:
- '@types/react': 19.1.8
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- transitivePeerDependencies:
- - '@algolia/client-search'
+ '@docsearch/js@4.0.0-beta.5': {}
'@emnapi/core@1.4.3':
dependencies:
@@ -8257,16 +8109,32 @@ snapshots:
tslib: 2.8.1
optional: true
+ '@emnapi/core@1.4.5':
+ dependencies:
+ '@emnapi/wasi-threads': 1.0.4
+ tslib: 2.8.1
+ optional: true
+
'@emnapi/runtime@1.4.3':
dependencies:
tslib: 2.8.1
optional: true
+ '@emnapi/runtime@1.4.5':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@emnapi/wasi-threads@1.0.2':
dependencies:
tslib: 2.8.1
optional: true
+ '@emnapi/wasi-threads@1.0.4':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@esbuild/aix-ppc64@0.25.0':
optional: true
@@ -8342,9 +8210,9 @@ snapshots:
'@esbuild/win32-x64@0.25.0':
optional: true
- '@eslint-community/eslint-utils@4.7.0(eslint@9.30.1(jiti@2.4.2))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.32.0(jiti@2.4.2))':
dependencies:
- eslint: 9.30.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -8359,7 +8227,7 @@ snapshots:
'@eslint/config-helpers@0.3.0': {}
- '@eslint/core@0.14.0':
+ '@eslint/core@0.15.1':
dependencies:
'@types/json-schema': 7.0.15
@@ -8377,17 +8245,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.30.1': {}
+ '@eslint/js@9.32.0': {}
'@eslint/object-schema@2.1.6': {}
- '@eslint/plugin-kit@0.3.1':
+ '@eslint/plugin-kit@0.3.4':
dependencies:
- '@eslint/core': 0.14.0
+ '@eslint/core': 0.15.1
levn: 0.4.1
- '@fastify/busboy@2.1.1': {}
-
'@floating-ui/core@1.6.9':
dependencies:
'@floating-ui/utils': 0.2.9
@@ -8415,7 +8281,7 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/simple-icons@1.2.40':
+ '@iconify-json/simple-icons@1.2.44':
dependencies:
'@iconify/types': 2.0.0
@@ -8504,7 +8370,7 @@ snapshots:
'@img/sharp-wasm32@0.33.5':
dependencies:
- '@emnapi/runtime': 1.4.3
+ '@emnapi/runtime': 1.4.5
optional: true
'@img/sharp-win32-ia32@0.33.5':
@@ -8564,8 +8430,6 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
- '@mdn/browser-compat-data@6.0.17': {}
-
'@napi-rs/wasm-runtime@0.2.11':
dependencies:
'@emnapi/core': 1.4.3
@@ -8580,6 +8444,13 @@ snapshots:
'@tybys/wasm-util': 0.9.0
optional: true
+ '@napi-rs/wasm-runtime@1.0.1':
+ dependencies:
+ '@emnapi/core': 1.4.5
+ '@emnapi/runtime': 1.4.5
+ '@tybys/wasm-util': 0.10.0
+ optional: true
+
'@node-rs/bcrypt-android-arm-eabi@1.10.7':
optional: true
@@ -8653,13 +8524,11 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.0
- '@oxc-project/runtime@0.75.0': {}
-
- '@oxc-project/runtime@0.75.1': {}
+ '@oxc-project/runtime@0.80.0': {}
- '@oxc-project/types@0.75.0': {}
+ '@oxc-project/types@0.77.0': {}
- '@oxc-project/types@0.75.1': {}
+ '@oxc-project/types@0.80.0': {}
'@parcel/watcher-android-arm64@2.5.1':
optional: true
@@ -8729,246 +8598,255 @@ snapshots:
'@polka/url@1.0.0-next.28': {}
- '@publint/pack@0.1.2': {}
-
- '@quansync/fs@0.1.3':
+ '@poppinss/colors@4.1.5':
dependencies:
- quansync: 0.2.10
-
- '@rolldown/binding-darwin-arm64@1.0.0-beta.21':
- optional: true
+ kleur: 4.1.5
- '@rolldown/binding-darwin-arm64@1.0.0-beta.24':
- optional: true
-
- '@rolldown/binding-darwin-x64@1.0.0-beta.21':
- optional: true
-
- '@rolldown/binding-darwin-x64@1.0.0-beta.24':
- optional: true
+ '@poppinss/dumper@0.6.4':
+ dependencies:
+ '@poppinss/colors': 4.1.5
+ '@sindresorhus/is': 7.0.2
+ supports-color: 10.0.0
- '@rolldown/binding-freebsd-x64@1.0.0-beta.21':
- optional: true
+ '@poppinss/exception@1.2.2': {}
- '@rolldown/binding-freebsd-x64@1.0.0-beta.24':
- optional: true
+ '@publint/pack@0.1.2': {}
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.21':
- optional: true
+ '@quansync/fs@0.1.3':
+ dependencies:
+ quansync: 0.2.10
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.24':
+ '@rolldown/binding-android-arm64@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.21':
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.24':
+ '@rolldown/binding-darwin-x64@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.21':
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.24':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.21':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.24':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.21':
+ '@rolldown/binding-linux-arm64-ohos@1.0.0-beta.31':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.24':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.31':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.21':
- dependencies:
- '@napi-rs/wasm-runtime': 0.2.11
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.31':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.24':
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.31':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.11
+ '@napi-rs/wasm-runtime': 1.0.1
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.21':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.31':
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.24':
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.31':
optional: true
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.21':
- optional: true
-
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.24':
- optional: true
-
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.21':
- optional: true
-
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.24':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.31':
optional: true
'@rolldown/pluginutils@1.0.0-beta.19': {}
- '@rolldown/pluginutils@1.0.0-beta.21': {}
+ '@rolldown/pluginutils@1.0.0-beta.31': {}
- '@rolldown/pluginutils@1.0.0-beta.24': {}
-
- '@rollup/plugin-alias@5.1.1(rollup@4.40.1)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.43.0)':
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.43.0
- '@rollup/plugin-commonjs@28.0.6(rollup@4.40.1)':
+ '@rollup/plugin-commonjs@28.0.6(rollup@4.43.0)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.43.0)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.4.6(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.3)
is-reference: 1.2.1
magic-string: 0.30.17
- picomatch: 4.0.2
+ picomatch: 4.0.3
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.43.0
- '@rollup/plugin-dynamic-import-vars@2.1.4(rollup@4.40.1)':
+ '@rollup/plugin-dynamic-import-vars@2.1.4(rollup@4.43.0)':
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.40.1)
+ '@rollup/pluginutils': 5.2.0(rollup@4.43.0)
astring: 1.9.0
estree-walker: 2.0.2
magic-string: 0.30.17
tinyglobby: 0.2.14
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.43.0
- '@rollup/pluginutils@5.2.0(rollup@4.40.1)':
+ '@rollup/pluginutils@5.2.0(rollup@4.43.0)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
- picomatch: 4.0.2
+ picomatch: 4.0.3
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.43.0
- '@rollup/rollup-android-arm-eabi@4.40.1':
+ '@rollup/rollup-android-arm-eabi@4.43.0':
optional: true
- '@rollup/rollup-android-arm64@4.40.1':
+ '@rollup/rollup-android-arm64@4.43.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.1':
+ '@rollup/rollup-darwin-arm64@4.43.0':
optional: true
- '@rollup/rollup-darwin-x64@4.40.1':
+ '@rollup/rollup-darwin-x64@4.43.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.1':
+ '@rollup/rollup-freebsd-arm64@4.43.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.1':
+ '@rollup/rollup-freebsd-x64@4.43.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.43.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.43.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
+ '@rollup/rollup-linux-arm64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.1':
+ '@rollup/rollup-linux-arm64-musl@4.43.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
+ '@rollup/rollup-linux-loongarch64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
+ '@rollup/rollup-linux-riscv64-musl@4.43.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
+ '@rollup/rollup-linux-s390x-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.1':
+ '@rollup/rollup-linux-x64-gnu@4.43.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.1':
+ '@rollup/rollup-linux-x64-musl@4.43.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
+ '@rollup/rollup-win32-arm64-msvc@4.43.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
+ '@rollup/rollup-win32-ia32-msvc@4.43.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.1':
+ '@rollup/rollup-win32-x64-msvc@4.43.0':
optional: true
'@sec-ant/readable-stream@0.4.1': {}
- '@shikijs/core@3.7.0':
+ '@shikijs/core@3.8.1':
dependencies:
- '@shikijs/types': 3.7.0
+ '@shikijs/types': 3.8.1
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
- '@shikijs/engine-javascript@3.7.0':
+ '@shikijs/core@3.9.2':
dependencies:
- '@shikijs/types': 3.7.0
+ '@shikijs/types': 3.9.2
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+ hast-util-to-html: 9.0.5
+
+ '@shikijs/engine-javascript@3.8.1':
+ dependencies:
+ '@shikijs/types': 3.8.1
+ '@shikijs/vscode-textmate': 10.0.2
+ oniguruma-to-es: 4.3.3
+
+ '@shikijs/engine-javascript@3.9.2':
+ dependencies:
+ '@shikijs/types': 3.9.2
'@shikijs/vscode-textmate': 10.0.2
oniguruma-to-es: 4.3.3
- '@shikijs/engine-oniguruma@3.7.0':
+ '@shikijs/engine-oniguruma@3.8.1':
+ dependencies:
+ '@shikijs/types': 3.8.1
+ '@shikijs/vscode-textmate': 10.0.2
+
+ '@shikijs/engine-oniguruma@3.9.2':
dependencies:
- '@shikijs/types': 3.7.0
+ '@shikijs/types': 3.9.2
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/langs@3.7.0':
+ '@shikijs/langs@3.8.1':
dependencies:
- '@shikijs/types': 3.7.0
+ '@shikijs/types': 3.8.1
- '@shikijs/themes@3.7.0':
+ '@shikijs/langs@3.9.2':
dependencies:
- '@shikijs/types': 3.7.0
+ '@shikijs/types': 3.9.2
- '@shikijs/transformers@3.7.0':
+ '@shikijs/themes@3.8.1':
dependencies:
- '@shikijs/core': 3.7.0
- '@shikijs/types': 3.7.0
+ '@shikijs/types': 3.8.1
- '@shikijs/twoslash@3.7.0(typescript@5.7.3)':
+ '@shikijs/themes@3.9.2':
dependencies:
- '@shikijs/core': 3.7.0
- '@shikijs/types': 3.7.0
- twoslash: 0.3.1(typescript@5.7.3)
+ '@shikijs/types': 3.9.2
+
+ '@shikijs/transformers@3.8.1':
+ dependencies:
+ '@shikijs/core': 3.8.1
+ '@shikijs/types': 3.8.1
+
+ '@shikijs/twoslash@3.9.2(typescript@5.7.3)':
+ dependencies:
+ '@shikijs/core': 3.9.2
+ '@shikijs/types': 3.9.2
+ twoslash: 0.3.3(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@shikijs/types@3.7.0':
+ '@shikijs/types@3.8.1':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
- '@shikijs/vitepress-twoslash@3.7.0(typescript@5.7.3)':
+ '@shikijs/types@3.9.2':
dependencies:
- '@shikijs/twoslash': 3.7.0(typescript@5.7.3)
- floating-vue: 5.2.2(vue@3.5.17(typescript@5.7.3))
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+
+ '@shikijs/vitepress-twoslash@3.9.2(typescript@5.7.3)':
+ dependencies:
+ '@shikijs/twoslash': 3.9.2(typescript@5.7.3)
+ floating-vue: 5.2.2(vue@3.5.18(typescript@5.7.3))
mdast-util-from-markdown: 2.0.2
mdast-util-gfm: 3.1.0
mdast-util-to-hast: 13.2.0
- shiki: 3.7.0
- twoslash: 0.3.1(typescript@5.7.3)
- twoslash-vue: 0.3.1(typescript@5.7.3)
- vue: 3.5.17(typescript@5.7.3)
+ shiki: 3.9.2
+ twoslash: 0.3.3(typescript@5.7.3)
+ twoslash-vue: 0.3.3(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
transitivePeerDependencies:
- '@nuxt/kit'
- supports-color
@@ -8979,14 +8857,18 @@ snapshots:
'@simple-libs/child-process-utils@1.0.1':
dependencies:
'@simple-libs/stream-utils': 1.1.0
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@simple-libs/stream-utils@1.1.0':
dependencies:
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
+
+ '@sindresorhus/is@7.0.2': {}
'@sindresorhus/merge-streams@4.0.0': {}
+ '@speed-highlight/core@1.2.7': {}
+
'@tailwindcss/node@4.1.11':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -9066,6 +8948,11 @@ snapshots:
tailwindcss: 4.1.11
vite: link:packages/vite
+ '@tybys/wasm-util@0.10.0':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@tybys/wasm-util@0.9.0':
dependencies:
tslib: 2.8.1
@@ -9099,7 +8986,7 @@ snapshots:
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/chai@5.2.2':
dependencies:
@@ -9107,13 +8994,13 @@ snapshots:
'@types/connect@3.4.38':
dependencies:
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/convert-source-map@2.0.3': {}
'@types/cross-spawn@6.0.6':
dependencies:
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/debug@4.1.12':
dependencies:
@@ -9129,11 +9016,11 @@ snapshots:
'@types/etag@1.8.4':
dependencies:
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/express-serve-static-core@5.0.6':
dependencies:
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/qs': 6.9.18
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -9164,13 +9051,13 @@ snapshots:
'@types/ms@2.1.0': {}
- '@types/node@22.16.0':
+ '@types/node@22.17.0':
dependencies:
undici-types: 6.21.0
'@types/normalize-package-data@2.4.4': {}
- '@types/picomatch@4.0.0': {}
+ '@types/picomatch@4.0.2': {}
'@types/pnpapi@0.0.5': {}
@@ -9178,28 +9065,28 @@ snapshots:
'@types/range-parser@1.2.7': {}
- '@types/react-dom@19.1.6(@types/react@19.1.8)':
+ '@types/react-dom@19.1.7(@types/react@19.1.9)':
dependencies:
- '@types/react': 19.1.8
+ '@types/react': 19.1.9
- '@types/react@19.1.8':
+ '@types/react@19.1.9':
dependencies:
csstype: 3.1.3
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/send': 0.17.4
'@types/stylus@0.48.43':
dependencies:
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
'@types/unist@3.0.3': {}
@@ -9207,17 +9094,17 @@ snapshots:
'@types/ws@8.18.1':
dependencies:
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
- '@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/eslint-plugin@8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/scope-manager': 8.35.1
- '@typescript-eslint/type-utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.35.1
- eslint: 9.30.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/scope-manager': 8.39.0
+ '@typescript-eslint/type-utils': 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/visitor-keys': 8.39.0
+ eslint: 9.32.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 7.0.4
natural-compare: 1.4.0
@@ -9226,42 +9113,43 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.35.1
- '@typescript-eslint/types': 8.35.1
- '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.7.3)
- '@typescript-eslint/visitor-keys': 8.35.1
+ '@typescript-eslint/scope-manager': 8.39.0
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.7.3)
+ '@typescript-eslint/visitor-keys': 8.39.0
debug: 4.4.1
- eslint: 9.30.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.4.2)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.35.1(typescript@5.7.3)':
+ '@typescript-eslint/project-service@8.39.0(typescript@5.7.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.7.3)
- '@typescript-eslint/types': 8.35.1
+ '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.7.3)
+ '@typescript-eslint/types': 8.39.0
debug: 4.4.1
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.35.1':
+ '@typescript-eslint/scope-manager@8.39.0':
dependencies:
- '@typescript-eslint/types': 8.35.1
- '@typescript-eslint/visitor-keys': 8.35.1
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/visitor-keys': 8.39.0
- '@typescript-eslint/tsconfig-utils@8.35.1(typescript@5.7.3)':
+ '@typescript-eslint/tsconfig-utils@8.39.0(typescript@5.7.3)':
dependencies:
typescript: 5.7.3
- '@typescript-eslint/type-utils@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/type-utils@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.7.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
debug: 4.4.1
- eslint: 9.30.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.4.2)
ts-api-utils: 2.1.0(typescript@5.7.3)
typescript: 5.7.3
transitivePeerDependencies:
@@ -9269,14 +9157,14 @@ snapshots:
'@typescript-eslint/types@8.35.0': {}
- '@typescript-eslint/types@8.35.1': {}
+ '@typescript-eslint/types@8.39.0': {}
- '@typescript-eslint/typescript-estree@8.35.1(typescript@5.7.3)':
+ '@typescript-eslint/typescript-estree@8.39.0(typescript@5.7.3)':
dependencies:
- '@typescript-eslint/project-service': 8.35.1(typescript@5.7.3)
- '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.7.3)
- '@typescript-eslint/types': 8.35.1
- '@typescript-eslint/visitor-keys': 8.35.1
+ '@typescript-eslint/project-service': 8.39.0(typescript@5.7.3)
+ '@typescript-eslint/tsconfig-utils': 8.39.0(typescript@5.7.3)
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/visitor-keys': 8.39.0
debug: 4.4.1
fast-glob: 3.3.3
is-glob: 4.0.3
@@ -9287,20 +9175,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)':
+ '@typescript-eslint/utils@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1(jiti@2.4.2))
- '@typescript-eslint/scope-manager': 8.35.1
- '@typescript-eslint/types': 8.35.1
- '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.7.3)
- eslint: 9.30.1(jiti@2.4.2)
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.39.0
+ '@typescript-eslint/types': 8.39.0
+ '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.7.3)
+ eslint: 9.32.0(jiti@2.4.2)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.35.1':
+ '@typescript-eslint/visitor-keys@8.39.0':
dependencies:
- '@typescript-eslint/types': 8.35.1
+ '@typescript-eslint/types': 8.39.0
eslint-visitor-keys: 4.2.1
'@typescript/vfs@1.6.1(typescript@5.7.3)':
@@ -9373,11 +9261,30 @@ snapshots:
'@vitejs/longfilename-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa@file:playground/optimize-deps/longfilename': {}
- '@vitejs/plugin-vue@6.0.0(vite@packages+vite)(vue@3.5.17(typescript@5.7.3))':
+ '@vitejs/plugin-legacy@https://pkg.pr.new/vitejs/rolldown-vite/@vitejs/plugin-legacy@b19b90a(terser@5.43.1)(vite@packages+vite)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.0)
+ '@babel/preset-env': 7.28.0(@babel/core@7.28.0)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.0)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.0)
+ browserslist: 4.25.1
+ browserslist-to-esbuild: 2.1.1(browserslist@4.25.1)
+ core-js: 3.45.0
+ magic-string: 0.30.17
+ regenerator-runtime: 0.14.1
+ systemjs: 6.15.1
+ terser: 5.43.1
+ vite: link:packages/vite
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vitejs/plugin-vue@6.0.0(vite@packages+vite)(vue@3.5.18(typescript@5.7.3))':
dependencies:
'@rolldown/pluginutils': 1.0.0-beta.19
vite: link:packages/vite
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
'@vitejs/release-scripts@1.6.0(conventional-commits-filter@5.0.0)':
dependencies:
@@ -9481,7 +9388,7 @@ snapshots:
dependencies:
slash3: slash@3.0.0
slash5: slash@5.1.0
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
transitivePeerDependencies:
- typescript
@@ -9489,7 +9396,7 @@ snapshots:
dependencies:
slash3: slash@3.0.0
slash5: slash@5.1.0
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
transitivePeerDependencies:
- typescript
@@ -9545,6 +9452,8 @@ snapshots:
'@vitejs/test-module-condition@file:playground/ssr-deps/module-condition': {}
+ '@vitejs/test-module-sync@file:playground/ssr-resolve/pkg-module-sync': {}
+
'@vitejs/test-multi-entry-dep@file:playground/optimize-missing-deps/multi-entry-dep': {}
'@vitejs/test-nested-exclude@file:playground/optimize-deps/nested-exclude':
@@ -9647,11 +9556,11 @@ snapshots:
loupe: 3.1.4
tinyrainbow: 2.0.0
- '@volar/language-core@2.4.11':
+ '@volar/language-core@2.4.20':
dependencies:
- '@volar/source-map': 2.4.11
+ '@volar/source-map': 2.4.20
- '@volar/source-map@2.4.11': {}
+ '@volar/source-map@2.4.20': {}
'@vue/compiler-core@3.4.38':
dependencies:
@@ -9661,10 +9570,10 @@ snapshots:
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-core@3.5.17':
+ '@vue/compiler-core@3.5.18':
dependencies:
'@babel/parser': 7.28.0
- '@vue/shared': 3.5.17
+ '@vue/shared': 3.5.18
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.1
@@ -9674,10 +9583,10 @@ snapshots:
'@vue/compiler-core': 3.4.38
'@vue/shared': 3.4.38
- '@vue/compiler-dom@3.5.17':
+ '@vue/compiler-dom@3.5.18':
dependencies:
- '@vue/compiler-core': 3.5.17
- '@vue/shared': 3.5.17
+ '@vue/compiler-core': 3.5.18
+ '@vue/shared': 3.5.18
'@vue/compiler-sfc@3.4.38':
dependencies:
@@ -9691,13 +9600,13 @@ snapshots:
postcss: 8.5.6
source-map-js: 1.2.1
- '@vue/compiler-sfc@3.5.17':
+ '@vue/compiler-sfc@3.5.18':
dependencies:
'@babel/parser': 7.28.0
- '@vue/compiler-core': 3.5.17
- '@vue/compiler-dom': 3.5.17
- '@vue/compiler-ssr': 3.5.17
- '@vue/shared': 3.5.17
+ '@vue/compiler-core': 3.5.18
+ '@vue/compiler-dom': 3.5.18
+ '@vue/compiler-ssr': 3.5.18
+ '@vue/shared': 3.5.18
estree-walker: 2.0.2
magic-string: 0.30.17
postcss: 8.5.6
@@ -9708,10 +9617,10 @@ snapshots:
'@vue/compiler-dom': 3.4.38
'@vue/shared': 3.4.38
- '@vue/compiler-ssr@3.5.17':
+ '@vue/compiler-ssr@3.5.18':
dependencies:
- '@vue/compiler-dom': 3.5.17
- '@vue/shared': 3.5.17
+ '@vue/compiler-dom': 3.5.18
+ '@vue/shared': 3.5.18
'@vue/compiler-vue2@2.7.16':
dependencies:
@@ -9727,7 +9636,7 @@ snapshots:
'@vue/devtools-kit@7.7.7':
dependencies:
'@vue/devtools-shared': 7.7.7
- birpc: 2.4.0
+ birpc: 2.5.0
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
@@ -9738,16 +9647,16 @@ snapshots:
dependencies:
rfdc: 1.4.1
- '@vue/language-core@2.2.4(typescript@5.7.3)':
+ '@vue/language-core@3.0.3(typescript@5.7.3)':
dependencies:
- '@volar/language-core': 2.4.11
- '@vue/compiler-dom': 3.5.17
+ '@volar/language-core': 2.4.20
+ '@vue/compiler-dom': 3.5.18
'@vue/compiler-vue2': 2.7.16
- '@vue/shared': 3.5.17
- alien-signals: 1.0.13
- minimatch: 9.0.5
+ '@vue/shared': 3.5.18
+ alien-signals: 2.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
+ picomatch: 4.0.3
optionalDependencies:
typescript: 5.7.3
@@ -9755,19 +9664,19 @@ snapshots:
dependencies:
'@vue/shared': 3.4.38
- '@vue/reactivity@3.5.17':
+ '@vue/reactivity@3.5.18':
dependencies:
- '@vue/shared': 3.5.17
+ '@vue/shared': 3.5.18
'@vue/runtime-core@3.4.38':
dependencies:
'@vue/reactivity': 3.4.38
'@vue/shared': 3.4.38
- '@vue/runtime-core@3.5.17':
+ '@vue/runtime-core@3.5.18':
dependencies:
- '@vue/reactivity': 3.5.17
- '@vue/shared': 3.5.17
+ '@vue/reactivity': 3.5.18
+ '@vue/shared': 3.5.18
'@vue/runtime-dom@3.4.38':
dependencies:
@@ -9776,50 +9685,50 @@ snapshots:
'@vue/shared': 3.4.38
csstype: 3.1.3
- '@vue/runtime-dom@3.5.17':
+ '@vue/runtime-dom@3.5.18':
dependencies:
- '@vue/reactivity': 3.5.17
- '@vue/runtime-core': 3.5.17
- '@vue/shared': 3.5.17
+ '@vue/reactivity': 3.5.18
+ '@vue/runtime-core': 3.5.18
+ '@vue/shared': 3.5.18
csstype: 3.1.3
- '@vue/server-renderer@3.4.38(vue@3.5.17(typescript@5.7.3))':
+ '@vue/server-renderer@3.4.38(vue@3.5.18(typescript@5.7.3))':
dependencies:
'@vue/compiler-ssr': 3.4.38
'@vue/shared': 3.4.38
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
- '@vue/server-renderer@3.5.17(vue@3.5.17(typescript@5.7.3))':
+ '@vue/server-renderer@3.5.18(vue@3.5.18(typescript@5.7.3))':
dependencies:
- '@vue/compiler-ssr': 3.5.17
- '@vue/shared': 3.5.17
- vue: 3.5.17(typescript@5.7.3)
+ '@vue/compiler-ssr': 3.5.18
+ '@vue/shared': 3.5.18
+ vue: 3.5.18(typescript@5.7.3)
'@vue/shared@3.4.38': {}
- '@vue/shared@3.5.17': {}
+ '@vue/shared@3.5.18': {}
- '@vueuse/core@13.4.0(vue@3.5.17(typescript@5.7.3))':
+ '@vueuse/core@13.5.0(vue@3.5.18(typescript@5.7.3))':
dependencies:
'@types/web-bluetooth': 0.0.21
- '@vueuse/metadata': 13.4.0
- '@vueuse/shared': 13.4.0(vue@3.5.17(typescript@5.7.3))
- vue: 3.5.17(typescript@5.7.3)
+ '@vueuse/metadata': 13.5.0
+ '@vueuse/shared': 13.5.0(vue@3.5.18(typescript@5.7.3))
+ vue: 3.5.18(typescript@5.7.3)
- '@vueuse/integrations@13.4.0(axios@1.10.0)(focus-trap@7.6.5)(vue@3.5.17(typescript@5.7.3))':
+ '@vueuse/integrations@13.5.0(axios@1.11.0)(focus-trap@7.6.5)(vue@3.5.18(typescript@5.7.3))':
dependencies:
- '@vueuse/core': 13.4.0(vue@3.5.17(typescript@5.7.3))
- '@vueuse/shared': 13.4.0(vue@3.5.17(typescript@5.7.3))
- vue: 3.5.17(typescript@5.7.3)
+ '@vueuse/core': 13.5.0(vue@3.5.18(typescript@5.7.3))
+ '@vueuse/shared': 13.5.0(vue@3.5.18(typescript@5.7.3))
+ vue: 3.5.18(typescript@5.7.3)
optionalDependencies:
- axios: 1.10.0
+ axios: 1.11.0
focus-trap: 7.6.5
- '@vueuse/metadata@13.4.0': {}
+ '@vueuse/metadata@13.5.0': {}
- '@vueuse/shared@13.4.0(vue@3.5.17(typescript@5.7.3))':
+ '@vueuse/shared@13.5.0(vue@3.5.18(typescript@5.7.3))':
dependencies:
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
accepts@2.0.0:
dependencies:
@@ -9845,23 +9754,7 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- algoliasearch@5.20.3:
- dependencies:
- '@algolia/client-abtesting': 5.20.3
- '@algolia/client-analytics': 5.20.3
- '@algolia/client-common': 5.20.3
- '@algolia/client-insights': 5.20.3
- '@algolia/client-personalization': 5.20.3
- '@algolia/client-query-suggestions': 5.20.3
- '@algolia/client-search': 5.20.3
- '@algolia/ingestion': 1.20.3
- '@algolia/monitoring': 1.20.3
- '@algolia/recommend': 5.20.3
- '@algolia/requester-browser-xhr': 5.20.3
- '@algolia/requester-fetch': 5.20.3
- '@algolia/requester-node-http': 5.20.3
-
- alien-signals@1.0.13: {}
+ alien-signals@2.0.5: {}
ansi-escapes@7.0.0:
dependencies:
@@ -9900,17 +9793,13 @@ snapshots:
artichokie@0.3.2: {}
- as-table@1.0.55:
- dependencies:
- printable-characters: 1.0.42
-
asap@2.0.6: {}
assert-never@1.4.0: {}
assertion-error@2.0.1: {}
- ast-kit@2.1.0:
+ ast-kit@2.1.1:
dependencies:
'@babel/parser': 7.28.0
pathe: 2.0.3
@@ -9929,10 +9818,10 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- axios@1.10.0:
+ axios@1.11.0:
dependencies:
follow-redirects: 1.15.9(debug@4.4.1)
- form-data: 4.0.2
+ form-data: 4.0.4
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
@@ -9950,7 +9839,7 @@ snapshots:
dependencies:
'@babel/core': 7.28.0
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0)
- core-js-compat: 3.43.0
+ core-js-compat: 3.44.0
transitivePeerDependencies:
- supports-color
@@ -9963,24 +9852,21 @@ snapshots:
babel-walk@3.0.0-canary-5:
dependencies:
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
bail@2.0.2: {}
balanced-match@1.0.2: {}
- baseline-browser-mapping@2.4.4:
- dependencies:
- '@mdn/browser-compat-data': 6.0.17
- web-features: 2.35.3
+ baseline-browser-mapping@2.5.7: {}
- bignumber.js@9.3.0: {}
+ bignumber.js@9.3.1: {}
binary-extensions@2.3.0: {}
birpc@0.2.19: {}
- birpc@2.4.0: {}
+ birpc@2.5.0: {}
body-parser@2.2.0:
dependencies:
@@ -9996,12 +9882,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- brace-expansion@1.1.12:
+ brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
- brace-expansion@2.0.2:
+ brace-expansion@2.0.1:
dependencies:
balanced-match: 1.0.2
@@ -10043,7 +9929,7 @@ snapshots:
call-bound@1.0.3:
dependencies:
call-bind-apply-helpers: 1.0.2
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
callsites@3.1.0: {}
@@ -10180,7 +10066,7 @@ snapshots:
constantinople@4.0.1:
dependencies:
'@babel/parser': 7.28.0
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
content-disposition@1.0.0:
dependencies:
@@ -10226,6 +10112,8 @@ snapshots:
cookie@0.7.1: {}
+ cookie@1.0.2: {}
+
copy-anything@2.0.6:
dependencies:
is-what: 3.14.1
@@ -10234,11 +10122,11 @@ snapshots:
dependencies:
is-what: 4.1.16
- core-js-compat@3.43.0:
+ core-js-compat@3.44.0:
dependencies:
browserslist: 4.25.1
- core-js@3.43.0: {}
+ core-js@3.45.0: {}
cors@2.8.5:
dependencies:
@@ -10262,8 +10150,6 @@ snapshots:
es5-ext: 0.10.64
type: 2.7.3
- data-uri-to-buffer@2.0.2: {}
-
de-indent@1.0.2: {}
debug@2.6.9:
@@ -10328,7 +10214,7 @@ snapshots:
dotenv@16.6.1: {}
- dotenv@17.0.1: {}
+ dotenv@17.2.1: {}
dts-resolver@2.1.1: {}
@@ -10372,6 +10258,8 @@ snapshots:
prr: 1.0.1
optional: true
+ error-stack-parser-es@1.0.5: {}
+
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
@@ -10385,7 +10273,7 @@ snapshots:
es-set-tostringtag@2.1.0:
dependencies:
es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
has-tostringtag: 1.0.2
hasown: 2.0.2
@@ -10443,9 +10331,9 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-compat-utils@0.5.1(eslint@9.30.1(jiti@2.4.2)):
+ eslint-compat-utils@0.5.1(eslint@9.32.0(jiti@2.4.2)):
dependencies:
- eslint: 9.30.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.4.2)
semver: 7.7.2
eslint-import-context@0.1.9(unrs-resolver@1.9.2):
@@ -10455,19 +10343,19 @@ snapshots:
optionalDependencies:
unrs-resolver: 1.9.2
- eslint-plugin-es-x@7.8.0(eslint@9.30.1(jiti@2.4.2)):
+ eslint-plugin-es-x@7.8.0(eslint@9.32.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- eslint: 9.30.1(jiti@2.4.2)
- eslint-compat-utils: 0.5.1(eslint@9.30.1(jiti@2.4.2))
+ eslint: 9.32.0(jiti@2.4.2)
+ eslint-compat-utils: 0.5.1(eslint@9.32.0(jiti@2.4.2))
- eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.30.1(jiti@2.4.2)):
+ eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.32.0(jiti@2.4.2)):
dependencies:
'@typescript-eslint/types': 8.35.0
comment-parser: 1.4.1
debug: 4.4.1
- eslint: 9.30.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.4.2)
eslint-import-context: 0.1.9(unrs-resolver@1.9.2)
is-glob: 4.0.3
minimatch: 10.0.1
@@ -10475,31 +10363,31 @@ snapshots:
stable-hash-x: 0.2.0
unrs-resolver: 1.9.2
optionalDependencies:
- '@typescript-eslint/utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
transitivePeerDependencies:
- supports-color
- eslint-plugin-n@17.21.0(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3):
+ eslint-plugin-n@17.21.3(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.2))
enhanced-resolve: 5.18.1
- eslint: 9.30.1(jiti@2.4.2)
- eslint-plugin-es-x: 7.8.0(eslint@9.30.1(jiti@2.4.2))
+ eslint: 9.32.0(jiti@2.4.2)
+ eslint-plugin-es-x: 7.8.0(eslint@9.32.0(jiti@2.4.2))
get-tsconfig: 4.10.1
globals: 15.15.0
+ globrex: 0.1.2
ignore: 5.3.2
- minimatch: 9.0.5
semver: 7.7.2
ts-declaration-location: 1.0.7(typescript@5.7.3)
transitivePeerDependencies:
- typescript
- eslint-plugin-regexp@2.9.0(eslint@9.30.1(jiti@2.4.2)):
+ eslint-plugin-regexp@2.9.1(eslint@9.32.0(jiti@2.4.2)):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
- eslint: 9.30.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.4.2)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
@@ -10514,16 +10402,16 @@ snapshots:
eslint-visitor-keys@4.2.1: {}
- eslint@9.30.1(jiti@2.4.2):
+ eslint@9.32.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.30.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.21.0
'@eslint/config-helpers': 0.3.0
- '@eslint/core': 0.14.0
+ '@eslint/core': 0.15.1
'@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.30.1
- '@eslint/plugin-kit': 0.3.1
+ '@eslint/js': 9.32.0
+ '@eslint/plugin-kit': 0.3.4
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
'@humanwhocodes/retry': 0.4.2
@@ -10596,8 +10484,6 @@ snapshots:
d: 1.0.2
es5-ext: 0.10.64
- eventemitter3@4.0.7: {}
-
eventemitter3@5.0.1: {}
execa@8.0.1:
@@ -10699,9 +10585,9 @@ snapshots:
dependencies:
walk-up-path: 3.0.1
- fdir@6.4.6(picomatch@4.0.2):
+ fdir@6.4.6(picomatch@4.0.3):
optionalDependencies:
- picomatch: 4.0.2
+ picomatch: 4.0.3
feed@5.1.0:
dependencies:
@@ -10752,13 +10638,18 @@ snapshots:
flatted: 3.3.3
keyv: 4.5.4
+ flat-cache@5.0.0:
+ dependencies:
+ flatted: 3.3.3
+ keyv: 4.5.4
+
flatted@3.3.3: {}
- floating-vue@5.2.2(vue@3.5.17(typescript@5.7.3)):
+ floating-vue@5.2.2(vue@3.5.18(typescript@5.7.3)):
dependencies:
'@floating-ui/dom': 1.1.1
- vue: 3.5.17(typescript@5.7.3)
- vue-resize: 2.0.0-alpha.1(vue@3.5.17(typescript@5.7.3))
+ vue: 3.5.18(typescript@5.7.3)
+ vue-resize: 2.0.0-alpha.1(vue@3.5.18(typescript@5.7.3))
focus-trap@7.6.5:
dependencies:
@@ -10773,11 +10664,12 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- form-data@4.0.2:
+ form-data@4.0.4:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
format@0.2.2: {}
@@ -10816,15 +10708,23 @@ snapshots:
hasown: 2.0.2
math-intrinsics: 1.1.0
- get-proto@1.0.1:
+ get-intrinsic@1.3.0:
dependencies:
- dunder-proto: 1.0.1
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
es-object-atoms: 1.1.1
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
- get-source@2.0.12:
+ get-proto@1.0.1:
dependencies:
- data-uri-to-buffer: 2.0.2
- source-map: 0.6.1
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
get-stream@8.0.1: {}
@@ -10866,6 +10766,8 @@ snapshots:
globals@16.3.0: {}
+ globrex@0.1.2: {}
+
good-listener@1.2.2:
dependencies:
delegate: 3.2.0
@@ -10944,13 +10846,12 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
- http-proxy@1.18.1(patch_hash=8071c23044f455271f4d4074ae4c7b81beec17a03aefd158d5f4edd4ef751c11)(debug@4.4.1):
+ http-proxy-3@1.20.10:
dependencies:
- eventemitter3: 4.0.7
+ debug: 4.4.1
follow-redirects: 1.15.9(debug@4.4.1)
- requires-port: 1.0.0
transitivePeerDependencies:
- - debug
+ - supports-color
human-signals@5.0.0: {}
@@ -10971,6 +10872,8 @@ snapshots:
image-size@0.5.5:
optional: true
+ image-size@2.0.2: {}
+
immutable@5.0.3: {}
import-fresh@3.3.1:
@@ -11119,18 +11022,20 @@ snapshots:
kleur@3.0.3: {}
+ kleur@4.1.5: {}
+
kolorist@1.8.0: {}
- launch-editor-middleware@2.10.0:
+ launch-editor-middleware@2.11.0:
dependencies:
- launch-editor: 2.10.0
+ launch-editor: 2.11.0
- launch-editor@2.10.0:
+ launch-editor@2.11.0:
dependencies:
picocolors: 1.1.1
- shell-quote: 1.8.2
+ shell-quote: 1.8.3
- less@4.3.0:
+ less@4.4.0:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
@@ -11202,13 +11107,13 @@ snapshots:
dependencies:
uc.micro: 2.1.0
- lint-staged@16.1.2:
+ lint-staged@16.1.4:
dependencies:
chalk: 5.4.1
commander: 14.0.0
debug: 4.4.1
lilconfig: 3.1.3
- listr2: 8.3.3
+ listr2: 9.0.1
micromatch: 4.0.8
nano-spawn: 1.0.2
pidtree: 0.6.0
@@ -11217,7 +11122,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- listr2@8.3.3:
+ listr2@9.0.1:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -11281,6 +11186,15 @@ snapshots:
mark.js@8.11.1: {}
+ markdown-it-image-size@14.7.0(markdown-it@14.1.0):
+ dependencies:
+ flat-cache: 5.0.0
+ image-size: 2.0.2
+ markdown-it: 14.1.0
+ sync-fetch: 0.5.2
+ transitivePeerDependencies:
+ - encoding
+
markdown-it@14.1.0:
dependencies:
argparse: 2.0.1
@@ -11601,7 +11515,7 @@ snapshots:
mimic-function@5.0.1: {}
- miniflare@4.20250617.5:
+ miniflare@4.20250730.0:
dependencies:
'@cspotcode/source-map-support': 0.8.1
acorn: 8.14.0
@@ -11610,10 +11524,10 @@ snapshots:
glob-to-regexp: 0.4.1
sharp: 0.33.5
stoppable: 1.1.0
- undici: 5.29.0
- workerd: 1.20250617.0
+ undici: 7.12.0
+ workerd: 1.20250730.0
ws: 8.18.0
- youch: 3.3.4
+ youch: 4.1.0-beta.10
zod: 3.22.3
transitivePeerDependencies:
- bufferutil
@@ -11621,7 +11535,7 @@ snapshots:
minimatch@10.0.1:
dependencies:
- brace-expansion: 2.0.2
+ brace-expansion: 2.0.1
minimatch@10.0.3:
dependencies:
@@ -11629,11 +11543,11 @@ snapshots:
minimatch@3.1.2:
dependencies:
- brace-expansion: 1.1.12
+ brace-expansion: 1.1.11
minimatch@9.0.5:
dependencies:
- brace-expansion: 2.0.2
+ brace-expansion: 2.0.1
minimist@1.2.8: {}
@@ -11668,8 +11582,6 @@ snapshots:
muggle-string@0.4.1: {}
- mustache@4.2.0: {}
-
mz@2.7.0:
dependencies:
any-promise: 1.3.0
@@ -11703,6 +11615,10 @@ snapshots:
node-addon-api@7.1.1:
optional: true
+ node-fetch@2.7.0:
+ dependencies:
+ whatwg-url: 5.0.0
+
node-releases@2.0.19: {}
normalize-package-data@7.0.0:
@@ -11760,12 +11676,12 @@ snapshots:
regex: 6.0.1
regex-recursion: 6.0.2
- open@10.1.2:
+ open@10.2.0:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
- is-wsl: 3.1.0
+ wsl-utils: 0.1.0
optionator@0.9.4:
dependencies:
@@ -11800,7 +11716,7 @@ snapshots:
parse-node-version@1.0.1: {}
- parse5@7.3.0:
+ parse5@8.0.0:
dependencies:
entities: 6.0.0
@@ -11843,6 +11759,8 @@ snapshots:
picomatch@4.0.2: {}
+ picomatch@4.0.3: {}
+
pidtree@0.6.0: {}
pify@2.3.0: {}
@@ -11858,11 +11776,11 @@ snapshots:
mlly: 1.7.4
pathe: 2.0.3
- playwright-chromium@1.53.2:
+ playwright-chromium@1.54.2:
dependencies:
- playwright-core: 1.53.2
+ playwright-core: 1.54.2
- playwright-core@1.53.2: {}
+ playwright-core@1.54.2: {}
postcss-import@15.1.0(postcss@8.5.6):
dependencies:
@@ -11886,7 +11804,7 @@ snapshots:
postcss-load-config@4.0.2(postcss@8.5.6):
dependencies:
lilconfig: 3.1.3
- yaml: 2.7.0
+ yaml: 2.8.0
optionalDependencies:
postcss: 8.5.6
@@ -11960,8 +11878,6 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.26.2: {}
-
prelude-ls@1.2.1: {}
premove@4.0.0: {}
@@ -11972,8 +11888,6 @@ snapshots:
dependencies:
parse-ms: 4.0.0
- printable-characters@1.0.42: {}
-
promise@7.3.1:
dependencies:
asap: 2.0.6
@@ -12092,12 +12006,12 @@ snapshots:
iconv-lite: 0.6.3
unpipe: 1.0.0
- react-dom@19.1.0(react@19.1.0):
+ react-dom@19.1.1(react@19.1.1):
dependencies:
- react: 19.1.0
+ react: 19.1.1
scheduler: 0.26.0
- react@19.1.0: {}
+ react@19.1.1: {}
read-cache@1.0.0:
dependencies:
@@ -12186,8 +12100,6 @@ snapshots:
require-directory@2.1.1: {}
- requires-port@1.0.0: {}
-
resolve-from@4.0.0: {}
resolve-pkg-maps@1.0.0: {}
@@ -12209,118 +12121,83 @@ snapshots:
rfdc@1.4.1: {}
- rolldown-plugin-dts@0.13.13(rolldown@1.0.0-beta.21)(typescript@5.7.3):
+ rolldown-plugin-dts@0.15.3(rolldown@1.0.0-beta.31)(typescript@5.7.3):
dependencies:
- '@babel/generator': 7.27.5
- '@babel/parser': 7.28.0
- '@babel/types': 7.27.7
- ast-kit: 2.1.0
- birpc: 2.4.0
- debug: 4.4.1
- dts-resolver: 2.1.1
- get-tsconfig: 4.10.1
- rolldown: 1.0.0-beta.21
- optionalDependencies:
- typescript: 5.7.3
- transitivePeerDependencies:
- - oxc-resolver
- - supports-color
-
- rolldown-plugin-dts@0.13.13(rolldown@1.0.0-beta.24)(typescript@5.7.3):
- dependencies:
- '@babel/generator': 7.27.5
+ '@babel/generator': 7.28.0
'@babel/parser': 7.28.0
- '@babel/types': 7.27.7
- ast-kit: 2.1.0
- birpc: 2.4.0
+ '@babel/types': 7.28.2
+ ast-kit: 2.1.1
+ birpc: 2.5.0
debug: 4.4.1
dts-resolver: 2.1.1
get-tsconfig: 4.10.1
- rolldown: 1.0.0-beta.24
+ rolldown: 1.0.0-beta.31
optionalDependencies:
typescript: 5.7.3
transitivePeerDependencies:
- oxc-resolver
- supports-color
- rolldown@1.0.0-beta.21:
+ rolldown@1.0.0-beta.31:
dependencies:
- '@oxc-project/runtime': 0.75.0
- '@oxc-project/types': 0.75.0
- '@rolldown/pluginutils': 1.0.0-beta.21
- ansis: 4.1.0
- optionalDependencies:
- '@rolldown/binding-darwin-arm64': 1.0.0-beta.21
- '@rolldown/binding-darwin-x64': 1.0.0-beta.21
- '@rolldown/binding-freebsd-x64': 1.0.0-beta.21
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.21
- '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.21
- '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.21
- '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.21
- '@rolldown/binding-linux-x64-musl': 1.0.0-beta.21
- '@rolldown/binding-wasm32-wasi': 1.0.0-beta.21
- '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.21
- '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.21
- '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.21
-
- rolldown@1.0.0-beta.24:
- dependencies:
- '@oxc-project/runtime': 0.75.1
- '@oxc-project/types': 0.75.1
- '@rolldown/pluginutils': 1.0.0-beta.24
+ '@oxc-project/runtime': 0.80.0
+ '@oxc-project/types': 0.80.0
+ '@rolldown/pluginutils': 1.0.0-beta.31
ansis: 4.1.0
optionalDependencies:
- '@rolldown/binding-darwin-arm64': 1.0.0-beta.24
- '@rolldown/binding-darwin-x64': 1.0.0-beta.24
- '@rolldown/binding-freebsd-x64': 1.0.0-beta.24
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.24
- '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.24
- '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.24
- '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.24
- '@rolldown/binding-linux-x64-musl': 1.0.0-beta.24
- '@rolldown/binding-wasm32-wasi': 1.0.0-beta.24
- '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.24
- '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.24
- '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.24
-
- rollup-plugin-license@3.6.0(picomatch@4.0.2)(rollup@4.40.1):
+ '@rolldown/binding-android-arm64': 1.0.0-beta.31
+ '@rolldown/binding-darwin-arm64': 1.0.0-beta.31
+ '@rolldown/binding-darwin-x64': 1.0.0-beta.31
+ '@rolldown/binding-freebsd-x64': 1.0.0-beta.31
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.31
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.31
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.31
+ '@rolldown/binding-linux-arm64-ohos': 1.0.0-beta.31
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.31
+ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.31
+ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.31
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.31
+ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.31
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.31
+
+ rollup-plugin-license@3.6.0(picomatch@4.0.3)(rollup@4.43.0):
dependencies:
commenting: 1.1.0
- fdir: 6.4.6(picomatch@4.0.2)
+ fdir: 6.4.6(picomatch@4.0.3)
lodash: 4.17.21
magic-string: 0.30.17
moment: 2.30.1
package-name-regex: 2.0.6
- rollup: 4.40.1
+ rollup: 4.43.0
spdx-expression-validate: 2.0.0
spdx-satisfies: 5.0.1
transitivePeerDependencies:
- picomatch
- rollup@4.40.1:
+ rollup@4.43.0:
dependencies:
'@types/estree': 1.0.7
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.1
- '@rollup/rollup-android-arm64': 4.40.1
- '@rollup/rollup-darwin-arm64': 4.40.1
- '@rollup/rollup-darwin-x64': 4.40.1
- '@rollup/rollup-freebsd-arm64': 4.40.1
- '@rollup/rollup-freebsd-x64': 4.40.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.1
- '@rollup/rollup-linux-arm-musleabihf': 4.40.1
- '@rollup/rollup-linux-arm64-gnu': 4.40.1
- '@rollup/rollup-linux-arm64-musl': 4.40.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-musl': 4.40.1
- '@rollup/rollup-linux-s390x-gnu': 4.40.1
- '@rollup/rollup-linux-x64-gnu': 4.40.1
- '@rollup/rollup-linux-x64-musl': 4.40.1
- '@rollup/rollup-win32-arm64-msvc': 4.40.1
- '@rollup/rollup-win32-ia32-msvc': 4.40.1
- '@rollup/rollup-win32-x64-msvc': 4.40.1
+ '@rollup/rollup-android-arm-eabi': 4.43.0
+ '@rollup/rollup-android-arm64': 4.43.0
+ '@rollup/rollup-darwin-arm64': 4.43.0
+ '@rollup/rollup-darwin-x64': 4.43.0
+ '@rollup/rollup-freebsd-arm64': 4.43.0
+ '@rollup/rollup-freebsd-x64': 4.43.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.43.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.43.0
+ '@rollup/rollup-linux-arm64-gnu': 4.43.0
+ '@rollup/rollup-linux-arm64-musl': 4.43.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.43.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.43.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.43.0
+ '@rollup/rollup-linux-riscv64-musl': 4.43.0
+ '@rollup/rollup-linux-s390x-gnu': 4.43.0
+ '@rollup/rollup-linux-x64-gnu': 4.43.0
+ '@rollup/rollup-linux-x64-musl': 4.43.0
+ '@rollup/rollup-win32-arm64-msvc': 4.43.0
+ '@rollup/rollup-win32-ia32-msvc': 4.43.0
+ '@rollup/rollup-win32-x64-msvc': 4.43.0
fsevents: 2.3.3
router@2.2.0:
@@ -12521,16 +12398,27 @@ snapshots:
shell-exec@1.0.2: {}
- shell-quote@1.8.2: {}
+ shell-quote@1.8.3: {}
- shiki@3.7.0:
+ shiki@3.8.1:
dependencies:
- '@shikijs/core': 3.7.0
- '@shikijs/engine-javascript': 3.7.0
- '@shikijs/engine-oniguruma': 3.7.0
- '@shikijs/langs': 3.7.0
- '@shikijs/themes': 3.7.0
- '@shikijs/types': 3.7.0
+ '@shikijs/core': 3.8.1
+ '@shikijs/engine-javascript': 3.8.1
+ '@shikijs/engine-oniguruma': 3.8.1
+ '@shikijs/langs': 3.8.1
+ '@shikijs/themes': 3.8.1
+ '@shikijs/types': 3.8.1
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
+
+ shiki@3.9.2:
+ dependencies:
+ '@shikijs/core': 3.9.2
+ '@shikijs/engine-javascript': 3.9.2
+ '@shikijs/engine-oniguruma': 3.9.2
+ '@shikijs/langs': 3.9.2
+ '@shikijs/themes': 3.9.2
+ '@shikijs/types': 3.9.2
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -12566,7 +12454,7 @@ snapshots:
signal-exit@4.1.0: {}
- simple-git-hooks@2.13.0: {}
+ simple-git-hooks@2.13.1: {}
simple-swizzle@0.2.2:
dependencies:
@@ -12647,11 +12535,6 @@ snapshots:
stackback@0.0.2: {}
- stacktracey@2.1.8:
- dependencies:
- as-table: 1.0.55
- get-source: 2.0.12
-
statuses@1.5.0: {}
statuses@2.0.1: {}
@@ -12727,7 +12610,7 @@ snapshots:
pirates: 4.0.6
ts-interface-checker: 0.1.13
- sugarss@5.0.0(postcss@8.5.6):
+ sugarss@5.0.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -12735,6 +12618,8 @@ snapshots:
dependencies:
copy-anything: 3.0.5
+ supports-color@10.0.0: {}
+
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -12749,6 +12634,12 @@ snapshots:
dependencies:
sync-message-port: 1.1.3
+ sync-fetch@0.5.2:
+ dependencies:
+ node-fetch: 2.7.0
+ transitivePeerDependencies:
+ - encoding
+
sync-message-port@1.1.3: {}
systemjs@6.15.1: {}
@@ -12820,8 +12711,8 @@ snapshots:
tinyglobby@0.2.14:
dependencies:
- fdir: 6.4.6(picomatch@4.0.2)
- picomatch: 4.0.2
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
tinypool@1.1.1: {}
@@ -12843,6 +12734,10 @@ snapshots:
totalist@3.0.1: {}
+ tr46@0.0.3: {}
+
+ tree-kill@1.2.2: {}
+
trim-lines@3.0.1: {}
trough@2.2.0: {}
@@ -12853,7 +12748,7 @@ snapshots:
ts-declaration-location@1.0.7(typescript@5.7.3):
dependencies:
- picomatch: 4.0.2
+ picomatch: 4.0.3
typescript: 5.7.3
ts-interface-checker@0.1.13: {}
@@ -12862,7 +12757,7 @@ snapshots:
optionalDependencies:
typescript: 5.7.3
- tsdown@0.12.9(publint@0.3.12)(typescript@5.7.3):
+ tsdown@0.13.3(publint@0.3.12)(typescript@5.7.3):
dependencies:
ansis: 4.1.0
cac: 6.7.14
@@ -12871,11 +12766,12 @@ snapshots:
diff: 8.0.2
empathic: 2.0.0
hookable: 5.5.3
- rolldown: 1.0.0-beta.21
- rolldown-plugin-dts: 0.13.13(rolldown@1.0.0-beta.21)(typescript@5.7.3)
+ rolldown: 1.0.0-beta.31
+ rolldown-plugin-dts: 0.15.3(rolldown@1.0.0-beta.31)(typescript@5.7.3)
semver: 7.7.2
tinyexec: 1.0.1
tinyglobby: 0.2.14
+ tree-kill: 1.2.2
unconfig: 7.3.2
optionalDependencies:
publint: 0.3.12
@@ -12895,21 +12791,21 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- twoslash-protocol@0.3.1: {}
+ twoslash-protocol@0.3.3: {}
- twoslash-vue@0.3.1(typescript@5.7.3):
+ twoslash-vue@0.3.3(typescript@5.7.3):
dependencies:
- '@vue/language-core': 2.2.4(typescript@5.7.3)
- twoslash: 0.3.1(typescript@5.7.3)
- twoslash-protocol: 0.3.1
+ '@vue/language-core': 3.0.3(typescript@5.7.3)
+ twoslash: 0.3.3(typescript@5.7.3)
+ twoslash-protocol: 0.3.3
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
- twoslash@0.3.1(typescript@5.7.3):
+ twoslash@0.3.3(typescript@5.7.3):
dependencies:
'@typescript/vfs': 1.6.1(typescript@5.7.3)
- twoslash-protocol: 0.3.1
+ twoslash-protocol: 0.3.3
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
@@ -12926,12 +12822,13 @@ snapshots:
type@2.7.3: {}
- typescript-eslint@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3):
+ typescript-eslint@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3))(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/parser': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.30.1(jiti@2.4.2))(typescript@5.7.3)
- eslint: 9.30.1(jiti@2.4.2)
+ '@typescript-eslint/eslint-plugin': 8.39.0(@typescript-eslint/parser@8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/parser': 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
+ '@typescript-eslint/typescript-estree': 8.39.0(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.39.0(eslint@9.32.0(jiti@2.4.2))(typescript@5.7.3)
+ eslint: 9.32.0(jiti@2.4.2)
typescript: 5.7.3
transitivePeerDependencies:
- supports-color
@@ -12954,9 +12851,7 @@ snapshots:
undici-types@6.21.0: {}
- undici@5.29.0:
- dependencies:
- '@fastify/busboy': 2.1.1
+ undici@7.12.0: {}
unicode-canonical-property-names-ecmascript@2.0.1: {}
@@ -13094,7 +12989,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vitepress-plugin-llms@1.7.0:
+ vitepress-plugin-llms@1.7.2:
dependencies:
byte-size: 9.0.1
gray-matter: 4.0.3
@@ -13113,30 +13008,28 @@ snapshots:
- '@75lb/nature'
- supports-color
- vitepress@2.0.0-alpha.7(@algolia/client-search@5.20.3)(@types/react@19.1.8)(axios@1.10.0)(postcss@8.5.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.7.3):
+ vitepress@2.0.0-alpha.9(axios@1.11.0)(postcss@8.5.6)(typescript@5.7.3):
dependencies:
- '@docsearch/css': 3.9.0
- '@docsearch/js': 3.9.0(@algolia/client-search@5.20.3)(@types/react@19.1.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@iconify-json/simple-icons': 1.2.40
- '@shikijs/core': 3.7.0
- '@shikijs/transformers': 3.7.0
- '@shikijs/types': 3.7.0
- '@vitejs/plugin-vue': 6.0.0(vite@packages+vite)(vue@3.5.17(typescript@5.7.3))
+ '@docsearch/css': 4.0.0-beta.5
+ '@docsearch/js': 4.0.0-beta.5
+ '@iconify-json/simple-icons': 1.2.44
+ '@shikijs/core': 3.8.1
+ '@shikijs/transformers': 3.8.1
+ '@shikijs/types': 3.8.1
+ '@vitejs/plugin-vue': 6.0.0(vite@packages+vite)(vue@3.5.18(typescript@5.7.3))
'@vue/devtools-api': 7.7.7
- '@vue/shared': 3.5.17
- '@vueuse/core': 13.4.0(vue@3.5.17(typescript@5.7.3))
- '@vueuse/integrations': 13.4.0(axios@1.10.0)(focus-trap@7.6.5)(vue@3.5.17(typescript@5.7.3))
+ '@vue/shared': 3.5.18
+ '@vueuse/core': 13.5.0(vue@3.5.18(typescript@5.7.3))
+ '@vueuse/integrations': 13.5.0(axios@1.11.0)(focus-trap@7.6.5)(vue@3.5.18(typescript@5.7.3))
focus-trap: 7.6.5
mark.js: 8.11.1
minisearch: 7.1.2
- shiki: 3.7.0
+ shiki: 3.8.1
vite: link:packages/vite
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
optionalDependencies:
postcss: 8.5.6
transitivePeerDependencies:
- - '@algolia/client-search'
- - '@types/react'
- async-validator
- axios
- change-case
@@ -13146,14 +13039,11 @@ snapshots:
- jwt-decode
- nprogress
- qrcode
- - react
- - react-dom
- - search-insights
- sortablejs
- typescript
- universal-cookie
- vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.16.0):
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@22.17.0):
dependencies:
'@types/chai': 5.2.2
'@vitest/expect': 3.2.4
@@ -13180,45 +13070,50 @@ snapshots:
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 22.16.0
+ '@types/node': 22.17.0
transitivePeerDependencies:
- msw
- supports-color
void-elements@3.1.0: {}
- vue-resize@2.0.0-alpha.1(vue@3.5.17(typescript@5.7.3)):
+ vue-resize@2.0.0-alpha.1(vue@3.5.18(typescript@5.7.3)):
dependencies:
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
vue@3.4.38(typescript@5.7.3):
dependencies:
'@vue/compiler-dom': 3.4.38
'@vue/compiler-sfc': 3.4.38
'@vue/runtime-dom': 3.4.38
- '@vue/server-renderer': 3.4.38(vue@3.5.17(typescript@5.7.3))
+ '@vue/server-renderer': 3.4.38(vue@3.5.18(typescript@5.7.3))
'@vue/shared': 3.4.38
optionalDependencies:
typescript: 5.7.3
- vue@3.5.17(typescript@5.7.3):
+ vue@3.5.18(typescript@5.7.3):
dependencies:
- '@vue/compiler-dom': 3.5.17
- '@vue/compiler-sfc': 3.5.17
- '@vue/runtime-dom': 3.5.17
- '@vue/server-renderer': 3.5.17(vue@3.5.17(typescript@5.7.3))
- '@vue/shared': 3.5.17
+ '@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.7.3))
+ '@vue/shared': 3.5.18
optionalDependencies:
typescript: 5.7.3
- vuex@4.1.0(vue@3.5.17(typescript@5.7.3)):
+ vuex@4.1.0(vue@3.5.18(typescript@5.7.3)):
dependencies:
'@vue/devtools-api': 6.6.4
- vue: 3.5.17(typescript@5.7.3)
+ vue: 3.5.18(typescript@5.7.3)
walk-up-path@3.0.1: {}
- web-features@2.35.3: {}
+ webidl-conversions@3.0.1: {}
+
+ whatwg-url@5.0.0:
+ dependencies:
+ tr46: 0.0.3
+ webidl-conversions: 3.0.1
which@2.0.2:
dependencies:
@@ -13232,7 +13127,7 @@ snapshots:
with@7.0.2:
dependencies:
'@babel/parser': 7.28.0
- '@babel/types': 7.27.7
+ '@babel/types': 7.28.1
assert-never: 1.4.0
babel-walk: 3.0.0-canary-5
@@ -13240,13 +13135,13 @@ snapshots:
wordwrap@1.0.0: {}
- workerd@1.20250617.0:
+ workerd@1.20250730.0:
optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20250617.0
- '@cloudflare/workerd-darwin-arm64': 1.20250617.0
- '@cloudflare/workerd-linux-64': 1.20250617.0
- '@cloudflare/workerd-linux-arm64': 1.20250617.0
- '@cloudflare/workerd-windows-64': 1.20250617.0
+ '@cloudflare/workerd-darwin-64': 1.20250730.0
+ '@cloudflare/workerd-darwin-arm64': 1.20250730.0
+ '@cloudflare/workerd-linux-64': 1.20250730.0
+ '@cloudflare/workerd-linux-arm64': 1.20250730.0
+ '@cloudflare/workerd-windows-64': 1.20250730.0
wrap-ansi@7.0.0:
dependencies:
@@ -13272,6 +13167,10 @@ snapshots:
ws@8.18.3: {}
+ wsl-utils@0.1.0:
+ dependencies:
+ is-wsl: 3.1.0
+
xml-js@1.6.11:
dependencies:
sax: 1.4.1
@@ -13282,8 +13181,6 @@ snapshots:
yallist@5.0.0: {}
- yaml@2.7.0: {}
-
yaml@2.8.0: {}
yargs-parser@21.1.1: {}
@@ -13302,11 +13199,18 @@ snapshots:
yoctocolors@2.1.1: {}
- youch@3.3.4:
+ youch-core@0.3.3:
dependencies:
- cookie: 0.7.1
- mustache: 4.2.0
- stacktracey: 2.1.8
+ '@poppinss/exception': 1.2.2
+ error-stack-parser-es: 1.0.5
+
+ youch@4.1.0-beta.10:
+ dependencies:
+ '@poppinss/colors': 4.1.5
+ '@poppinss/dumper': 0.6.4
+ '@speed-highlight/core': 1.2.7
+ cookie: 1.0.2
+ youch-core: 0.3.3
zimmerframe@1.1.2: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index dec0978532a75e..fdaa4b83f08d41 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -14,17 +14,12 @@ dedupeInjectedDeps: false
overrides:
vite: 'workspace:*'
patchedDependencies:
- "http-proxy@1.18.1": "patches/http-proxy@1.18.1.patch"
"sirv@3.0.1": "patches/sirv@3.0.1.patch"
"chokidar@3.6.0": "patches/chokidar@3.6.0.patch"
"dotenv-expand@12.0.2": "patches/dotenv-expand@12.0.2.patch"
peerDependencyRules:
allowedVersions:
vite: "*"
- ignoreMissing:
- - "@algolia/client-search"
- - "postcss"
- - "search-insights"
packageExtensions:
sass-embedded:
peerDependencies: