From fedd87a261e34eb720b7d617eb17e2d6e7dcb0c5 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Mon, 14 Sep 2026 00:12:50 +0800 Subject: [PATCH] chore: refresh deps and binding files --- .yarnrc.yml | 6 + index.d.ts | 12 +- index.js | 257 +++++- package.json | 18 +- yarn.lock | 2102 +++++++++++++++++++++++--------------------------- 5 files changed, 1188 insertions(+), 1207 deletions(-) diff --git a/.yarnrc.yml b/.yarnrc.yml index 05b8843..8ea5b45 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -3,3 +3,9 @@ nodeLinker: node-modules npmAuditRegistry: 'https://registry.npmjs.org' yarnPath: .yarn/releases/yarn-4.18.0.cjs + +npmPreapprovedPackages: + - '@napi-rs/*' + - '@oxc-node/*' + - oxlint + - '@oxlint/*' diff --git a/index.d.ts b/index.d.ts index d0bb6ca..73d0a1d 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,5 +1,6 @@ /* auto-generated by NAPI-RS */ /* eslint-disable */ + export declare class AsyncEntry { /** * Create an entry for the given service and username. @@ -228,13 +229,4 @@ export interface LinuxEntryOptions { * Linux only; ignored on other platforms. Requiring a store that is * unavailable on this machine throws instead of falling back. */ -export type LinuxStore = /** - * The freedesktop Secret Service (D-Bus) as provided by gnome-keyring or - * KWallet. Persistent daemon-backed storage. - */ -'secret-service'| -/** - * The Linux kernel keyring via keyutils. In-memory only: credentials - * vanish on reboot. - */ -'keyutils'; +export type LinuxStore = 'secret-service' | 'keyutils' diff --git a/index.js b/index.js index 61c83db..6b49f30 100644 --- a/index.js +++ b/index.js @@ -1,12 +1,8 @@ -// prettier-ignore /* eslint-disable */ // @ts-nocheck /* auto-generated by NAPI-RS */ -const { createRequire } = require('node:module') -require = createRequire(__filename) - -const { readFileSync } = require('node:fs') +const { readFileSync } = require('fs') let nativeBinding = null const loadErrors = [] @@ -36,7 +32,7 @@ const isMuslFromFilesystem = () => { const isMuslFromReport = () => { let report = null - if (typeof process.report?.getReport === 'function') { + if (process.report && typeof process.report.getReport === 'function') { process.report.excludeNetwork = true report = process.report.getReport() } @@ -66,7 +62,7 @@ const isMuslFromChildProcess = () => { function requireNative() { if (process.env.NAPI_RS_NATIVE_LIBRARY_PATH) { try { - nativeBinding = require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH); + return require(process.env.NAPI_RS_NATIVE_LIBRARY_PATH) } catch (err) { loadErrors.push(err) } @@ -108,20 +104,38 @@ function requireNative() { } } else if (process.platform === 'win32') { if (process.arch === 'x64') { - try { - return require('./keyring.win32-x64-msvc.node') - } catch (e) { - loadErrors.push(e) - } - try { - const binding = require('@napi-rs/keyring-win32-x64-msvc') - const bindingPackageVersion = require('@napi-rs/keyring-win32-x64-msvc/package.json').version - if (bindingPackageVersion !== '2.0.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { - throw new Error(`Native binding package version mismatch, expected 2.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + if ((process.config && process.config.variables && process.config.variables.shlib_suffix === 'dll.a') || (process.config && process.config.variables && process.config.variables.node_target_type === 'shared_library')) { + try { + return require('./keyring.win32-x64-gnu.node') + } catch (e) { + loadErrors.push(e) + } + try { + const binding = require('@napi-rs/keyring-win32-x64-gnu') + const bindingPackageVersion = require('@napi-rs/keyring-win32-x64-gnu/package.json').version + if (bindingPackageVersion !== '2.0.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 2.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + } + return binding + } catch (e) { + loadErrors.push(e) + } + } else { + try { + return require('./keyring.win32-x64-msvc.node') + } catch (e) { + loadErrors.push(e) + } + try { + const binding = require('@napi-rs/keyring-win32-x64-msvc') + const bindingPackageVersion = require('@napi-rs/keyring-win32-x64-msvc/package.json').version + if (bindingPackageVersion !== '2.0.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 2.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + } + return binding + } catch (e) { + loadErrors.push(e) } - return binding - } catch (e) { - loadErrors.push(e) } } else if (process.arch === 'ia32') { try { @@ -348,6 +362,40 @@ function requireNative() { loadErrors.push(e) } } + } else if (process.arch === 'loong64') { + if (isMusl()) { + try { + return require('./keyring.linux-loong64-musl.node') + } catch (e) { + loadErrors.push(e) + } + try { + const binding = require('@napi-rs/keyring-linux-loong64-musl') + const bindingPackageVersion = require('@napi-rs/keyring-linux-loong64-musl/package.json').version + if (bindingPackageVersion !== '2.0.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 2.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + } + return binding + } catch (e) { + loadErrors.push(e) + } + } else { + try { + return require('./keyring.linux-loong64-gnu.node') + } catch (e) { + loadErrors.push(e) + } + try { + const binding = require('@napi-rs/keyring-linux-loong64-gnu') + const bindingPackageVersion = require('@napi-rs/keyring-linux-loong64-gnu/package.json').version + if (bindingPackageVersion !== '2.0.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + throw new Error(`Native binding package version mismatch, expected 2.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + } + return binding + } catch (e) { + loadErrors.push(e) + } + } } else if (process.arch === 'riscv64') { if (isMusl()) { try { @@ -474,35 +522,178 @@ function requireNative() { } } -nativeBinding = requireNative() +function createLoadErrorChain(errors) { + return errors.reduce((previous, current) => { + let message + try { + message = + current && typeof current.message === 'string' + ? current.message + : String(current) + } catch { + message = 'Unknown error' + } + const error = new Error(message) + error.cause = previous + return error + }, null) +} -if (!nativeBinding || process.env.NAPI_RS_FORCE_WASI) { - try { - nativeBinding = require('./keyring.wasi.cjs') - } catch (err) { - if (process.env.NAPI_RS_FORCE_WASI) { - loadErrors.push(err) +// NAPI_RS_FORCE_WASI is a tri-state flag: +// unset / any other value → native binding preferred, WASI is only a fallback +// 'true' → prefer WASI, but retain native as a lazy fallback +// 'error' → require WASI without initializing a native fallback +// Treating any non-empty string as truthy (the historical behavior) meant +// NAPI_RS_FORCE_WASI=false, NAPI_RS_FORCE_WASI=0, etc. inadvertently triggered +// the WASI path, causing ENOENT for packages shipped without a .wasi.cjs file. +// +// NAPI_RS_WASI_FLAVOR selects one exact generated flavor and implies strict +// WASI loading. It never crosses into another flavor or falls back to native. +const __napiWasiFlavors = ['wasm32-wasi'] +const __napiWasiFlavor = process.env.NAPI_RS_WASI_FLAVOR +const __napiWasiFlavorRequested = + typeof __napiWasiFlavor === 'string' && __napiWasiFlavor.length > 0 +if ( + __napiWasiFlavorRequested && + __napiWasiFlavors.indexOf(__napiWasiFlavor) === -1 +) { + throw new Error( + 'Unsupported WASI flavor "' + + __napiWasiFlavor + + '". Available flavors: ' + + __napiWasiFlavors.join(', '), + ) +} +const forceWasiError = process.env.NAPI_RS_FORCE_WASI === 'error' +const forceWasi = + process.env.NAPI_RS_FORCE_WASI === 'true' || + forceWasiError || + __napiWasiFlavorRequested + +if (!forceWasi) { + nativeBinding = requireNative() +} + +if (!nativeBinding || forceWasi) { + let wasiBinding = null + let wasiBindingLoaded = false + const wasiBindingErrors = [] + const __napiWasiResolveCandidate = (specifier, isPackage, localArtifacts) => { + try { + require.resolve(specifier) + } catch (resolveError) { + if (!resolveError || resolveError.code !== 'MODULE_NOT_FOUND') { + throw resolveError + } + if (isPackage) { + try { + require.resolve(specifier + '/package.json') + } catch (packageError) { + if (packageError && packageError.code === 'MODULE_NOT_FOUND') { + return resolveError + } + // An exports restriction proves the package exists even when its + // package.json is not public. Preserve the root resolution failure. + throw resolveError + } + // The package exists but its main/export target is broken. + throw resolveError + } + return resolveError + } + if (localArtifacts) { + let artifactError = null + for (let i = 0; i < localArtifacts.length; i++) { + try { + require.resolve(localArtifacts[i]) + return null + } catch (resolveError) { + if (!resolveError || resolveError.code !== 'MODULE_NOT_FOUND') { + throw resolveError + } + artifactError = resolveError + } + } + return artifactError } + return null } - if (!nativeBinding) { + if (!wasiBindingLoaded && (!__napiWasiFlavorRequested || __napiWasiFlavor === 'wasm32-wasi')) { + let candidateError = null + let candidateFailed = false try { - nativeBinding = require('@napi-rs/keyring-wasm32-wasi') + candidateError = __napiWasiResolveCandidate('./keyring.wasi.cjs', false, ['./keyring.wasm32-wasi.debug.wasm', './keyring.wasm32-wasi.wasm']) + candidateFailed = candidateError !== null + if (!candidateFailed) { + wasiBinding = require('./keyring.wasi.cjs') + nativeBinding = wasiBinding + wasiBindingLoaded = true + } } catch (err) { - if (process.env.NAPI_RS_FORCE_WASI) { - loadErrors.push(err) + candidateError = err + candidateFailed = true + } + if (candidateFailed) { + wasiBindingErrors.push(candidateError) + loadErrors.push(candidateError) + } + } + if (!wasiBindingLoaded && (!__napiWasiFlavorRequested || __napiWasiFlavor === 'wasm32-wasi')) { + let candidateError = null + let candidateFailed = false + try { + candidateError = __napiWasiResolveCandidate('@napi-rs/keyring-wasm32-wasi', true, undefined) + candidateFailed = candidateError !== null + if (!candidateFailed) { + if (process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') { + const bindingPackageVersion = require('@napi-rs/keyring-wasm32-wasi/package.json').version + if (bindingPackageVersion !== '2.0.0') { + throw new Error(`WASI binding package version mismatch, expected 2.0.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`) + } + } + wasiBinding = require('@napi-rs/keyring-wasm32-wasi') + nativeBinding = wasiBinding + wasiBindingLoaded = true } + } catch (err) { + candidateError = err + candidateFailed = true + } + if (candidateFailed) { + wasiBindingErrors.push(candidateError) + loadErrors.push(candidateError) } } + if ( + !wasiBindingLoaded && + forceWasi && + !forceWasiError && + !__napiWasiFlavorRequested + ) { + nativeBinding = requireNative() + } + if ((forceWasiError || __napiWasiFlavorRequested) && !wasiBindingLoaded) { + const error = new Error( + __napiWasiFlavorRequested + ? 'WASI binding for flavor "' + __napiWasiFlavor + '" not found' + : 'WASI binding not found and NAPI_RS_FORCE_WASI is set to error', + ) + error.cause = createLoadErrorChain(wasiBindingErrors) + throw error + } } if (!nativeBinding) { if (loadErrors.length > 0) { - throw new Error( + const error = new Error( `Cannot find native binding. ` + `npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). ` + 'Please try `npm i` again after removing both package-lock.json and node_modules directory.', - { cause: loadErrors } ) + // assign instead of the `new Error(message, { cause })` options form, + // which Node < 16.9 silently ignores + error.cause = createLoadErrorChain(loadErrors) + throw error } throw new Error(`Failed to load native binding`) } diff --git a/package.json b/package.json index fdae448..36a90d2 100644 --- a/package.json +++ b/package.json @@ -59,18 +59,18 @@ "version": "napi version" }, "devDependencies": { - "@napi-rs/cli": "^3.1.5", - "@oxc-node/core": "^0.1.0", + "@napi-rs/cli": "^3.9.1", + "@oxc-node/core": "^0.1.1", "@taplo/cli": "^0.7.0", - "@types/node": "^24.3.0", - "ava": "^8.0.0", + "@types/node": "^26.5.1", + "ava": "^8.0.1", "chalk": "^6.0.0", "husky": "^9.1.7", - "lint-staged": "^17.0.0", - "npm-run-all2": "^9.0.0", - "oxlint": "^1.13.0", - "prettier": "^3.6.2", - "typescript": "^7.0.0" + "lint-staged": "^17.5.1", + "npm-run-all2": "^9.0.3", + "oxlint": "^1.82.0", + "prettier": "^3.9.6", + "typescript": "^7.0.2" }, "lint-staged": { "*.@(js|ts|tsx)": [ diff --git a/yarn.lock b/yarn.lock index 4deb344..cf44aa8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5,299 +5,307 @@ __metadata: version: 10 cacheKey: 10c0 -"@emnapi/core@npm:1.9.1": - version: 1.9.1 - resolution: "@emnapi/core@npm:1.9.1" +"@cto.af/wtf8@npm:0.0.5": + version: 0.0.5 + resolution: "@cto.af/wtf8@npm:0.0.5" + checksum: 10c0/b73ebb301b0f1ff0a3b127b5200f0c87deaa69ea0c1cbf5a035ac35d8ff533749e4963b41375c7fcb29d9443990407e864ac009d6c5242d0e0bf9676ab4ae83c + languageName: node + linkType: hard + +"@emnapi/core@npm:1.11.2": + version: 1.11.2 + resolution: "@emnapi/core@npm:1.11.2" dependencies: - "@emnapi/wasi-threads": "npm:1.2.0" + "@emnapi/wasi-threads": "npm:1.2.2" tslib: "npm:^2.4.0" - checksum: 10c0/00e7a99a2bc3ad908ca8272ba861a934da87dffa8797a41316c4a3b571a1e4d2743e2fa14b1a0f131fa4a3c2018ddb601cd2a8cb7f574fa940af696df3c2fe8d + checksum: 10c0/424ca1607f498e524eb58db1095e6cc2082986edfd84a74b116d4e2c6e43b5e9d557ea7f0d7b9adf7f6d5023e25ac2ed6bd08caf0043d3d8602598d79579c2cd languageName: node linkType: hard -"@emnapi/core@npm:^1.4.5": - version: 1.4.5 - resolution: "@emnapi/core@npm:1.4.5" +"@emnapi/core@npm:1.9.2": + version: 1.9.2 + resolution: "@emnapi/core@npm:1.9.2" dependencies: - "@emnapi/wasi-threads": "npm:1.0.4" + "@emnapi/wasi-threads": "npm:1.2.1" tslib: "npm:^2.4.0" - checksum: 10c0/da4a57f65f325d720d0e0d1a9c6618b90c4c43a5027834a110476984e1d47c95ebaed4d316b5dddb9c0ed9a493ffeb97d1934f9677035f336d8a36c1f3b2818f + checksum: 10c0/5500393f953951bad0768fafaa9191f2d938956b20c6d6a79e5ab696a613a25ce6ad23422bc18e86e6ce8deb147619d8d0d7d413a69f84adc01a6633cc353cd9 languageName: node linkType: hard -"@emnapi/runtime@npm:1.9.1": - version: 1.9.1 - resolution: "@emnapi/runtime@npm:1.9.1" +"@emnapi/runtime@npm:1.11.2": + version: 1.11.2 + resolution: "@emnapi/runtime@npm:1.11.2" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/750edca117e0363ab2de10622f8ee60e57d8690c2f29c49704813da5cd627c641798d7f3cb0d953c62fdc71688e02e333ddbf2c1204f38b47e3e40657332a6f5 + checksum: 10c0/d8d500059fe9c0864571c79ce29439c1b6fb44d7ec4ac865a2aaaa7469194e5d91ebdc820cabd37c3d373478b725a8b60771733e4743cfef41fc86d9a1f2eab0 languageName: node linkType: hard -"@emnapi/runtime@npm:^1.4.5": - version: 1.4.5 - resolution: "@emnapi/runtime@npm:1.4.5" +"@emnapi/runtime@npm:1.9.2": + version: 1.9.2 + resolution: "@emnapi/runtime@npm:1.9.2" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/37a0278be5ac81e918efe36f1449875cbafba947039c53c65a1f8fc238001b866446fc66041513b286baaff5d6f9bec667f5164b3ca481373a8d9cb65bfc984b + checksum: 10c0/61c3a59e0c36784558b8d58eb02bd04815aa5fb0dbfbaf84d1b3050a78aa0cc63ea129ae806bd1e48062bfeb7fc36eb0e5431740d62f64ea51bdf426404b8caa languageName: node linkType: hard -"@emnapi/wasi-threads@npm:1.0.4": - version: 1.0.4 - resolution: "@emnapi/wasi-threads@npm:1.0.4" +"@emnapi/wasi-threads@npm:1.2.1": + version: 1.2.1 + resolution: "@emnapi/wasi-threads@npm:1.2.1" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/2c91a53e62f875800baf035c4d42c9c0d18e5afd9a31ca2aac8b435aeaeaeaac386b5b3d0d0e70aa7a5a9852bbe05106b1f680cd82cce03145c703b423d41313 + checksum: 10c0/32fcfa81ab396533b2ec1f4082b1ff779a05d9c836bbbd3f4398405b0e6814c0d9503b7993130e37bc6941dbc1ded49f55e9700ae9ca4e803bab2b5bc5deb331 languageName: node linkType: hard -"@emnapi/wasi-threads@npm:1.2.0": - version: 1.2.0 - resolution: "@emnapi/wasi-threads@npm:1.2.0" +"@emnapi/wasi-threads@npm:1.2.2": + version: 1.2.2 + resolution: "@emnapi/wasi-threads@npm:1.2.2" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/1e3724b5814b06c14782fda87eee9b9aa68af01576c81ffeaefdf621ddb74386e419d5b3b1027b6a8172397729d95a92f814fc4b8d3c224376428faa07a6a01a + checksum: 10c0/f0dc8269d6b20ae5a7c7b36e7a6a333452009d461038ef4febb29da2f3f78c1e2b1576d7e8970a5c5789ed3caedc1f80f5b0c2a5373bdaf8d03b20432bb55747 languageName: node linkType: hard -"@inquirer/checkbox@npm:^4.2.2": - version: 4.2.2 - resolution: "@inquirer/checkbox@npm:4.2.2" +"@inquirer/ansi@npm:^2.0.8": + version: 2.0.8 + resolution: "@inquirer/ansi@npm:2.0.8" + checksum: 10c0/2149a358f6227260815aac389bb0b5aedecc54452ad9c40e8aedcec07e0df91a046771571617d0734d074450637f5edde38752e17e79ede0d2bf657413acf3cb + languageName: node + linkType: hard + +"@inquirer/checkbox@npm:^5.2.5": + version: 5.2.5 + resolution: "@inquirer/checkbox@npm:5.2.5" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/figures": "npm:^1.0.13" - "@inquirer/type": "npm:^3.0.8" - ansi-escapes: "npm:^4.3.2" - yoctocolors-cjs: "npm:^2.1.2" + "@inquirer/ansi": "npm:^2.0.8" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/figures": "npm:^2.0.9" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/d5861d1e6c18ce263b2d88da5c8071857e65e5815409b062919fcfc489598615ccc7df1d32c7348dc2587aed2053ee045cf770612a73ef8a0b08374f969ed388 + checksum: 10c0/d427ef80cda8f955b215e96d1543514311401eba65d7d0643ccca8f1c66f0ff96505f277c19c39110a890b04de66e2078af24df5df54679fdbf859717b8d0a6c languageName: node linkType: hard -"@inquirer/confirm@npm:^5.1.16": - version: 5.1.16 - resolution: "@inquirer/confirm@npm:5.1.16" +"@inquirer/confirm@npm:^6.3.2": + version: 6.3.2 + resolution: "@inquirer/confirm@npm:6.3.2" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/type": "npm:^3.0.8" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/9a54171554404bfc89f2a065bb89282ca7cc69046956943e348c29a6a7c4d263dfbcbb46ad115aef616866083eb42130d05424a4a8ef3b30777a912e7ae20fec + checksum: 10c0/5ed7d94b6d2148f9e71130a6130c4f2f821791ffc1edaac98d2821a185279e1020dbdca9eecb80116fa967f87e57052f3a67fcee1c28ec4ad090cba04f26fcc9 languageName: node linkType: hard -"@inquirer/core@npm:^10.2.0": - version: 10.2.0 - resolution: "@inquirer/core@npm:10.2.0" +"@inquirer/core@npm:^12.0.3": + version: 12.0.3 + resolution: "@inquirer/core@npm:12.0.3" dependencies: - "@inquirer/figures": "npm:^1.0.13" - "@inquirer/type": "npm:^3.0.8" - ansi-escapes: "npm:^4.3.2" + "@inquirer/ansi": "npm:^2.0.8" + "@inquirer/figures": "npm:^2.0.9" + "@inquirer/type": "npm:4.1.1" cli-width: "npm:^4.1.0" - mute-stream: "npm:^2.0.0" + fast-wrap-ansi: "npm:^0.2.0" + mute-stream: "npm:^3.0.0" signal-exit: "npm:^4.1.0" - wrap-ansi: "npm:^6.2.0" - yoctocolors-cjs: "npm:^2.1.2" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/6dc93634dc6005bb7c58522cd80bbf8fb5f756f104445a1916ed7a00dad99e10165a559f5b13e6d141ae744dbe4a5b9e405e10c5986ef7859988de191b3b71f3 + checksum: 10c0/df323f8abb84d5ab8fd290ff2401067a107e22d7172b014068fcba23000838e0c102e7858e09afc58a5d8755dd4a50fafa66d03fd4921d60ec588cb41c61f8c1 languageName: node linkType: hard -"@inquirer/editor@npm:^4.2.18": - version: 4.2.18 - resolution: "@inquirer/editor@npm:4.2.18" +"@inquirer/editor@npm:^5.3.3": + version: 5.3.3 + resolution: "@inquirer/editor@npm:5.3.3" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/external-editor": "npm:^1.0.1" - "@inquirer/type": "npm:^3.0.8" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/external-editor": "npm:^3.0.5" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/a8b48bc692a566cbbf6c3ea3d095d26bef14abfba631958f61cea85b54bcd7a4dbd7aa164a4752f48d7317340ebe126ac4ef6593b12ad6b3b729d4ec99df1fc1 + checksum: 10c0/9b1b1d3de6bf5f8f95616b723908cfde1a05a201126e9fcabb1b04b9baa1077ca3ca9a7a82c6a7e8831d4226fae362f7fccbc70fca3f88b5ccd6dd8fdae81a84 languageName: node linkType: hard -"@inquirer/expand@npm:^4.0.18": - version: 4.0.18 - resolution: "@inquirer/expand@npm:4.0.18" +"@inquirer/expand@npm:^5.1.5": + version: 5.1.5 + resolution: "@inquirer/expand@npm:5.1.5" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/type": "npm:^3.0.8" - yoctocolors-cjs: "npm:^2.1.2" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/9fe1daef1efefdc4760bfe0317e0a765a8defe2f9453230938886ea06abd65c6a7a3eb72dc90ba5bbb82709f6703a271b8f7bb97283b825763a4cd1f68efb8a8 + checksum: 10c0/30791746f2f7ba061daccb2f601d293442b1d3f6b30436bd3b3f47ed2ffcae40b1cd178e6e575237f14e85a9e2e48ca884d7c4d316ae0cfd9d2c1007b8761613 languageName: node linkType: hard -"@inquirer/external-editor@npm:^1.0.1": - version: 1.0.1 - resolution: "@inquirer/external-editor@npm:1.0.1" +"@inquirer/external-editor@npm:^3.0.5": + version: 3.0.5 + resolution: "@inquirer/external-editor@npm:3.0.5" dependencies: - chardet: "npm:^2.1.0" - iconv-lite: "npm:^0.6.3" + chardet: "npm:^2.1.1" + iconv-lite: "npm:^0.7.2" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/bdac4395e0bba7065d39b141d618bfc06369f246c402c511396a5238baf2657f3038ccba8438521a49e5cb602f4302b9d1f46b52b647b27af2c9911720022118 + checksum: 10c0/66ad34d4d6d6b8e1e26691b32a67309b066b74ed7eb5f0b8b8d87e20d095316c7f6cf9bcae1fa3e85ad655d4741b713bbd6dce355413ffb4bac2b3a927fa0a82 languageName: node linkType: hard -"@inquirer/figures@npm:^1.0.13": - version: 1.0.13 - resolution: "@inquirer/figures@npm:1.0.13" - checksum: 10c0/23700a4a0627963af5f51ef4108c338ae77bdd90393164b3fdc79a378586e1f5531259882b7084c690167bf5a36e83033e45aca0321570ba810890abe111014f +"@inquirer/figures@npm:^2.0.9": + version: 2.0.9 + resolution: "@inquirer/figures@npm:2.0.9" + checksum: 10c0/24198eb05c7ba32cf5b2eeee0a641b708fcd23f78ac6c568d18858191a40aa456e1626c52e088df1882ebe2e34c0f4cd08c78ca3c506429d4032f0a8833230a2 languageName: node linkType: hard -"@inquirer/input@npm:^4.2.2": - version: 4.2.2 - resolution: "@inquirer/input@npm:4.2.2" +"@inquirer/input@npm:^5.1.6": + version: 5.1.6 + resolution: "@inquirer/input@npm:5.1.6" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/type": "npm:^3.0.8" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/7d8f202eb0e970841005026634596ffdb3b68a9c6b599841ad46b25841e277d2950582e5eeddd69b168d7ef52631cf15782922844731d01d3808a018461d8f98 + checksum: 10c0/aaf2a5db5e4ce9d45905ec4006d8772e49785682fa4cd0be66fe8324eaaffc77b9ef47ad5656d617c90be2f2a395c10e3a22e65f4b20ed09a0b5453161fa6125 languageName: node linkType: hard -"@inquirer/number@npm:^3.0.18": - version: 3.0.18 - resolution: "@inquirer/number@npm:3.0.18" +"@inquirer/number@npm:^4.2.3": + version: 4.2.3 + resolution: "@inquirer/number@npm:4.2.3" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/type": "npm:^3.0.8" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/dbaead7813bba1978ef429eb485bb02e55e9047194f2337313592546b4504b06ea18b37919e23ea53388f5314dc96ea038e4599c7f396344910b17b3d9a159cb + checksum: 10c0/912017dabde45b1150e8c7746471e19e728ea73cf9229e7d84e4d4d0462743e95c5f70d166f3b2f148af0984de3cd769376343b9f4c021a19c9cf47a99b3af88 languageName: node linkType: hard -"@inquirer/password@npm:^4.0.18": - version: 4.0.18 - resolution: "@inquirer/password@npm:4.0.18" +"@inquirer/password@npm:^5.2.2": + version: 5.2.2 + resolution: "@inquirer/password@npm:5.2.2" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/type": "npm:^3.0.8" - ansi-escapes: "npm:^4.3.2" + "@inquirer/ansi": "npm:^2.0.8" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/7d05940633f74d1fa3850884ce71b32c3790bc421439cd77366553df39ec910f64dcdb2084776ee9d9a10d248390801700113ca3d8b0b02b1517531109798814 + checksum: 10c0/ada1fc4371bba4582ec98ff091e778ad6ba14a9582a2132f7cfbe4759a3ea3653c48217179910fd9c5d4334c3b6c8d3ac7928e04df49cc2be2c11a6592c898b9 languageName: node linkType: hard -"@inquirer/prompts@npm:^7.4.0": - version: 7.8.4 - resolution: "@inquirer/prompts@npm:7.8.4" +"@inquirer/prompts@npm:^8.5.2": + version: 8.7.2 + resolution: "@inquirer/prompts@npm:8.7.2" dependencies: - "@inquirer/checkbox": "npm:^4.2.2" - "@inquirer/confirm": "npm:^5.1.16" - "@inquirer/editor": "npm:^4.2.18" - "@inquirer/expand": "npm:^4.0.18" - "@inquirer/input": "npm:^4.2.2" - "@inquirer/number": "npm:^3.0.18" - "@inquirer/password": "npm:^4.0.18" - "@inquirer/rawlist": "npm:^4.1.6" - "@inquirer/search": "npm:^3.1.1" - "@inquirer/select": "npm:^4.3.2" + "@inquirer/checkbox": "npm:^5.2.5" + "@inquirer/confirm": "npm:^6.3.2" + "@inquirer/editor": "npm:^5.3.3" + "@inquirer/expand": "npm:^5.1.5" + "@inquirer/input": "npm:^5.1.6" + "@inquirer/number": "npm:^4.2.3" + "@inquirer/password": "npm:^5.2.2" + "@inquirer/rawlist": "npm:^5.3.5" + "@inquirer/search": "npm:^4.3.3" + "@inquirer/select": "npm:^5.2.5" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/bf04aa108eeed602287eda26c646b6407cdd2db3d4a2175d1e88f1325987b5aeb7741af3f2ad82035811d74efa5c561d78ec642423060723d93b2275e669f0bb + checksum: 10c0/9d080705c42761a19fdd9c0b91649a6ff271f5d2fbc67093b30d4ffcc7e04de430bce65b5ee9170d1ab414531e5461430006958f684ec20db252be1d1b27c05c languageName: node linkType: hard -"@inquirer/rawlist@npm:^4.1.6": - version: 4.1.6 - resolution: "@inquirer/rawlist@npm:4.1.6" +"@inquirer/rawlist@npm:^5.3.5": + version: 5.3.5 + resolution: "@inquirer/rawlist@npm:5.3.5" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/type": "npm:^3.0.8" - yoctocolors-cjs: "npm:^2.1.2" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/0589a3098de545cf83450b2ce59623865e06e435a773240a5f6f47c20602a13ea3e9bf85849f39e57335e4faace510182c0251e88de0a3cc8d23b4f2270772e3 + checksum: 10c0/95f53a4b8f34f17d8ec01e806a4ca00b933d1c02688eb03dfb5f7d2b84abcb330e43118ecf754a91ff7166db75ae57ad86d6be5a453627098191dbaef789f700 languageName: node linkType: hard -"@inquirer/search@npm:^3.1.1": - version: 3.1.1 - resolution: "@inquirer/search@npm:3.1.1" +"@inquirer/search@npm:^4.3.3": + version: 4.3.3 + resolution: "@inquirer/search@npm:4.3.3" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/figures": "npm:^1.0.13" - "@inquirer/type": "npm:^3.0.8" - yoctocolors-cjs: "npm:^2.1.2" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/figures": "npm:^2.0.9" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/31f5e74d200f1c40b47099ebb74f5138b0900c99afe1b98b4a3d60e286cd8ca062ed5a68a5d1394cb6b8584cac2931f2b584241cf39dc34b83dc4ce8eb7daddd + checksum: 10c0/af1f0682a26d4ed3638708960ff66d6b8230b87a13d24323c1b5f2dbfc0312d5a50de08cc0ea686e772283551387db96a1e6cd5dc138da894c057a8fae8d7990 languageName: node linkType: hard -"@inquirer/select@npm:^4.3.2": - version: 4.3.2 - resolution: "@inquirer/select@npm:4.3.2" +"@inquirer/select@npm:^5.2.5": + version: 5.2.5 + resolution: "@inquirer/select@npm:5.2.5" dependencies: - "@inquirer/core": "npm:^10.2.0" - "@inquirer/figures": "npm:^1.0.13" - "@inquirer/type": "npm:^3.0.8" - ansi-escapes: "npm:^4.3.2" - yoctocolors-cjs: "npm:^2.1.2" + "@inquirer/ansi": "npm:^2.0.8" + "@inquirer/core": "npm:^12.0.3" + "@inquirer/figures": "npm:^2.0.9" + "@inquirer/type": "npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/48aaec29e21fd19b9b3045ad01d7fbe46aa9ac828adc5b8e5b8e5055daad47e0d1134cde40281e9e639bd963c30756ca729c20fcb629e3053ac411020cf4bc78 + checksum: 10c0/93b227b1cd7d7139b7aec58314aee90c690f91a6816ed1b0abc2334772c1d5d24c6f1e213844f1f251d8c1e7bdc7fb0e8151b8b8b95686e09d3c8991dabe65e8 languageName: node linkType: hard -"@inquirer/type@npm:^3.0.8": - version: 3.0.8 - resolution: "@inquirer/type@npm:3.0.8" +"@inquirer/type@npm:4.1.1": + version: 4.1.1 + resolution: "@inquirer/type@npm:4.1.1" peerDependencies: "@types/node": ">=18" peerDependenciesMeta: "@types/node": optional: true - checksum: 10c0/1171bffb9ea0018b12ec4f46a7b485f7e2a328e620e89f3b03f2be8c25889e5b9e62daca3ea10ed040a71d847066c4d9879dc1fea8aa5690ebbc968d3254a5ac + checksum: 10c0/77e7e21deaa8188d7d0ce34ed2623302d630529c28605d3ec931bc1420f8c35b9126790fc9deeeb6661326409ae4cec632d4bee3da74659512de1dddfe611dd9 languageName: node linkType: hard @@ -311,8 +319,8 @@ __metadata: linkType: hard "@mapbox/node-pre-gyp@npm:^2.0.0": - version: 2.0.0 - resolution: "@mapbox/node-pre-gyp@npm:2.0.0" + version: 2.0.3 + resolution: "@mapbox/node-pre-gyp@npm:2.0.3" dependencies: consola: "npm:^3.2.3" detect-libc: "npm:^2.0.0" @@ -323,31 +331,33 @@ __metadata: tar: "npm:^7.4.0" bin: node-pre-gyp: bin/node-pre-gyp - checksum: 10c0/7d874c7f6f5560a87be7207f28d9a4e53b750085a82167608fd573aab8073645e95b3608f69e244df0e1d24e90a66525aeae708aba82ca73ff668ed0ab6abda6 + checksum: 10c0/6243c60f0d7327772c679aad20f17bcbf771b362fb7fbf1ae6dcf8dd379bb852e5af26180ab1e987a75dffa7cd5445414dc47e2acbcfe820cb08374deebecbc3 languageName: node linkType: hard -"@napi-rs/cli@npm:^3.1.5": - version: 3.1.5 - resolution: "@napi-rs/cli@npm:3.1.5" +"@napi-rs/cli@npm:^3.9.1": + version: 3.9.1 + resolution: "@napi-rs/cli@npm:3.9.1" dependencies: - "@inquirer/prompts": "npm:^7.4.0" - "@napi-rs/cross-toolchain": "npm:^1.0.0" - "@napi-rs/wasm-tools": "npm:^1.0.0" - "@octokit/rest": "npm:^22.0.0" + "@inquirer/prompts": "npm:^8.5.2" + "@napi-rs/cross-toolchain": "npm:^1.0.3" + "@napi-rs/wasm-tools": "npm:^1.1.0" + "@octokit/rest": "npm:^22.0.1" clipanion: "npm:^4.0.0-rc.4" colorette: "npm:^2.0.20" - debug: "npm:^4.4.0" - emnapi: "npm:^1.4.0" - es-toolkit: "npm:^1.39.8" - find-up: "npm:^7.0.0" - js-yaml: "npm:^4.1.0" - semver: "npm:^7.7.1" + es-toolkit: "npm:^1.47.0" + js-yaml: "npm:^5.0.0" + obug: "npm:^2.1.2" + semver: "npm:^7.8.2" typanion: "npm:^3.14.0" + typescript: "npm:^6.0.3" peerDependencies: - "@emnapi/runtime": ^1.1.0 - emnapi: ^1.1.0 + "@emnapi/core": ^1.7.1 || ^2.0.0-alpha.4 + "@emnapi/runtime": ^1.7.1 || ^2.0.0-alpha.4 + emnapi: ^1.7.1 || ^2.0.0-alpha.4 peerDependenciesMeta: + "@emnapi/core": + optional: true "@emnapi/runtime": optional: true emnapi: @@ -355,11 +365,11 @@ __metadata: bin: napi: dist/cli.js napi-raw: cli.mjs - checksum: 10c0/fe28bcc40f81eb4c368b4f23156f1057583de21a41400b78821829fa1aa95db8268a33fa824741c864af28a464530f05712df135a10013c6b0e4ceef4c31f324 + checksum: 10c0/2f176b797940df95acf0fcdb35372a3ac3b9d01cf9aa2efa33f2ee09c564731fe7e6924f07a109b565fad4c494dfa4470730465b7c274492176e83d849d39b9c languageName: node linkType: hard -"@napi-rs/cross-toolchain@npm:^1.0.0": +"@napi-rs/cross-toolchain@npm:^1.0.3": version: 1.0.3 resolution: "@napi-rs/cross-toolchain@npm:1.0.3" dependencies: @@ -406,163 +416,165 @@ __metadata: version: 0.0.0-use.local resolution: "@napi-rs/keyring@workspace:." dependencies: - "@napi-rs/cli": "npm:^3.1.5" - "@oxc-node/core": "npm:^0.1.0" + "@napi-rs/cli": "npm:^3.9.1" + "@oxc-node/core": "npm:^0.1.1" "@taplo/cli": "npm:^0.7.0" - "@types/node": "npm:^24.3.0" - ava: "npm:^8.0.0" + "@types/node": "npm:^26.5.1" + ava: "npm:^8.0.1" chalk: "npm:^6.0.0" husky: "npm:^9.1.7" - lint-staged: "npm:^17.0.0" - npm-run-all2: "npm:^9.0.0" - oxlint: "npm:^1.13.0" - prettier: "npm:^3.6.2" - typescript: "npm:^7.0.0" + lint-staged: "npm:^17.5.1" + npm-run-all2: "npm:^9.0.3" + oxlint: "npm:^1.82.0" + prettier: "npm:^3.9.6" + typescript: "npm:^7.0.2" languageName: unknown linkType: soft -"@napi-rs/lzma-android-arm-eabi@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-android-arm-eabi@npm:1.4.5" +"@napi-rs/lzma-android-arm-eabi@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-android-arm-eabi@npm:1.5.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@napi-rs/lzma-android-arm64@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-android-arm64@npm:1.4.5" +"@napi-rs/lzma-android-arm64@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-android-arm64@npm:1.5.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@napi-rs/lzma-darwin-arm64@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-darwin-arm64@npm:1.4.5" +"@napi-rs/lzma-darwin-arm64@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-darwin-arm64@npm:1.5.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@napi-rs/lzma-darwin-x64@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-darwin-x64@npm:1.4.5" +"@napi-rs/lzma-darwin-x64@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-darwin-x64@npm:1.5.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@napi-rs/lzma-freebsd-x64@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-freebsd-x64@npm:1.4.5" +"@napi-rs/lzma-freebsd-x64@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-freebsd-x64@npm:1.5.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-arm-gnueabihf@npm:1.4.5" +"@napi-rs/lzma-linux-arm-gnueabihf@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-arm-gnueabihf@npm:1.5.1" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@napi-rs/lzma-linux-arm64-gnu@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-arm64-gnu@npm:1.4.5" +"@napi-rs/lzma-linux-arm64-gnu@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-arm64-gnu@npm:1.5.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-arm64-musl@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-arm64-musl@npm:1.4.5" +"@napi-rs/lzma-linux-arm64-musl@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-arm64-musl@npm:1.5.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-ppc64-gnu@npm:1.4.5" +"@napi-rs/lzma-linux-ppc64-gnu@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-ppc64-gnu@npm:1.5.1" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-riscv64-gnu@npm:1.4.5" +"@napi-rs/lzma-linux-riscv64-gnu@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-riscv64-gnu@npm:1.5.1" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-s390x-gnu@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-s390x-gnu@npm:1.4.5" +"@napi-rs/lzma-linux-s390x-gnu@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-s390x-gnu@npm:1.5.1" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-x64-gnu@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-x64-gnu@npm:1.4.5" +"@napi-rs/lzma-linux-x64-gnu@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-x64-gnu@npm:1.5.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@napi-rs/lzma-linux-x64-musl@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-linux-x64-musl@npm:1.4.5" +"@napi-rs/lzma-linux-x64-musl@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-linux-x64-musl@npm:1.5.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@napi-rs/lzma-wasm32-wasi@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-wasm32-wasi@npm:1.4.5" +"@napi-rs/lzma-wasm32-wasi@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-wasm32-wasi@npm:1.5.1" dependencies: - "@napi-rs/wasm-runtime": "npm:^1.0.3" + "@emnapi/core": "npm:1.11.2" + "@emnapi/runtime": "npm:1.11.2" + "@napi-rs/wasm-runtime": "npm:^1.1.6" conditions: cpu=wasm32 languageName: node linkType: hard -"@napi-rs/lzma-win32-arm64-msvc@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-win32-arm64-msvc@npm:1.4.5" +"@napi-rs/lzma-win32-arm64-msvc@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-win32-arm64-msvc@npm:1.5.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@napi-rs/lzma-win32-ia32-msvc@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-win32-ia32-msvc@npm:1.4.5" +"@napi-rs/lzma-win32-ia32-msvc@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-win32-ia32-msvc@npm:1.5.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@napi-rs/lzma-win32-x64-msvc@npm:1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma-win32-x64-msvc@npm:1.4.5" +"@napi-rs/lzma-win32-x64-msvc@npm:1.5.1": + version: 1.5.1 + resolution: "@napi-rs/lzma-win32-x64-msvc@npm:1.5.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@napi-rs/lzma@npm:^1.4.5": - version: 1.4.5 - resolution: "@napi-rs/lzma@npm:1.4.5" - dependencies: - "@napi-rs/lzma-android-arm-eabi": "npm:1.4.5" - "@napi-rs/lzma-android-arm64": "npm:1.4.5" - "@napi-rs/lzma-darwin-arm64": "npm:1.4.5" - "@napi-rs/lzma-darwin-x64": "npm:1.4.5" - "@napi-rs/lzma-freebsd-x64": "npm:1.4.5" - "@napi-rs/lzma-linux-arm-gnueabihf": "npm:1.4.5" - "@napi-rs/lzma-linux-arm64-gnu": "npm:1.4.5" - "@napi-rs/lzma-linux-arm64-musl": "npm:1.4.5" - "@napi-rs/lzma-linux-ppc64-gnu": "npm:1.4.5" - "@napi-rs/lzma-linux-riscv64-gnu": "npm:1.4.5" - "@napi-rs/lzma-linux-s390x-gnu": "npm:1.4.5" - "@napi-rs/lzma-linux-x64-gnu": "npm:1.4.5" - "@napi-rs/lzma-linux-x64-musl": "npm:1.4.5" - "@napi-rs/lzma-wasm32-wasi": "npm:1.4.5" - "@napi-rs/lzma-win32-arm64-msvc": "npm:1.4.5" - "@napi-rs/lzma-win32-ia32-msvc": "npm:1.4.5" - "@napi-rs/lzma-win32-x64-msvc": "npm:1.4.5" + version: 1.5.1 + resolution: "@napi-rs/lzma@npm:1.5.1" + dependencies: + "@napi-rs/lzma-android-arm-eabi": "npm:1.5.1" + "@napi-rs/lzma-android-arm64": "npm:1.5.1" + "@napi-rs/lzma-darwin-arm64": "npm:1.5.1" + "@napi-rs/lzma-darwin-x64": "npm:1.5.1" + "@napi-rs/lzma-freebsd-x64": "npm:1.5.1" + "@napi-rs/lzma-linux-arm-gnueabihf": "npm:1.5.1" + "@napi-rs/lzma-linux-arm64-gnu": "npm:1.5.1" + "@napi-rs/lzma-linux-arm64-musl": "npm:1.5.1" + "@napi-rs/lzma-linux-ppc64-gnu": "npm:1.5.1" + "@napi-rs/lzma-linux-riscv64-gnu": "npm:1.5.1" + "@napi-rs/lzma-linux-s390x-gnu": "npm:1.5.1" + "@napi-rs/lzma-linux-x64-gnu": "npm:1.5.1" + "@napi-rs/lzma-linux-x64-musl": "npm:1.5.1" + "@napi-rs/lzma-wasm32-wasi": "npm:1.5.1" + "@napi-rs/lzma-win32-arm64-msvc": "npm:1.5.1" + "@napi-rs/lzma-win32-ia32-msvc": "npm:1.5.1" + "@napi-rs/lzma-win32-x64-msvc": "npm:1.5.1" dependenciesMeta: "@napi-rs/lzma-android-arm-eabi": optional: true @@ -598,144 +610,146 @@ __metadata: optional: true "@napi-rs/lzma-win32-x64-msvc": optional: true - checksum: 10c0/df098c99f904b54541e3a34feeb5878c98a4abf1ababf1d301d903b99d98402fff5eda49e1dd103bb4bf44a9217a5e1b17fb30b74044416561f8fe02ca098ee3 + checksum: 10c0/026282bbdeee1f036e2f83b5889a282846c564afb0aad82702314d6cc7748258c756490e7a9d875520c337d1adf439d11cb1b5ba6ec620d04a2b79910fd72c41 languageName: node linkType: hard -"@napi-rs/tar-android-arm-eabi@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-android-arm-eabi@npm:1.1.0" +"@napi-rs/tar-android-arm-eabi@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-android-arm-eabi@npm:1.1.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@napi-rs/tar-android-arm64@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-android-arm64@npm:1.1.0" +"@napi-rs/tar-android-arm64@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-android-arm64@npm:1.1.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@napi-rs/tar-darwin-arm64@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-darwin-arm64@npm:1.1.0" +"@napi-rs/tar-darwin-arm64@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-darwin-arm64@npm:1.1.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@napi-rs/tar-darwin-x64@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-darwin-x64@npm:1.1.0" +"@napi-rs/tar-darwin-x64@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-darwin-x64@npm:1.1.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@napi-rs/tar-freebsd-x64@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-freebsd-x64@npm:1.1.0" +"@napi-rs/tar-freebsd-x64@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-freebsd-x64@npm:1.1.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@napi-rs/tar-linux-arm-gnueabihf@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-linux-arm-gnueabihf@npm:1.1.0" +"@napi-rs/tar-linux-arm-gnueabihf@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-linux-arm-gnueabihf@npm:1.1.1" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@napi-rs/tar-linux-arm64-gnu@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-linux-arm64-gnu@npm:1.1.0" +"@napi-rs/tar-linux-arm64-gnu@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-linux-arm64-gnu@npm:1.1.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@napi-rs/tar-linux-arm64-musl@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-linux-arm64-musl@npm:1.1.0" +"@napi-rs/tar-linux-arm64-musl@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-linux-arm64-musl@npm:1.1.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@napi-rs/tar-linux-ppc64-gnu@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-linux-ppc64-gnu@npm:1.1.0" +"@napi-rs/tar-linux-ppc64-gnu@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-linux-ppc64-gnu@npm:1.1.1" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@napi-rs/tar-linux-s390x-gnu@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-linux-s390x-gnu@npm:1.1.0" +"@napi-rs/tar-linux-s390x-gnu@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-linux-s390x-gnu@npm:1.1.1" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@napi-rs/tar-linux-x64-gnu@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-linux-x64-gnu@npm:1.1.0" +"@napi-rs/tar-linux-x64-gnu@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-linux-x64-gnu@npm:1.1.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@napi-rs/tar-linux-x64-musl@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-linux-x64-musl@npm:1.1.0" +"@napi-rs/tar-linux-x64-musl@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-linux-x64-musl@npm:1.1.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@napi-rs/tar-wasm32-wasi@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-wasm32-wasi@npm:1.1.0" +"@napi-rs/tar-wasm32-wasi@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-wasm32-wasi@npm:1.1.1" dependencies: - "@napi-rs/wasm-runtime": "npm:^1.0.3" + "@emnapi/core": "npm:1.11.2" + "@emnapi/runtime": "npm:1.11.2" + "@napi-rs/wasm-runtime": "npm:^1.1.6" conditions: cpu=wasm32 languageName: node linkType: hard -"@napi-rs/tar-win32-arm64-msvc@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-win32-arm64-msvc@npm:1.1.0" +"@napi-rs/tar-win32-arm64-msvc@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-win32-arm64-msvc@npm:1.1.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@napi-rs/tar-win32-ia32-msvc@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-win32-ia32-msvc@npm:1.1.0" +"@napi-rs/tar-win32-ia32-msvc@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-win32-ia32-msvc@npm:1.1.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@napi-rs/tar-win32-x64-msvc@npm:1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar-win32-x64-msvc@npm:1.1.0" +"@napi-rs/tar-win32-x64-msvc@npm:1.1.1": + version: 1.1.1 + resolution: "@napi-rs/tar-win32-x64-msvc@npm:1.1.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@napi-rs/tar@npm:^1.1.0": - version: 1.1.0 - resolution: "@napi-rs/tar@npm:1.1.0" - dependencies: - "@napi-rs/tar-android-arm-eabi": "npm:1.1.0" - "@napi-rs/tar-android-arm64": "npm:1.1.0" - "@napi-rs/tar-darwin-arm64": "npm:1.1.0" - "@napi-rs/tar-darwin-x64": "npm:1.1.0" - "@napi-rs/tar-freebsd-x64": "npm:1.1.0" - "@napi-rs/tar-linux-arm-gnueabihf": "npm:1.1.0" - "@napi-rs/tar-linux-arm64-gnu": "npm:1.1.0" - "@napi-rs/tar-linux-arm64-musl": "npm:1.1.0" - "@napi-rs/tar-linux-ppc64-gnu": "npm:1.1.0" - "@napi-rs/tar-linux-s390x-gnu": "npm:1.1.0" - "@napi-rs/tar-linux-x64-gnu": "npm:1.1.0" - "@napi-rs/tar-linux-x64-musl": "npm:1.1.0" - "@napi-rs/tar-wasm32-wasi": "npm:1.1.0" - "@napi-rs/tar-win32-arm64-msvc": "npm:1.1.0" - "@napi-rs/tar-win32-ia32-msvc": "npm:1.1.0" - "@napi-rs/tar-win32-x64-msvc": "npm:1.1.0" + version: 1.1.1 + resolution: "@napi-rs/tar@npm:1.1.1" + dependencies: + "@napi-rs/tar-android-arm-eabi": "npm:1.1.1" + "@napi-rs/tar-android-arm64": "npm:1.1.1" + "@napi-rs/tar-darwin-arm64": "npm:1.1.1" + "@napi-rs/tar-darwin-x64": "npm:1.1.1" + "@napi-rs/tar-freebsd-x64": "npm:1.1.1" + "@napi-rs/tar-linux-arm-gnueabihf": "npm:1.1.1" + "@napi-rs/tar-linux-arm64-gnu": "npm:1.1.1" + "@napi-rs/tar-linux-arm64-musl": "npm:1.1.1" + "@napi-rs/tar-linux-ppc64-gnu": "npm:1.1.1" + "@napi-rs/tar-linux-s390x-gnu": "npm:1.1.1" + "@napi-rs/tar-linux-x64-gnu": "npm:1.1.1" + "@napi-rs/tar-linux-x64-musl": "npm:1.1.1" + "@napi-rs/tar-wasm32-wasi": "npm:1.1.1" + "@napi-rs/tar-win32-arm64-msvc": "npm:1.1.1" + "@napi-rs/tar-win32-ia32-msvc": "npm:1.1.1" + "@napi-rs/tar-win32-x64-msvc": "npm:1.1.1" dependenciesMeta: "@napi-rs/tar-android-arm-eabi": optional: true @@ -769,143 +783,134 @@ __metadata: optional: true "@napi-rs/tar-win32-x64-msvc": optional: true - checksum: 10c0/88a0ab081eacfa235266f14a0bc408b7581058b1f7e18b118c6f8e7012cca0dd91c5baf5de84e1d2eb8070386a7380aa4d8dedfc6f81e24ae9d0287ff50ae153 + checksum: 10c0/f43620db74ea5510db0d12f9ec4c21f442006f5604e61edf042a84188dfa9f395c8fa271afe08b94e190bdf962e79c5a474581d41407f690da5d6b0b742e3b76 languageName: node linkType: hard -"@napi-rs/wasm-runtime@npm:^1.0.3": - version: 1.0.3 - resolution: "@napi-rs/wasm-runtime@npm:1.0.3" +"@napi-rs/wasm-runtime@npm:^1.1.6": + version: 1.2.4 + resolution: "@napi-rs/wasm-runtime@npm:1.2.4" dependencies: - "@emnapi/core": "npm:^1.4.5" - "@emnapi/runtime": "npm:^1.4.5" - "@tybys/wasm-util": "npm:^0.10.0" - checksum: 10c0/7918d82477e75931b6e35bb003464382eb93e526362f81a98bf8610407a67b10f4d041931015ad48072c89db547deb7e471dfb91f4ab11ac63a24d8580297f75 - languageName: node - linkType: hard - -"@napi-rs/wasm-runtime@npm:^1.1.2": - version: 1.1.2 - resolution: "@napi-rs/wasm-runtime@npm:1.1.2" - dependencies: - "@tybys/wasm-util": "npm:^0.10.1" + "@tybys/wasm-util": "npm:^0.10.3" peerDependencies: - "@emnapi/core": ^1.7.1 - "@emnapi/runtime": ^1.7.1 - checksum: 10c0/725c30ec9c480a8d0c1a6a4ce31dc6c830365d485e23ad560e143d1cb9db89a0c95fbb5b9d53c07121729817a3683db6f1ab65d7e4f38fa7482a11b15ef6c6fd + "@emnapi/core": ^1.7.1 || ^2.0.0-alpha.4 + "@emnapi/runtime": ^1.7.1 || ^2.0.0-alpha.4 + checksum: 10c0/4bd7be975f7c806bf7c33255b53257cdcd603c573e453b2f6878550bcfd59722d0d34c97627ee6a0353d91274b738d29b32ba1f0fe552a5fca1c2da80aa17bdc languageName: node linkType: hard -"@napi-rs/wasm-tools-android-arm-eabi@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-android-arm-eabi@npm:1.0.1" +"@napi-rs/wasm-tools-android-arm-eabi@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-android-arm-eabi@npm:1.1.0" conditions: os=android & cpu=arm languageName: node linkType: hard -"@napi-rs/wasm-tools-android-arm64@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-android-arm64@npm:1.0.1" +"@napi-rs/wasm-tools-android-arm64@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-android-arm64@npm:1.1.0" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@napi-rs/wasm-tools-darwin-arm64@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-darwin-arm64@npm:1.0.1" +"@napi-rs/wasm-tools-darwin-arm64@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-darwin-arm64@npm:1.1.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@napi-rs/wasm-tools-darwin-x64@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-darwin-x64@npm:1.0.1" +"@napi-rs/wasm-tools-darwin-x64@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-darwin-x64@npm:1.1.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@napi-rs/wasm-tools-freebsd-x64@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-freebsd-x64@npm:1.0.1" +"@napi-rs/wasm-tools-freebsd-x64@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-freebsd-x64@npm:1.1.0" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@napi-rs/wasm-tools-linux-arm64-gnu@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-linux-arm64-gnu@npm:1.0.1" +"@napi-rs/wasm-tools-linux-arm64-gnu@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-linux-arm64-gnu@npm:1.1.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@napi-rs/wasm-tools-linux-arm64-musl@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-linux-arm64-musl@npm:1.0.1" +"@napi-rs/wasm-tools-linux-arm64-musl@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-linux-arm64-musl@npm:1.1.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@napi-rs/wasm-tools-linux-x64-gnu@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-linux-x64-gnu@npm:1.0.1" +"@napi-rs/wasm-tools-linux-x64-gnu@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-linux-x64-gnu@npm:1.1.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@napi-rs/wasm-tools-linux-x64-musl@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-linux-x64-musl@npm:1.0.1" +"@napi-rs/wasm-tools-linux-x64-musl@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-linux-x64-musl@npm:1.1.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@napi-rs/wasm-tools-wasm32-wasi@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-wasm32-wasi@npm:1.0.1" +"@napi-rs/wasm-tools-wasm32-wasi@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-wasm32-wasi@npm:1.1.0" dependencies: - "@napi-rs/wasm-runtime": "npm:^1.0.3" + "@emnapi/core": "npm:1.9.2" + "@emnapi/runtime": "npm:1.9.2" + "@napi-rs/wasm-runtime": "npm:^1.1.6" conditions: cpu=wasm32 languageName: node linkType: hard -"@napi-rs/wasm-tools-win32-arm64-msvc@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-win32-arm64-msvc@npm:1.0.1" +"@napi-rs/wasm-tools-win32-arm64-msvc@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-win32-arm64-msvc@npm:1.1.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@napi-rs/wasm-tools-win32-ia32-msvc@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-win32-ia32-msvc@npm:1.0.1" +"@napi-rs/wasm-tools-win32-ia32-msvc@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-win32-ia32-msvc@npm:1.1.0" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@napi-rs/wasm-tools-win32-x64-msvc@npm:1.0.1": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools-win32-x64-msvc@npm:1.0.1" +"@napi-rs/wasm-tools-win32-x64-msvc@npm:1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools-win32-x64-msvc@npm:1.1.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@napi-rs/wasm-tools@npm:^1.0.0": - version: 1.0.1 - resolution: "@napi-rs/wasm-tools@npm:1.0.1" - dependencies: - "@napi-rs/wasm-tools-android-arm-eabi": "npm:1.0.1" - "@napi-rs/wasm-tools-android-arm64": "npm:1.0.1" - "@napi-rs/wasm-tools-darwin-arm64": "npm:1.0.1" - "@napi-rs/wasm-tools-darwin-x64": "npm:1.0.1" - "@napi-rs/wasm-tools-freebsd-x64": "npm:1.0.1" - "@napi-rs/wasm-tools-linux-arm64-gnu": "npm:1.0.1" - "@napi-rs/wasm-tools-linux-arm64-musl": "npm:1.0.1" - "@napi-rs/wasm-tools-linux-x64-gnu": "npm:1.0.1" - "@napi-rs/wasm-tools-linux-x64-musl": "npm:1.0.1" - "@napi-rs/wasm-tools-wasm32-wasi": "npm:1.0.1" - "@napi-rs/wasm-tools-win32-arm64-msvc": "npm:1.0.1" - "@napi-rs/wasm-tools-win32-ia32-msvc": "npm:1.0.1" - "@napi-rs/wasm-tools-win32-x64-msvc": "npm:1.0.1" +"@napi-rs/wasm-tools@npm:^1.1.0": + version: 1.1.0 + resolution: "@napi-rs/wasm-tools@npm:1.1.0" + dependencies: + "@napi-rs/wasm-tools-android-arm-eabi": "npm:1.1.0" + "@napi-rs/wasm-tools-android-arm64": "npm:1.1.0" + "@napi-rs/wasm-tools-darwin-arm64": "npm:1.1.0" + "@napi-rs/wasm-tools-darwin-x64": "npm:1.1.0" + "@napi-rs/wasm-tools-freebsd-x64": "npm:1.1.0" + "@napi-rs/wasm-tools-linux-arm64-gnu": "npm:1.1.0" + "@napi-rs/wasm-tools-linux-arm64-musl": "npm:1.1.0" + "@napi-rs/wasm-tools-linux-x64-gnu": "npm:1.1.0" + "@napi-rs/wasm-tools-linux-x64-musl": "npm:1.1.0" + "@napi-rs/wasm-tools-wasm32-wasi": "npm:1.1.0" + "@napi-rs/wasm-tools-win32-arm64-msvc": "npm:1.1.0" + "@napi-rs/wasm-tools-win32-ia32-msvc": "npm:1.1.0" + "@napi-rs/wasm-tools-win32-x64-msvc": "npm:1.1.0" dependenciesMeta: "@napi-rs/wasm-tools-android-arm-eabi": optional: true @@ -933,7 +938,7 @@ __metadata: optional: true "@napi-rs/wasm-tools-win32-x64-msvc": optional: true - checksum: 10c0/bee9258e0b16a2415acc57d9aa281fa50402b38f631aea28e3a8ecd16415cdfffade63313bca777e85c3a73b80cce899ac3dd35eba9104951d7da1eb28913122 + checksum: 10c0/b026f03e13509cce15a167e6e1af16dbbcd144d1117e815135cb635801666c488eb50d7d3ffd045f93faf5e78d894ff1c7c9b91417d23a5f91f7f59ec695ee1b languageName: node linkType: hard @@ -971,57 +976,64 @@ __metadata: languageName: node linkType: hard -"@octokit/core@npm:^7.0.2": - version: 7.0.3 - resolution: "@octokit/core@npm:7.0.3" +"@octokit/core@npm:^7.0.6": + version: 7.0.8 + resolution: "@octokit/core@npm:7.0.8" dependencies: "@octokit/auth-token": "npm:^6.0.0" - "@octokit/graphql": "npm:^9.0.1" - "@octokit/request": "npm:^10.0.2" - "@octokit/request-error": "npm:^7.0.0" - "@octokit/types": "npm:^14.0.0" + "@octokit/graphql": "npm:^9.0.5" + "@octokit/request": "npm:^10.0.16" + "@octokit/request-error": "npm:^7.1.2" + "@octokit/types": "npm:^18.0.0" before-after-hook: "npm:^4.0.0" universal-user-agent: "npm:^7.0.0" - checksum: 10c0/51427b4c3337e15b394d60277b673c5628a72d245a23b1a446e4249d15e37983fa01d09f10c8ab281207e024929f4d2f6cc27a4d345ec0ece2df78d42586d846 + checksum: 10c0/d8723f3960952b845d12d749441768eae6be1f954cc9a950ae8755209b45a9c0a5413c2c1e706b5eafc5bfad70a0c0140f78797149b8464f54544f2fe7c8c383 languageName: node linkType: hard -"@octokit/endpoint@npm:^11.0.0": - version: 11.0.0 - resolution: "@octokit/endpoint@npm:11.0.0" +"@octokit/endpoint@npm:^11.0.5": + version: 11.0.5 + resolution: "@octokit/endpoint@npm:11.0.5" dependencies: - "@octokit/types": "npm:^14.0.0" + "@octokit/types": "npm:^18.0.0" universal-user-agent: "npm:^7.0.2" - checksum: 10c0/ba929128af5327393fdb3a31f416277ae3036a44566d35955a4eddd484a15b5ddc6abe219a56355f3313c7197d59f4e8bf574a4f0a8680bc1c8725b88433d391 + checksum: 10c0/f74fb1ecffbc544c6164ce0fdcdc9e2d85d504b515a556cc5eb7f046a8e99cb1f70c89cd9107cb81dac2110da07a72de30388af91472e2e43f84a4e79ab6e70e languageName: node linkType: hard -"@octokit/graphql@npm:^9.0.1": - version: 9.0.1 - resolution: "@octokit/graphql@npm:9.0.1" +"@octokit/graphql@npm:^9.0.5": + version: 9.0.5 + resolution: "@octokit/graphql@npm:9.0.5" dependencies: - "@octokit/request": "npm:^10.0.2" - "@octokit/types": "npm:^14.0.0" + "@octokit/request": "npm:^10.0.16" + "@octokit/types": "npm:^18.0.0" universal-user-agent: "npm:^7.0.0" - checksum: 10c0/d80ec923b7624e8a7c84430a287ff18da3c77058e3166ce8e9a67950af00e88767f85d973b4032fc837b67b72d02b323aff2d8f7eeae1ae463bde1a51ddcb83d + checksum: 10c0/3152b815dd15f16df460931f4cdc4bbd534751dec391557600d5215916a60184d1c578a707de165089b9c3607581191ae9ec401f896b04242082882178e69a14 languageName: node linkType: hard -"@octokit/openapi-types@npm:^25.1.0": - version: 25.1.0 - resolution: "@octokit/openapi-types@npm:25.1.0" - checksum: 10c0/b5b1293b11c6ec7112c7a2713f8507c2696d5db8902ce893b594080ab0329f5a6fcda1b5ac6fe6eed9425e897f4d03326c1bdf5c337e35d324e7b925e52a2661 +"@octokit/openapi-types@npm:^27.0.0": + version: 27.0.0 + resolution: "@octokit/openapi-types@npm:27.0.0" + checksum: 10c0/602d1de033da180a2e982cdbd3646bd5b2e16ecf36b9955a0f23e37ae9e6cb086abb48ff2ae6f2de000fce03e8ae9051794611ae4a95a8f5f6fb63276e7b8e31 languageName: node linkType: hard -"@octokit/plugin-paginate-rest@npm:^13.0.1": - version: 13.1.1 - resolution: "@octokit/plugin-paginate-rest@npm:13.1.1" +"@octokit/openapi-types@npm:^29.0.1": + version: 29.0.1 + resolution: "@octokit/openapi-types@npm:29.0.1" + checksum: 10c0/1f1550a7877bb23584396a976d3f3b71c8496a86c135072050ff7ddfc0cd816804373ccc233bafab3a31a0178114e2599846cf54416f32f310712fc05699c5f7 + languageName: node + linkType: hard + +"@octokit/plugin-paginate-rest@npm:^14.0.0": + version: 14.0.0 + resolution: "@octokit/plugin-paginate-rest@npm:14.0.0" dependencies: - "@octokit/types": "npm:^14.1.0" + "@octokit/types": "npm:^16.0.0" peerDependencies: "@octokit/core": ">=6" - checksum: 10c0/88d80608881df88f8e832856e9279ac1c1af30ced9adb7c847f4d120b4bb308c2ab9d791ffd4c9585759e57a938798b4c3f2f988a389f2d78a61aaaebc36ffa7 + checksum: 10c0/841d79d4ccfe18fc809a4a67529b75c1dcdda13399bf4bf5b48ce7559c8b4b2cd422e3204bad4cbdea31c0cf0943521067415268e5bcfc615a3b813e058cad6b languageName: node linkType: hard @@ -1034,204 +1046,202 @@ __metadata: languageName: node linkType: hard -"@octokit/plugin-rest-endpoint-methods@npm:^16.0.0": - version: 16.0.0 - resolution: "@octokit/plugin-rest-endpoint-methods@npm:16.0.0" +"@octokit/plugin-rest-endpoint-methods@npm:^17.0.0": + version: 17.0.0 + resolution: "@octokit/plugin-rest-endpoint-methods@npm:17.0.0" dependencies: - "@octokit/types": "npm:^14.1.0" + "@octokit/types": "npm:^16.0.0" peerDependencies: "@octokit/core": ">=6" - checksum: 10c0/6cfe068dbd550bd5914374e65b89482b9deac29f6c26bf02ab6298e956d95b62fc15a2a49dfc6ff76f5938c6ff7fdfe5b7eccdb7551eaff8b1daf7394bc946cb + checksum: 10c0/cf9984d7cf6a36ff7ff1b86078ae45fe246e3df10fcef0bccf20c8cfd27bf5e7d98dcb9cf5a7b56332b9c6fa30be28d159c2987d272a4758f77056903d94402f languageName: node linkType: hard -"@octokit/request-error@npm:^7.0.0": - version: 7.0.0 - resolution: "@octokit/request-error@npm:7.0.0" +"@octokit/request-error@npm:^7.1.2": + version: 7.1.2 + resolution: "@octokit/request-error@npm:7.1.2" dependencies: - "@octokit/types": "npm:^14.0.0" - checksum: 10c0/e52bdd832a0187d66b20da5716c374d028f63d824908a9e16cad462754324083839b11cf6956e1d23f6112d3c77f17334ebbd80f49d56840b2b03ed9abef8cb0 + "@octokit/types": "npm:^18.0.0" + checksum: 10c0/89bb7005ee1cc7b52d1e4546ae9636d9af1dfcf1bee716d06106a4a58ac605845427b4552de816dee15c82a7bcafc1e36e683186789dfa05485eeb13cb4cc176 languageName: node linkType: hard -"@octokit/request@npm:^10.0.2": - version: 10.0.3 - resolution: "@octokit/request@npm:10.0.3" +"@octokit/request@npm:^10.0.16": + version: 10.0.16 + resolution: "@octokit/request@npm:10.0.16" dependencies: - "@octokit/endpoint": "npm:^11.0.0" - "@octokit/request-error": "npm:^7.0.0" - "@octokit/types": "npm:^14.0.0" - fast-content-type-parse: "npm:^3.0.0" + "@octokit/endpoint": "npm:^11.0.5" + "@octokit/request-error": "npm:^7.1.2" + "@octokit/types": "npm:^18.0.0" + content-type: "npm:^3.0.0" + json-with-bigint: "npm:^3.5.12" universal-user-agent: "npm:^7.0.2" - checksum: 10c0/2d9b2134390ef3aa9fe0c5e659fe93dd94fbabc4dcc6da6e16998dc84b5bda200e6b7a4e178f567883d0ba99c0ea5a6d095a417d86d76854569196c39d2f9a6d + checksum: 10c0/db3f1d1ab32f2238889c07ac2d0e4d9ec39afa7614a6c19e15136bad12118c4b538ccfb6a013c89ba8d1074da13efe8bb489d0557bce6cc7d5894587a7beded6 languageName: node linkType: hard -"@octokit/rest@npm:^22.0.0": - version: 22.0.0 - resolution: "@octokit/rest@npm:22.0.0" +"@octokit/rest@npm:^22.0.1": + version: 22.0.1 + resolution: "@octokit/rest@npm:22.0.1" dependencies: - "@octokit/core": "npm:^7.0.2" - "@octokit/plugin-paginate-rest": "npm:^13.0.1" + "@octokit/core": "npm:^7.0.6" + "@octokit/plugin-paginate-rest": "npm:^14.0.0" "@octokit/plugin-request-log": "npm:^6.0.0" - "@octokit/plugin-rest-endpoint-methods": "npm:^16.0.0" - checksum: 10c0/aea3714301f43fbadb22048045a7aef417cdefa997d1baf0b26860eaa9038fb033f7d4299eab06af57a03433871084cf38144fc5414caf80accce714e76d34e2 + "@octokit/plugin-rest-endpoint-methods": "npm:^17.0.0" + checksum: 10c0/f3abd84e887cc837973214ce70720a9bba53f5575f40601c6122aa25206e9055d859c0388437f0a137f6cd0e4ff405e1b46b903475b0db32a17bada0c6513d5b languageName: node linkType: hard -"@octokit/types@npm:^14.0.0, @octokit/types@npm:^14.1.0": - version: 14.1.0 - resolution: "@octokit/types@npm:14.1.0" +"@octokit/types@npm:^16.0.0": + version: 16.0.0 + resolution: "@octokit/types@npm:16.0.0" dependencies: - "@octokit/openapi-types": "npm:^25.1.0" - checksum: 10c0/4640a6c0a95386be4d015b96c3a906756ea657f7df3c6e706d19fea6bf3ac44fd2991c8c817afe1e670ff9042b85b0e06f7fd373f6bbd47da64208701bb46d5b + "@octokit/openapi-types": "npm:^27.0.0" + checksum: 10c0/b8d41098ba6fc194d13d641f9441347e3a3b96c0efabac0e14f57319340a2d4d1c8676e4cb37ab3062c5c323c617e790b0126916e9bf7b201b0cced0826f8ae2 languageName: node linkType: hard -"@oxc-node/core-android-arm-eabi@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-android-arm-eabi@npm:0.1.0" +"@octokit/types@npm:^18.0.0": + version: 18.0.0 + resolution: "@octokit/types@npm:18.0.0" + dependencies: + "@octokit/openapi-types": "npm:^29.0.1" + checksum: 10c0/d7336d2a4176684820388a6c6cf5bc8249672fad1f81f641c6ac30d2da123c0475fb752d3b16edf7cd3715e8fb01d3765c0e2f7ed724a6fbf7f84a1becd04bb5 + languageName: node + linkType: hard + +"@oxc-node/core-android-arm-eabi@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-android-arm-eabi@npm:0.1.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@oxc-node/core-android-arm64@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-android-arm64@npm:0.1.0" +"@oxc-node/core-android-arm64@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-android-arm64@npm:0.1.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@oxc-node/core-darwin-arm64@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-darwin-arm64@npm:0.1.0" +"@oxc-node/core-darwin-arm64@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-darwin-arm64@npm:0.1.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@oxc-node/core-darwin-x64@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-darwin-x64@npm:0.1.0" +"@oxc-node/core-darwin-x64@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-darwin-x64@npm:0.1.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@oxc-node/core-freebsd-x64@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-freebsd-x64@npm:0.1.0" +"@oxc-node/core-freebsd-x64@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-freebsd-x64@npm:0.1.1" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@oxc-node/core-linux-arm-gnueabihf@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-linux-arm-gnueabihf@npm:0.1.0" +"@oxc-node/core-linux-arm-gnueabihf@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-linux-arm-gnueabihf@npm:0.1.1" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@oxc-node/core-linux-arm64-gnu@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-linux-arm64-gnu@npm:0.1.0" +"@oxc-node/core-linux-arm64-gnu@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-linux-arm64-gnu@npm:0.1.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@oxc-node/core-linux-arm64-musl@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-linux-arm64-musl@npm:0.1.0" +"@oxc-node/core-linux-arm64-musl@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-linux-arm64-musl@npm:0.1.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@oxc-node/core-linux-ppc64-gnu@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-linux-ppc64-gnu@npm:0.1.0" +"@oxc-node/core-linux-ppc64-gnu@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-linux-ppc64-gnu@npm:0.1.1" conditions: os=linux & cpu=ppc64 & libc=glibc languageName: node linkType: hard -"@oxc-node/core-linux-s390x-gnu@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-linux-s390x-gnu@npm:0.1.0" +"@oxc-node/core-linux-s390x-gnu@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-linux-s390x-gnu@npm:0.1.1" conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@oxc-node/core-linux-x64-gnu@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-linux-x64-gnu@npm:0.1.0" +"@oxc-node/core-linux-x64-gnu@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-linux-x64-gnu@npm:0.1.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@oxc-node/core-linux-x64-musl@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-linux-x64-musl@npm:0.1.0" +"@oxc-node/core-linux-x64-musl@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-linux-x64-musl@npm:0.1.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@oxc-node/core-openharmony-arm64@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-openharmony-arm64@npm:0.1.0" +"@oxc-node/core-openharmony-arm64@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-openharmony-arm64@npm:0.1.1" conditions: os=openharmony & cpu=arm64 languageName: node linkType: hard -"@oxc-node/core-wasm32-wasi@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-wasm32-wasi@npm:0.1.0" - dependencies: - "@emnapi/core": "npm:1.9.1" - "@emnapi/runtime": "npm:1.9.1" - "@napi-rs/wasm-runtime": "npm:^1.1.2" - conditions: cpu=wasm32 - languageName: node - linkType: hard - -"@oxc-node/core-win32-arm64-msvc@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-win32-arm64-msvc@npm:0.1.0" +"@oxc-node/core-win32-arm64-msvc@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-win32-arm64-msvc@npm:0.1.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@oxc-node/core-win32-ia32-msvc@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-win32-ia32-msvc@npm:0.1.0" +"@oxc-node/core-win32-ia32-msvc@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-win32-ia32-msvc@npm:0.1.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@oxc-node/core-win32-x64-msvc@npm:0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core-win32-x64-msvc@npm:0.1.0" +"@oxc-node/core-win32-x64-msvc@npm:0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core-win32-x64-msvc@npm:0.1.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@oxc-node/core@npm:^0.1.0": - version: 0.1.0 - resolution: "@oxc-node/core@npm:0.1.0" - dependencies: - "@oxc-node/core-android-arm-eabi": "npm:0.1.0" - "@oxc-node/core-android-arm64": "npm:0.1.0" - "@oxc-node/core-darwin-arm64": "npm:0.1.0" - "@oxc-node/core-darwin-x64": "npm:0.1.0" - "@oxc-node/core-freebsd-x64": "npm:0.1.0" - "@oxc-node/core-linux-arm-gnueabihf": "npm:0.1.0" - "@oxc-node/core-linux-arm64-gnu": "npm:0.1.0" - "@oxc-node/core-linux-arm64-musl": "npm:0.1.0" - "@oxc-node/core-linux-ppc64-gnu": "npm:0.1.0" - "@oxc-node/core-linux-s390x-gnu": "npm:0.1.0" - "@oxc-node/core-linux-x64-gnu": "npm:0.1.0" - "@oxc-node/core-linux-x64-musl": "npm:0.1.0" - "@oxc-node/core-openharmony-arm64": "npm:0.1.0" - "@oxc-node/core-wasm32-wasi": "npm:0.1.0" - "@oxc-node/core-win32-arm64-msvc": "npm:0.1.0" - "@oxc-node/core-win32-ia32-msvc": "npm:0.1.0" - "@oxc-node/core-win32-x64-msvc": "npm:0.1.0" +"@oxc-node/core@npm:^0.1.1": + version: 0.1.1 + resolution: "@oxc-node/core@npm:0.1.1" + dependencies: + "@oxc-node/core-android-arm-eabi": "npm:0.1.1" + "@oxc-node/core-android-arm64": "npm:0.1.1" + "@oxc-node/core-darwin-arm64": "npm:0.1.1" + "@oxc-node/core-darwin-x64": "npm:0.1.1" + "@oxc-node/core-freebsd-x64": "npm:0.1.1" + "@oxc-node/core-linux-arm-gnueabihf": "npm:0.1.1" + "@oxc-node/core-linux-arm64-gnu": "npm:0.1.1" + "@oxc-node/core-linux-arm64-musl": "npm:0.1.1" + "@oxc-node/core-linux-ppc64-gnu": "npm:0.1.1" + "@oxc-node/core-linux-s390x-gnu": "npm:0.1.1" + "@oxc-node/core-linux-x64-gnu": "npm:0.1.1" + "@oxc-node/core-linux-x64-musl": "npm:0.1.1" + "@oxc-node/core-openharmony-arm64": "npm:0.1.1" + "@oxc-node/core-win32-arm64-msvc": "npm:0.1.1" + "@oxc-node/core-win32-ia32-msvc": "npm:0.1.1" + "@oxc-node/core-win32-x64-msvc": "npm:0.1.1" pirates: "npm:^4.0.7" dependenciesMeta: "@oxc-node/core-android-arm-eabi": @@ -1260,77 +1270,152 @@ __metadata: optional: true "@oxc-node/core-openharmony-arm64": optional: true - "@oxc-node/core-wasm32-wasi": - optional: true "@oxc-node/core-win32-arm64-msvc": optional: true "@oxc-node/core-win32-ia32-msvc": optional: true "@oxc-node/core-win32-x64-msvc": optional: true - checksum: 10c0/ff306be03088ed33003ed46033b4938bbad198587c4d33dbc21c50f505a8b4e7b027ef740d490f0abea65246891471f00654dda246bfa0656c57317022bc0958 + checksum: 10c0/306eb60fad807501e1b4d4ba66de6890e63a9b1581c3423da39456a832a196901929e67db089512ff43f26244fdb58777c40e3382a7d7f9d4377a62fdc829dd9 + languageName: node + linkType: hard + +"@oxlint/binding-android-arm-eabi@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-android-arm-eabi@npm:1.82.0" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@oxlint/darwin-arm64@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/darwin-arm64@npm:1.13.0" +"@oxlint/binding-android-arm64@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-android-arm64@npm:1.82.0" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@oxlint/binding-darwin-arm64@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-darwin-arm64@npm:1.82.0" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@oxlint/darwin-x64@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/darwin-x64@npm:1.13.0" +"@oxlint/binding-darwin-x64@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-darwin-x64@npm:1.82.0" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@oxlint/linux-arm64-gnu@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/linux-arm64-gnu@npm:1.13.0" +"@oxlint/binding-freebsd-x64@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-freebsd-x64@npm:1.82.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@oxlint/binding-linux-arm-gnueabihf@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-arm-gnueabihf@npm:1.82.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxlint/binding-linux-arm-musleabihf@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-arm-musleabihf@npm:1.82.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@oxlint/binding-linux-arm64-gnu@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-arm64-gnu@npm:1.82.0" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@oxlint/linux-arm64-musl@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/linux-arm64-musl@npm:1.13.0" +"@oxlint/binding-linux-arm64-musl@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-arm64-musl@npm:1.82.0" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@oxlint/linux-x64-gnu@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/linux-x64-gnu@npm:1.13.0" +"@oxlint/binding-linux-ppc64-gnu@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-ppc64-gnu@npm:1.82.0" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@oxlint/binding-linux-riscv64-gnu@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-riscv64-gnu@npm:1.82.0" + conditions: os=linux & cpu=riscv64 & libc=glibc + languageName: node + linkType: hard + +"@oxlint/binding-linux-riscv64-musl@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-riscv64-musl@npm:1.82.0" + conditions: os=linux & cpu=riscv64 & libc=musl + languageName: node + linkType: hard + +"@oxlint/binding-linux-s390x-gnu@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-s390x-gnu@npm:1.82.0" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@oxlint/binding-linux-x64-gnu@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-x64-gnu@npm:1.82.0" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@oxlint/linux-x64-musl@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/linux-x64-musl@npm:1.13.0" +"@oxlint/binding-linux-x64-musl@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-linux-x64-musl@npm:1.82.0" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@oxlint/win32-arm64@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/win32-arm64@npm:1.13.0" +"@oxlint/binding-openharmony-arm64@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-openharmony-arm64@npm:1.82.0" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@oxlint/binding-win32-arm64-msvc@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-win32-arm64-msvc@npm:1.82.0" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@oxlint/win32-x64@npm:1.13.0": - version: 1.13.0 - resolution: "@oxlint/win32-x64@npm:1.13.0" +"@oxlint/binding-win32-ia32-msvc@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-win32-ia32-msvc@npm:1.82.0" + conditions: os=win32 & cpu=ia32 + languageName: node + linkType: hard + +"@oxlint/binding-win32-x64-msvc@npm:1.82.0": + version: 1.82.0 + resolution: "@oxlint/binding-win32-x64-msvc@npm:1.82.0" conditions: os=win32 & cpu=x64 languageName: node linkType: hard "@rollup/pluginutils@npm:^5.1.3": - version: 5.2.0 - resolution: "@rollup/pluginutils@npm:5.2.0" + version: 5.4.0 + resolution: "@rollup/pluginutils@npm:5.4.0" dependencies: "@types/estree": "npm:^1.0.0" estree-walker: "npm:^2.0.2" @@ -1340,7 +1425,7 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10c0/794890d512751451bcc06aa112366ef47ea8f9125dac49b1abf72ff8b079518b09359de9c60a013b33266541634e765ae61839c749fae0edb59a463418665c55 + checksum: 10c0/ccc2cbd3a05df642df60ab05ffb81b2e564bd945e2a118bb8a474ea75b941033c8f44273133d4865643cca1492d0c80b14de1281f74779a64285a80fc3a194d8 languageName: node linkType: hard @@ -1360,37 +1445,28 @@ __metadata: languageName: node linkType: hard -"@tybys/wasm-util@npm:^0.10.0": - version: 0.10.0 - resolution: "@tybys/wasm-util@npm:0.10.0" +"@tybys/wasm-util@npm:^0.10.3": + version: 0.10.3 + resolution: "@tybys/wasm-util@npm:0.10.3" dependencies: tslib: "npm:^2.4.0" - checksum: 10c0/044feba55c1e2af703aa4946139969badb183ce1a659a75ed60bc195a90e73a3f3fc53bcd643497c9954597763ddb051fec62f80962b2ca6fc716ba897dc696e - languageName: node - linkType: hard - -"@tybys/wasm-util@npm:^0.10.1": - version: 0.10.1 - resolution: "@tybys/wasm-util@npm:0.10.1" - dependencies: - tslib: "npm:^2.4.0" - checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8 + checksum: 10c0/fd2bd2a79c6cd8c79ed1cf7a0fa375c64589264c88a27acaf9756d556b453ea222b62a4f68dd2fbb8b3a78b6bab3b1f4fb2431b6afc6aeda8344b53a521a1cd3 languageName: node linkType: hard "@types/estree@npm:^1.0.0": - version: 1.0.8 - resolution: "@types/estree@npm:1.0.8" - checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5 + version: 1.0.9 + resolution: "@types/estree@npm:1.0.9" + checksum: 10c0/3ad3286ca2988cd550dafb8f2ad599c8474868e954fa601a36655bdfefd8039f7c714b8c1c7f2ae219ffbd58bd4660e66fa7479a0120fc02d4777057d4865387 languageName: node linkType: hard -"@types/node@npm:^24.3.0": - version: 24.3.0 - resolution: "@types/node@npm:24.3.0" +"@types/node@npm:^26.5.1": + version: 26.5.1 + resolution: "@types/node@npm:26.5.1" dependencies: - undici-types: "npm:~7.10.0" - checksum: 10c0/96bdeca01f690338957c2dcc92cb9f76c262c10398f8d91860865464412b0f9d309c24d9b03d0bdd26dd47fa7ee3f8227893d5c89bc2009d919a525a22512030 + undici-types: "npm:~8.9.0" + checksum: 10c0/40aa7aa4c099c8a08bf39b5bcb15eaf2cc073666c2191b1d9ac8243ce6b68b23ace904a044c521f6d310b70e94514b531be5f4fc184f141a7ce7f0679ebc7bb3 languageName: node linkType: hard @@ -1535,8 +1611,8 @@ __metadata: linkType: hard "@vercel/nft@npm:^1.5.0": - version: 1.5.0 - resolution: "@vercel/nft@npm:1.5.0" + version: 1.11.0 + resolution: "@vercel/nft@npm:1.11.0" dependencies: "@mapbox/node-pre-gyp": "npm:^2.0.0" "@rollup/pluginutils": "npm:^5.1.3" @@ -1548,11 +1624,11 @@ __metadata: glob: "npm:^13.0.0" graceful-fs: "npm:^4.2.9" node-gyp-build: "npm:^4.2.2" - picomatch: "npm:^4.0.2" + picomatch: "npm:^4.0.4" resolve-from: "npm:^5.0.0" bin: nft: out/cli.js - checksum: 10c0/e44f2bb41908f11ece98aa5c4f33b7ff6575a5102ab2db2675f4ee74bcc62439dce4d363a393f80a677898f63f7cac5741685653ee97a924e61e75c9d5b504d6 + checksum: 10c0/8b1567bf31a5ddaad64dd87a2fb1e009e2281e0f00d3682b0866b3570fcbdf29b07d2706d5c11dd93f28c111316a4cb0d395f792a562d692e3dc24977ec61b75 languageName: node linkType: hard @@ -1581,21 +1657,12 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.11.0, acorn@npm:^8.6.0": - version: 8.15.0 - resolution: "acorn@npm:8.15.0" - bin: - acorn: bin/acorn - checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec - languageName: node - linkType: hard - -"acorn@npm:^8.16.0": - version: 8.16.0 - resolution: "acorn@npm:8.16.0" +"acorn@npm:^8.11.0, acorn@npm:^8.16.0, acorn@npm:^8.6.0": + version: 8.18.0 + resolution: "acorn@npm:8.18.0" bin: acorn: bin/acorn - checksum: 10c0/c9c52697227661b68d0debaf972222d4f622aa06b185824164e153438afa7b08273432ca43ea792cadb24dada1d46f6f6bb1ef8de9956979288cc1b96bf9914e + checksum: 10c0/be771be2135cc07910cf76f444ad514d7dcfd6d4a8026e597e93155275abc8ef61eee12211d52146e9d962874269b634f397464942087be013c89d0c54c5f8e5 languageName: node linkType: hard @@ -1606,68 +1673,27 @@ __metadata: languageName: node linkType: hard -"ansi-escapes@npm:^4.3.2": - version: 4.3.2 - resolution: "ansi-escapes@npm:4.3.2" - dependencies: - type-fest: "npm:^0.21.3" - checksum: 10c0/da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50 - languageName: node - linkType: hard - -"ansi-escapes@npm:^7.0.0": - version: 7.0.0 - resolution: "ansi-escapes@npm:7.0.0" - dependencies: - environment: "npm:^1.0.0" - checksum: 10c0/86e51e36fabef18c9c004af0a280573e828900641cea35134a124d2715e0c5a473494ab4ce396614505da77638ae290ff72dd8002d9747d2ee53f5d6bbe336be - languageName: node - linkType: hard - -"ansi-regex@npm:^5.0.1": - version: 5.0.1 - resolution: "ansi-regex@npm:5.0.1" - checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 - languageName: node - linkType: hard - -"ansi-regex@npm:^6.0.1": - version: 6.2.0 - resolution: "ansi-regex@npm:6.2.0" - checksum: 10c0/20a2e55ae9816074a60e6729dbe3daad664cd967fc82acc08b02f5677db84baa688babf940d71f50acbbb184c02459453789705e079f4d521166ae66451de551 - languageName: node - linkType: hard - "ansi-regex@npm:^6.2.2": - version: 6.2.2 - resolution: "ansi-regex@npm:6.2.2" - checksum: 10c0/05d4acb1d2f59ab2cf4b794339c7b168890d44dda4bf0ce01152a8da0213aca207802f930442ce8cd22d7a92f44907664aac6508904e75e038fa944d2601b30f + version: 6.3.0 + resolution: "ansi-regex@npm:6.3.0" + checksum: 10c0/bc047786d0531f1f22d1e22e9863e8554488a399f1ee5270b753efa6de938a788d27456f2b256770f11fdd8b1e847483bc1b55ddc2b3ffe82ec45c875292c651 languageName: node linkType: hard -"ansi-styles@npm:^4.0.0": - version: 4.3.0 - resolution: "ansi-styles@npm:4.3.0" - dependencies: - color-convert: "npm:^2.0.1" - checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 - languageName: node - linkType: hard - -"ansi-styles@npm:^6.2.1": - version: 6.2.1 - resolution: "ansi-styles@npm:6.2.1" - checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c - languageName: node - linkType: hard - -"ansi-styles@npm:^6.2.3": +"ansi-styles@npm:^6.2.1, ansi-styles@npm:^6.2.3": version: 6.2.3 resolution: "ansi-styles@npm:6.2.3" checksum: 10c0/23b8a4ce14e18fb854693b95351e286b771d23d8844057ed2e7d083cd3e708376c3323707ec6a24365f7d7eda3ca00327fe04092e29e551499ec4c8b7bfac868 languageName: node linkType: hard +"ansi-styles@npm:^7.0.0": + version: 7.0.0 + resolution: "ansi-styles@npm:7.0.0" + checksum: 10c0/406cf8984c682d632738964db918d895d84ec4ff39bffd0dddc81c4a4669a77b57adb0b58b26a1cc6ebcff0e30581d5946fc9b6f0394f6d9ac0b42f5ea97d216 + languageName: node + linkType: hard + "argparse@npm:^1.0.7": version: 1.0.10 resolution: "argparse@npm:1.0.10" @@ -1712,9 +1738,9 @@ __metadata: languageName: node linkType: hard -"ava@npm:^8.0.0": - version: 8.0.0 - resolution: "ava@npm:8.0.0" +"ava@npm:^8.0.1": + version: 8.0.1 + resolution: "ava@npm:8.0.1" dependencies: "@vercel/nft": "npm:^1.5.0" acorn: "npm:^8.16.0" @@ -1723,7 +1749,7 @@ __metadata: arrgv: "npm:^1.0.2" arrify: "npm:^3.0.0" callsites: "npm:^4.2.0" - cbor: "npm:^10.0.12" + cbor2: "npm:^2.3.0" chalk: "npm:^5.6.2" chunkd: "npm:^2.0.1" ci-info: "npm:^4.4.0" @@ -1763,7 +1789,7 @@ __metadata: optional: true bin: ava: entrypoints/cli.js - checksum: 10c0/510bd02cd9192c3da3ec47da5122c3748711c481bdfe6d8ff97e89ba3500f2f1e0edc59fa39c3b291cf4b29b66da55626cd1dea1b13cd5cd1aad3e9873a2d57b + checksum: 10c0/2edaede2e47aeaf4e1ed5744380d308a1e0ea7aba7f39ce6a96635a463857020826071e1e7ad5c2f79582244aa5c51ed3bab1fa818cc74a5249c8d3f00e4a4d6 languageName: node linkType: hard @@ -1797,12 +1823,12 @@ __metadata: languageName: node linkType: hard -"brace-expansion@npm:^5.0.2": - version: 5.0.4 - resolution: "brace-expansion@npm:5.0.4" +"brace-expansion@npm:^5.0.8": + version: 5.0.9 + resolution: "brace-expansion@npm:5.0.9" dependencies: balanced-match: "npm:^4.0.2" - checksum: 10c0/359cbcfa80b2eb914ca1f3440e92313fbfe7919ee6b274c35db55bec555aded69dac5ee78f102cec90c35f98c20fa43d10936d0cd9978158823c249257e1643a + checksum: 10c0/3dea38884a1c3c8b1c9c44a7402a0c76fca460f70cffb3127242b0b4cbf4472019e022ade021eec44838ff19f1dac2625dfd11dd459d7e1e055b0698a8d52fec languageName: node linkType: hard @@ -1822,12 +1848,12 @@ __metadata: languageName: node linkType: hard -"cbor@npm:^10.0.12": - version: 10.0.12 - resolution: "cbor@npm:10.0.12" +"cbor2@npm:^2.3.0": + version: 2.3.0 + resolution: "cbor2@npm:2.3.0" dependencies: - nofilter: "npm:^3.0.2" - checksum: 10c0/4c197d783415cade31565725a5e6b2b967d856285eacdb0b5f5ec0687d93c12f2ee9c6cc05aa7be02e8bbf0fe3ba40d22be69b56bd2ab1be2cc0a59370f14246 + "@cto.af/wtf8": "npm:0.0.5" + checksum: 10c0/373e528163e58d1b7f74ae6bc201a2c1e4e3d780b9244caa42e5bb14a7c7b5a862b27e01c45ae9371ac9cfd375d9d6c936e38d547ed170ace2e808c26380176e languageName: node linkType: hard @@ -1845,10 +1871,10 @@ __metadata: languageName: node linkType: hard -"chardet@npm:^2.1.0": - version: 2.1.0 - resolution: "chardet@npm:2.1.0" - checksum: 10c0/d1b03e47371851ed72741a898281d58f8a9b577aeea6fdfa75a86832898b36c550b3ad057e66d50d774a9cebd9f56c66b6880e4fe75e387794538ba7565b0b6f +"chardet@npm:^2.1.1": + version: 2.2.0 + resolution: "chardet@npm:2.2.0" + checksum: 10c0/8d43a1dd3ce535aa070d04139fae62f879b4388394eb1d857364ce416675a1f0f63974fba8208e9cd11b49e1a6da3e65ea6393d0fc654a8c4217c0d74c16b1b4 languageName: node linkType: hard @@ -1880,32 +1906,13 @@ __metadata: languageName: node linkType: hard -"cli-cursor@npm:^5.0.0": - version: 5.0.0 - resolution: "cli-cursor@npm:5.0.0" - dependencies: - restore-cursor: "npm:^5.0.0" - checksum: 10c0/7ec62f69b79f6734ab209a3e4dbdc8af7422d44d360a7cb1efa8a0887bbe466a6e625650c466fe4359aee44dbe2dc0b6994b583d40a05d0808a5cb193641d220 - languageName: node - linkType: hard - -"cli-truncate@npm:^5.2.0": - version: 5.2.0 - resolution: "cli-truncate@npm:5.2.0" - dependencies: - slice-ansi: "npm:^8.0.0" - string-width: "npm:^8.2.0" - checksum: 10c0/0d4ec94702ca85b64522ac93633837fb5ea7db17b79b1322a60f6045e6ae2b8cd7bd4c1d19ac7d1f9e10e3bbda1112e172e439b68c02b785ee00da8d6a5c5471 - languageName: node - linkType: hard - "cli-truncate@npm:^6.0.0": - version: 6.0.0 - resolution: "cli-truncate@npm:6.0.0" + version: 6.1.1 + resolution: "cli-truncate@npm:6.1.1" dependencies: slice-ansi: "npm:^9.0.0" string-width: "npm:^8.2.0" - checksum: 10c0/e0abb91a00dd20c64b93345e0235e780a5f2cf182c529235bae83f1ab1488b90b047838c1e72b9b472cb5cd6f294f017dac6afed511fa3996d710d3675dec6f7 + checksum: 10c0/56760fd0987d1c93711ce603510cce12a97f91d7b4a4f892402a586522aa14633caca86fe410defcfac256f56ea88de757d82d5c874a20eb5861b24d5eebcffb languageName: node linkType: hard @@ -1947,22 +1954,6 @@ __metadata: languageName: node linkType: hard -"color-convert@npm:^2.0.1": - version: 2.0.1 - resolution: "color-convert@npm:2.0.1" - dependencies: - color-name: "npm:~1.1.4" - checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 - languageName: node - linkType: hard - -"color-name@npm:~1.1.4": - version: 1.1.4 - resolution: "color-name@npm:1.1.4" - checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 - languageName: node - linkType: hard - "colorette@npm:^2.0.20": version: 2.0.20 resolution: "colorette@npm:2.0.20" @@ -2000,6 +1991,13 @@ __metadata: languageName: node linkType: hard +"content-type@npm:^3.0.0": + version: 3.1.0 + resolution: "content-type@npm:3.1.0" + checksum: 10c0/b64a6da38541cdbd177ebc4d6f4dcbebdb28a3d0b14466dd451b6f7cf50bf7c6d93b04abd41c11e7f30dd436b4bed2b23c24a4eef4c52383f73c978ba975b83f + languageName: node + linkType: hard + "convert-to-spaces@npm:^2.0.1": version: 2.0.1 resolution: "convert-to-spaces@npm:2.0.1" @@ -2036,19 +2034,7 @@ __metadata: languageName: node linkType: hard -"debug@npm:4, debug@npm:^4.4.0, debug@npm:^4.4.1": - version: 4.4.1 - resolution: "debug@npm:4.4.1" - dependencies: - ms: "npm:^2.1.3" - peerDependenciesMeta: - supports-color: - optional: true - checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55 - languageName: node - linkType: hard - -"debug@npm:^4.4.3": +"debug@npm:4, debug@npm:^4.4.1, debug@npm:^4.4.3": version: 4.4.3 resolution: "debug@npm:4.4.3" dependencies: @@ -2061,9 +2047,9 @@ __metadata: linkType: hard "detect-libc@npm:^2.0.0": - version: 2.0.4 - resolution: "detect-libc@npm:2.0.4" - checksum: 10c0/c15541f836eba4b1f521e4eecc28eefefdbc10a94d3b8cb4c507689f332cc111babb95deda66f2de050b22122113189986d5190be97d51b5a2b23b938415e67c + version: 2.1.2 + resolution: "detect-libc@npm:2.1.2" + checksum: 10c0/acc675c29a5649fa1fb6e255f993b8ee829e510b6b56b0910666949c80c364738833417d0edb5f90e4e46be17228b0f2b66a010513984e18b15deeeac49369c4 languageName: node linkType: hard @@ -2074,48 +2060,24 @@ __metadata: languageName: node linkType: hard -"emnapi@npm:^1.4.0": - version: 1.4.5 - resolution: "emnapi@npm:1.4.5" - peerDependencies: - node-addon-api: ">= 6.1.0" - peerDependenciesMeta: - node-addon-api: - optional: true - checksum: 10c0/9bd37977040130b718f4d7d24f9255f52f993134b7dfcfb8b066f9c62be74e7c39b2ab936a6cc6f7713c72e38af97c07627aa74e9751cf64053bf0d4b7cd1e90 - languageName: node - linkType: hard - "emoji-regex@npm:^10.3.0": - version: 10.5.0 - resolution: "emoji-regex@npm:10.5.0" - checksum: 10c0/17cf84335a461fc23bf90575122ace2902630dc760e53299474cd3b0b5e4cfbc6c0223a389a766817538e5d20bf0f36c67b753f27c9e705056af510b8777e312 - languageName: node - linkType: hard - -"emoji-regex@npm:^8.0.0": - version: 8.0.0 - resolution: "emoji-regex@npm:8.0.0" - checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 + version: 10.6.0 + resolution: "emoji-regex@npm:10.6.0" + checksum: 10c0/1e4aa097bb007301c3b4b1913879ae27327fdc48e93eeefefe3b87e495eb33c5af155300be951b4349ff6ac084f4403dc9eff970acba7c1c572d89396a9a32d7 languageName: node linkType: hard -"environment@npm:^1.0.0": - version: 1.1.0 - resolution: "environment@npm:1.1.0" - checksum: 10c0/fb26434b0b581ab397039e51ff3c92b34924a98b2039dcb47e41b7bca577b9dbf134a8eadb364415c74464b682e2d3afe1a4c0eb9873dc44ea814c5d3103331d - languageName: node - linkType: hard - -"es-toolkit@npm:^1.39.8": - version: 1.39.10 - resolution: "es-toolkit@npm:1.39.10" +"es-toolkit@npm:^1.47.0": + version: 1.52.0 + resolution: "es-toolkit@npm:1.52.0" dependenciesMeta: "@trivago/prettier-plugin-sort-imports@4.3.0": unplugged: true prettier-plugin-sort-re-exports@0.0.1: unplugged: true - checksum: 10c0/244dd6be25bc8c7af9f085f5b9aae08169eca760fc7d4735020f8f711b6a572e0bf205400326fa85a7924e20747d315756dba1b3a5f0d2887231374ec3651a98 + vitepress-plugin-sandpack@1.1.4: + unplugged: true + checksum: 10c0/465988c0a6b84b6d1d171287cbbe40c3247a1f94acea210ae14bc66b7d90c93e6839bd6937cbaf2a1d206669f3179eb26141a89d9125969a4b8e58cb7d86a2ca languageName: node linkType: hard @@ -2164,20 +2126,6 @@ __metadata: languageName: node linkType: hard -"eventemitter3@npm:^5.0.4": - version: 5.0.4 - resolution: "eventemitter3@npm:5.0.4" - checksum: 10c0/575b8cac8d709e1473da46f8f15ef311b57ff7609445a7c71af5cd42598583eee6f098fa7a593e30f27e94b8865642baa0689e8fa97c016f742abdb3b1bf6d9a - languageName: node - linkType: hard - -"fast-content-type-parse@npm:^3.0.0": - version: 3.0.0 - resolution: "fast-content-type-parse@npm:3.0.0" - checksum: 10c0/06251880c83b7118af3a5e66e8bcee60d44f48b39396fc60acc2b4630bd5f3e77552b999b5c8e943d45a818854360e5e97164c374ec4b562b4df96a2cdf2e188 - languageName: node - linkType: hard - "fast-diff@npm:^1.2.0": version: 1.3.0 resolution: "fast-diff@npm:1.3.0" @@ -2198,12 +2146,37 @@ __metadata: languageName: node linkType: hard +"fast-string-truncated-width@npm:^3.0.2": + version: 3.0.3 + resolution: "fast-string-truncated-width@npm:3.0.3" + checksum: 10c0/043b8663397d14a3880ce4f3407bcda60b40db9bbeafe62863a35d1f9c69ea17c8da3fcd72de235553e6c9cd053128cde9e24ca0d4a7463208f48db3cd23d981 + languageName: node + linkType: hard + +"fast-string-width@npm:^3.0.2": + version: 3.0.2 + resolution: "fast-string-width@npm:3.0.2" + dependencies: + fast-string-truncated-width: "npm:^3.0.2" + checksum: 10c0/c8822d175315bb353ebe782b65214ac53b13e3bf704e03b132ea7bdfa8de6a636375b3ab7a4097545393d109381c37c4f387c72a462c90b61412dbc4632f39a7 + languageName: node + linkType: hard + +"fast-wrap-ansi@npm:^0.2.0": + version: 0.2.2 + resolution: "fast-wrap-ansi@npm:0.2.2" + dependencies: + fast-string-width: "npm:^3.0.2" + checksum: 10c0/1aa7be4f7cb86f4bdb14691cb6bcc0b8df8b3b89df142ade3ae1602332dcf6f990cd750a923cd581ca0847808cb4ec1aa5afaafa7a72f849e87a2a62c98fa370 + languageName: node + linkType: hard + "fastq@npm:^1.6.0": - version: 1.19.1 - resolution: "fastq@npm:1.19.1" + version: 1.20.3 + resolution: "fastq@npm:1.20.3" dependencies: reusify: "npm:^1.0.4" - checksum: 10c0/ebc6e50ac7048daaeb8e64522a1ea7a26e92b3cee5cd1c7f2316cdca81ba543aa40a136b53891446ea5c3a67ec215fbaca87ad405f102dd97012f62916905630 + checksum: 10c0/ad055a1b50f7ec9142d2e13699ad6c4d1fa9fea1d947fff89de1b5ea3825223e9a626c359b3a0f21aefbe093cc2a9e92a91e068f982a2b176af16b9ea430ffc5 languageName: node linkType: hard @@ -2239,17 +2212,6 @@ __metadata: languageName: node linkType: hard -"find-up@npm:^7.0.0": - version: 7.0.0 - resolution: "find-up@npm:7.0.0" - dependencies: - locate-path: "npm:^7.2.0" - path-exists: "npm:^5.0.0" - unicorn-magic: "npm:^0.1.0" - checksum: 10c0/e6ee3e6154560bc0ab3bc3b7d1348b31513f9bdf49a5dd2e952495427d559fa48cdf33953e85a309a323898b43fa1bfbc8b80c880dfc16068384783034030008 - languageName: node - linkType: hard - "get-caller-file@npm:^2.0.5": version: 2.0.5 resolution: "get-caller-file@npm:2.0.5" @@ -2257,17 +2219,10 @@ __metadata: languageName: node linkType: hard -"get-east-asian-width@npm:^1.0.0": - version: 1.3.0 - resolution: "get-east-asian-width@npm:1.3.0" - checksum: 10c0/1a049ba697e0f9a4d5514c4623781c5246982bdb61082da6b5ae6c33d838e52ce6726407df285cdbb27ec1908b333cf2820989bd3e986e37bb20979437fdf34b - languageName: node - linkType: hard - -"get-east-asian-width@npm:^1.3.1, get-east-asian-width@npm:^1.5.0": - version: 1.5.0 - resolution: "get-east-asian-width@npm:1.5.0" - checksum: 10c0/bff8bbc8d81790b9477f7aa55b1806b9f082a8dc1359fff7bd8b96939622c86b729685afc2bfeb22def1fc6ef1e5228e4d87dd4e6da60bc43a5edfb03c4ee167 +"get-east-asian-width@npm:^1.0.0, get-east-asian-width@npm:^1.3.1, get-east-asian-width@npm:^1.5.0": + version: 1.6.0 + resolution: "get-east-asian-width@npm:1.6.0" + checksum: 10c0/7e72e9550fd49ca5b246f9af6bb2afc129c96412845ff6556b3274fd44817a381702ca17028efe9866b261a3d44254cbf21e6c90cf05b4b61675630af776d431 languageName: node linkType: hard @@ -2292,16 +2247,17 @@ __metadata: linkType: hard "globby@npm:^16.2.0": - version: 16.2.0 - resolution: "globby@npm:16.2.0" + version: 16.2.4 + resolution: "globby@npm:16.2.4" dependencies: "@sindresorhus/merge-streams": "npm:^4.0.0" fast-glob: "npm:^3.3.3" ignore: "npm:^7.0.5" is-path-inside: "npm:^4.0.0" + micromatch: "npm:^4.0.8" slash: "npm:^5.1.0" unicorn-magic: "npm:^0.4.0" - checksum: 10c0/fc0675e01dc1da5095f30dccc46a3047fc38d45ca08c21c1aa871bd79d38682f507d84a159be168019db5fffaa09c5663c3679c29190a2d4f999dc91d7ff6406 + checksum: 10c0/ef4a56b656260138b47706bd9532aad86d2820f028c58d51af41f458cf7f1177ce71cf104697cd6068c18eb1e0f3272bf446bc7c6265a357c6a159a1a1e31cec languageName: node linkType: hard @@ -2331,12 +2287,12 @@ __metadata: languageName: node linkType: hard -"iconv-lite@npm:^0.6.3": - version: 0.6.3 - resolution: "iconv-lite@npm:0.6.3" +"iconv-lite@npm:^0.7.2": + version: 0.7.3 + resolution: "iconv-lite@npm:0.7.3" dependencies: safer-buffer: "npm:>= 2.1.2 < 3.0.0" - checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1 + checksum: 10c0/be2fd2414f7e94be3a63063fa0ad5919c16bc7b6e00c77eea0765ced6db405739f38dd51016583058fba25cc1d0106ba30b83fbb7a7e32f824d4db76f23d8d33 languageName: node linkType: hard @@ -2348,9 +2304,9 @@ __metadata: linkType: hard "ignore@npm:^7.0.5": - version: 7.0.5 - resolution: "ignore@npm:7.0.5" - checksum: 10c0/ae00db89fe873064a093b8999fe4cc284b13ef2a178636211842cceb650b9c3e390d3339191acb145d81ed5379d2074840cf0c33a20bdbd6f32821f79eb4ad5d + version: 7.0.9 + resolution: "ignore@npm:7.0.9" + checksum: 10c0/fec02e67b8c01a873d3b60eff6cce5e390365d7c45fea57f60f4ff52b9be5873c366867a3b8e154a3140330b72b41b94f19e1f28adfe0ef558c6b28bbf02a1b4 languageName: node linkType: hard @@ -2375,22 +2331,6 @@ __metadata: languageName: node linkType: hard -"is-fullwidth-code-point@npm:^3.0.0": - version: 3.0.0 - resolution: "is-fullwidth-code-point@npm:3.0.0" - checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc - languageName: node - linkType: hard - -"is-fullwidth-code-point@npm:^5.0.0": - version: 5.0.0 - resolution: "is-fullwidth-code-point@npm:5.0.0" - dependencies: - get-east-asian-width: "npm:^1.0.0" - checksum: 10c0/cd591b27d43d76b05fa65ed03eddce57a16e1eca0b7797ff7255de97019bcaf0219acfc0c4f7af13319e13541f2a53c0ace476f442b13267b9a6a7568f2b65c8 - languageName: node - linkType: hard - "is-fullwidth-code-point@npm:^5.1.0": version: 5.1.0 resolution: "is-fullwidth-code-point@npm:5.1.0" @@ -2424,9 +2364,9 @@ __metadata: linkType: hard "is-plain-object@npm:^5.0.0": - version: 5.0.0 - resolution: "is-plain-object@npm:5.0.0" - checksum: 10c0/893e42bad832aae3511c71fd61c0bf61aa3a6d853061c62a307261842727d0d25f761ce9379f7ba7226d6179db2a3157efa918e7fe26360f3bf0842d9f28942c + version: 5.1.0 + resolution: "is-plain-object@npm:5.1.0" + checksum: 10c0/21d6e5b182aaf56b18fdc3829bf39ed6c1ebdf9fd312549a56846942307e5699fb3c5841e60622c409951f670900980d7e402c22d4f7659a78e32e016442ba7a languageName: node linkType: hard @@ -2466,25 +2406,25 @@ __metadata: linkType: hard "js-yaml@npm:^3.14.1": - version: 3.14.1 - resolution: "js-yaml@npm:3.14.1" + version: 3.15.2 + resolution: "js-yaml@npm:3.15.2" dependencies: argparse: "npm:^1.0.7" esprima: "npm:^4.0.0" bin: js-yaml: bin/js-yaml.js - checksum: 10c0/6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b + checksum: 10c0/e341df211dece9d4b784849647ad7568b5b6a58a9ee58ead750482316d83276387343649fe4b71522705dc6c76acf97718588f23dc19443833ef3e75033af967 languageName: node linkType: hard -"js-yaml@npm:^4.1.0": - version: 4.1.0 - resolution: "js-yaml@npm:4.1.0" +"js-yaml@npm:^5.0.0": + version: 5.4.1 + resolution: "js-yaml@npm:5.4.1" dependencies: argparse: "npm:^2.0.1" bin: - js-yaml: bin/js-yaml.js - checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f + js-yaml: bin/js-yaml.mjs + checksum: 10c0/efe9dfaf222809694d375ad5ecca825561d2432eb55bc0f628911c0dfa4dbce98a71dcbc3252f630208bbdf5f4e9ac363847e4a7f49845b577ae2548b8fcf147 languageName: node linkType: hard @@ -2495,34 +2435,27 @@ __metadata: languageName: node linkType: hard -"lint-staged@npm:^17.0.0": - version: 17.0.3 - resolution: "lint-staged@npm:17.0.3" +"json-with-bigint@npm:^3.5.12": + version: 3.5.12 + resolution: "json-with-bigint@npm:3.5.12" + checksum: 10c0/3c205a445ee946bbe2409fb3e1840617eb0bac9086934ed55fefbd584c8d5bfd288bdc9a44acc8e5ca4d1ccf83b5c2ebd63add5ef4b5ca656ef4f968bf832e79 + languageName: node + linkType: hard + +"lint-staged@npm:^17.5.1": + version: 17.5.1 + resolution: "lint-staged@npm:17.5.1" dependencies: - listr2: "npm:^10.2.1" - picomatch: "npm:^4.0.4" + picomatch: "npm:^4.0.7" string-argv: "npm:^0.3.2" - tinyexec: "npm:^1.1.2" - yaml: "npm:^2.8.4" + tinyexec: "npm:^1.3.1" + yaml: "npm:^2.9.0" dependenciesMeta: yaml: optional: true bin: lint-staged: bin/lint-staged.js - checksum: 10c0/fed226f7596b65e543660dd7d460c96066d3cba8048f040c0f18089f280fed68c8504f95eaafa509d6cc0028d86dc834524a618660e480fc9733ce358dd696e8 - languageName: node - linkType: hard - -"listr2@npm:^10.2.1": - version: 10.2.1 - resolution: "listr2@npm:10.2.1" - dependencies: - cli-truncate: "npm:^5.2.0" - eventemitter3: "npm:^5.0.4" - log-update: "npm:^6.1.0" - rfdc: "npm:^1.4.1" - wrap-ansi: "npm:^10.0.0" - checksum: 10c0/a381a7aaef2e8625e6e882835ef446d14306c8fa371b56c4499cf23ece86f84922008af11962bfba5411b51589e02d280bea2b820451a2efad89ebf78bbe68a4 + checksum: 10c0/8063dab2c1d44b126432bd08a74ed98fcd90976dc5ed94172c3e70f2466b1268aa98c4b646f810c22e9b56923be7772f549f70e5b985d59b4bd0c68e36fe6524 languageName: node linkType: hard @@ -2533,39 +2466,17 @@ __metadata: languageName: node linkType: hard -"locate-path@npm:^7.2.0": - version: 7.2.0 - resolution: "locate-path@npm:7.2.0" - dependencies: - p-locate: "npm:^6.0.0" - checksum: 10c0/139e8a7fe11cfbd7f20db03923cacfa5db9e14fa14887ea121345597472b4a63c1a42a8a5187defeeff6acf98fd568da7382aa39682d38f0af27433953a97751 - languageName: node - linkType: hard - "lodash@npm:^4.17.15": - version: 4.17.21 - resolution: "lodash@npm:4.17.21" - checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c - languageName: node - linkType: hard - -"log-update@npm:^6.1.0": - version: 6.1.0 - resolution: "log-update@npm:6.1.0" - dependencies: - ansi-escapes: "npm:^7.0.0" - cli-cursor: "npm:^5.0.0" - slice-ansi: "npm:^7.1.0" - strip-ansi: "npm:^7.1.0" - wrap-ansi: "npm:^9.0.0" - checksum: 10c0/4b350c0a83d7753fea34dcac6cd797d1dc9603291565de009baa4aa91c0447eab0d3815a05c8ec9ac04fdfffb43c82adcdb03ec1fceafd8518e1a8c1cff4ff89 + version: 4.18.1 + resolution: "lodash@npm:4.18.1" + checksum: 10c0/757228fc68805c59789e82185135cf85f05d0b2d3d54631d680ca79ec21944ec8314d4533639a14b8bcfbd97a517e78960933041a5af17ecb693ec6eecb99a27 languageName: node linkType: hard "lru-cache@npm:^11.0.0": - version: 11.2.6 - resolution: "lru-cache@npm:11.2.6" - checksum: 10c0/73bbffb298760e71b2bfe8ebc16a311c6a60ceddbba919cfedfd8635c2d125fbfb5a39b71818200e67973b11f8d59c5a9e31d6f90722e340e90393663a66e5cd + version: 11.5.2 + resolution: "lru-cache@npm:11.5.2" + checksum: 10c0/ece1ad731f5b655e85d67047d04bfc13823dc77aa61c5454924a9869ba600a0104e39cc33d726021feef812bc347ca34a5608a5eb1972a5dd0870b7ecd42c3f2 languageName: node linkType: hard @@ -2620,7 +2531,7 @@ __metadata: languageName: node linkType: hard -"mimic-function@npm:^5.0.0, mimic-function@npm:^5.0.1": +"mimic-function@npm:^5.0.1": version: 5.0.1 resolution: "mimic-function@npm:5.0.1" checksum: 10c0/f3d9464dd1816ecf6bdf2aec6ba32c0728022039d992f178237d8e289b48764fee4131319e72eedd4f7f094e22ded0af836c3187a7edc4595d28dd74368fd81d @@ -2628,43 +2539,27 @@ __metadata: linkType: hard "minimatch@npm:^10.2.2": - version: 10.2.4 - resolution: "minimatch@npm:10.2.4" + version: 10.2.6 + resolution: "minimatch@npm:10.2.6" dependencies: - brace-expansion: "npm:^5.0.2" - checksum: 10c0/35f3dfb7b99b51efd46afd378486889f590e7efb10e0f6a10ba6800428cf65c9a8dedb74427d0570b318d749b543dc4e85f06d46d2858bc8cac7e1eb49a95945 + brace-expansion: "npm:^5.0.8" + checksum: 10c0/4559a836243b98bd4d17ea9f7edae698717c76399eea7be374f3737f33164e4907f19e9726891ddeb122f750a5a7fa80d2ac43e851d6e5984dc4ff42ec127d3a languageName: node linkType: hard -"minipass@npm:^7.0.4, minipass@npm:^7.1.2": - version: 7.1.2 - resolution: "minipass@npm:7.1.2" - checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557 - languageName: node - linkType: hard - -"minipass@npm:^7.1.3": +"minipass@npm:^7.0.4, minipass@npm:^7.1.2, minipass@npm:^7.1.3": version: 7.1.3 resolution: "minipass@npm:7.1.3" checksum: 10c0/539da88daca16533211ea5a9ee98dc62ff5742f531f54640dd34429e621955e91cc280a91a776026264b7f9f6735947629f920944e9c1558369e8bf22eb33fbb languageName: node linkType: hard -"minizlib@npm:^3.0.1": - version: 3.0.2 - resolution: "minizlib@npm:3.0.2" +"minizlib@npm:^3.1.0": + version: 3.1.0 + resolution: "minizlib@npm:3.1.0" dependencies: minipass: "npm:^7.1.2" - checksum: 10c0/9f3bd35e41d40d02469cb30470c55ccc21cae0db40e08d1d0b1dff01cc8cc89a6f78e9c5d2b7c844e485ec0a8abc2238111213fdc5b2038e6d1012eacf316f78 - languageName: node - linkType: hard - -"mkdirp@npm:^3.0.1": - version: 3.0.1 - resolution: "mkdirp@npm:3.0.1" - bin: - mkdirp: dist/cjs/src/bin.js - checksum: 10c0/9f2b975e9246351f5e3a40dcfac99fcd0baa31fbfab615fe059fb11e51f10e4803c63de1f384c54d656e4db31d000e4767e9ef076a22e12a641357602e31d57d + checksum: 10c0/5aad75ab0090b8266069c9aabe582c021ae53eb33c6c691054a13a45db3b4f91a7fb1bd79151e6b4e9e9a86727b522527c0a06ec7d45206b745d54cd3097bcec languageName: node linkType: hard @@ -2675,10 +2570,10 @@ __metadata: languageName: node linkType: hard -"mute-stream@npm:^2.0.0": - version: 2.0.0 - resolution: "mute-stream@npm:2.0.0" - checksum: 10c0/2cf48a2087175c60c8dcdbc619908b49c07f7adcfc37d29236b0c5c612d6204f789104c98cc44d38acab7b3c96f4a3ec2cfdc4934d0738d876dbefa2a12c69f4 +"mute-stream@npm:^3.0.0": + version: 3.0.0 + resolution: "mute-stream@npm:3.0.0" + checksum: 10c0/12cdb36a101694c7a6b296632e6d93a30b74401873cf7507c88861441a090c71c77a58f213acadad03bc0c8fa186639dec99d68a14497773a8744320c136e701 languageName: node linkType: hard @@ -2707,13 +2602,6 @@ __metadata: languageName: node linkType: hard -"nofilter@npm:^3.0.2": - version: 3.1.0 - resolution: "nofilter@npm:3.1.0" - checksum: 10c0/92459f3864a067b347032263f0b536223cbfc98153913b5dce350cb39c8470bc1813366e41993f22c33cc6400c0f392aa324a4b51e24c22040635c1cdb046499 - languageName: node - linkType: hard - "nopt@npm:^8.0.0": version: 8.1.0 resolution: "nopt@npm:8.1.0" @@ -2732,99 +2620,114 @@ __metadata: languageName: node linkType: hard -"npm-run-all2@npm:^9.0.0": - version: 9.0.0 - resolution: "npm-run-all2@npm:9.0.0" +"npm-run-all2@npm:^9.0.3": + version: 9.0.3 + resolution: "npm-run-all2@npm:9.0.3" dependencies: - ansi-styles: "npm:^6.2.1" + ansi-styles: "npm:^7.0.0" cross-spawn: "npm:^7.0.6" memorystream: "npm:^0.3.1" picomatch: "npm:^4.0.2" - pidtree: "npm:^0.6.0" + pidtree: "npm:^1.0.0" read-package-json-fast: "npm:^6.0.0" - shell-quote: "npm:^1.7.3" + shell-quote: "npm:^1.8.4" which: "npm:^7.0.0" bin: npm-run-all: bin/npm-run-all/index.js npm-run-all2: bin/npm-run-all/index.js run-p: bin/run-p/index.js run-s: bin/run-s/index.js - checksum: 10c0/96368c5df6ede7e0fed895a64df0b40df68c31fb9fc8e31321e23163f1a2244c17c80b61b7d7069465eaa7f31d91ef0b7d3fb465b252803da13eb535f3b42759 - languageName: node - linkType: hard - -"onetime@npm:^7.0.0": - version: 7.0.0 - resolution: "onetime@npm:7.0.0" - dependencies: - mimic-function: "npm:^5.0.0" - checksum: 10c0/5cb9179d74b63f52a196a2e7037ba2b9a893245a5532d3f44360012005c9cadb60851d56716ebff18a6f47129dab7168022445df47c2aff3b276d92585ed1221 - languageName: node - linkType: hard - -"oxlint@npm:^1.13.0": - version: 1.13.0 - resolution: "oxlint@npm:1.13.0" - dependencies: - "@oxlint/darwin-arm64": "npm:1.13.0" - "@oxlint/darwin-x64": "npm:1.13.0" - "@oxlint/linux-arm64-gnu": "npm:1.13.0" - "@oxlint/linux-arm64-musl": "npm:1.13.0" - "@oxlint/linux-x64-gnu": "npm:1.13.0" - "@oxlint/linux-x64-musl": "npm:1.13.0" - "@oxlint/win32-arm64": "npm:1.13.0" - "@oxlint/win32-x64": "npm:1.13.0" + checksum: 10c0/71a72e7ed7e11a8f4e326ab9769333a4f096998c1117e6cf804f7d0cf6e6fe04725a5c80a509b1d6275015d33d3f41f13c530e01dbd5e89b5bad6cf499deebe1 + languageName: node + linkType: hard + +"obug@npm:^2.1.2": + version: 2.2.1 + resolution: "obug@npm:2.2.1" + checksum: 10c0/8a7c001847d880fa6ba83c7bbee6a80fd271ee628439cd508c8647d53b217abb1759e2d5e4aaeb09a35d0a274bdb225a0a5a78eded3213d63e656153cf411b63 + languageName: node + linkType: hard + +"oxlint@npm:^1.82.0": + version: 1.82.0 + resolution: "oxlint@npm:1.82.0" + dependencies: + "@oxlint/binding-android-arm-eabi": "npm:1.82.0" + "@oxlint/binding-android-arm64": "npm:1.82.0" + "@oxlint/binding-darwin-arm64": "npm:1.82.0" + "@oxlint/binding-darwin-x64": "npm:1.82.0" + "@oxlint/binding-freebsd-x64": "npm:1.82.0" + "@oxlint/binding-linux-arm-gnueabihf": "npm:1.82.0" + "@oxlint/binding-linux-arm-musleabihf": "npm:1.82.0" + "@oxlint/binding-linux-arm64-gnu": "npm:1.82.0" + "@oxlint/binding-linux-arm64-musl": "npm:1.82.0" + "@oxlint/binding-linux-ppc64-gnu": "npm:1.82.0" + "@oxlint/binding-linux-riscv64-gnu": "npm:1.82.0" + "@oxlint/binding-linux-riscv64-musl": "npm:1.82.0" + "@oxlint/binding-linux-s390x-gnu": "npm:1.82.0" + "@oxlint/binding-linux-x64-gnu": "npm:1.82.0" + "@oxlint/binding-linux-x64-musl": "npm:1.82.0" + "@oxlint/binding-openharmony-arm64": "npm:1.82.0" + "@oxlint/binding-win32-arm64-msvc": "npm:1.82.0" + "@oxlint/binding-win32-ia32-msvc": "npm:1.82.0" + "@oxlint/binding-win32-x64-msvc": "npm:1.82.0" peerDependencies: - oxlint-tsgolint: ">=0.0.4" + oxlint-tsgolint: ">=7.0.2001" + vite-plus: "*" dependenciesMeta: - "@oxlint/darwin-arm64": + "@oxlint/binding-android-arm-eabi": + optional: true + "@oxlint/binding-android-arm64": + optional: true + "@oxlint/binding-darwin-arm64": + optional: true + "@oxlint/binding-darwin-x64": + optional: true + "@oxlint/binding-freebsd-x64": + optional: true + "@oxlint/binding-linux-arm-gnueabihf": + optional: true + "@oxlint/binding-linux-arm-musleabihf": + optional: true + "@oxlint/binding-linux-arm64-gnu": + optional: true + "@oxlint/binding-linux-arm64-musl": + optional: true + "@oxlint/binding-linux-ppc64-gnu": + optional: true + "@oxlint/binding-linux-riscv64-gnu": optional: true - "@oxlint/darwin-x64": + "@oxlint/binding-linux-riscv64-musl": optional: true - "@oxlint/linux-arm64-gnu": + "@oxlint/binding-linux-s390x-gnu": optional: true - "@oxlint/linux-arm64-musl": + "@oxlint/binding-linux-x64-gnu": optional: true - "@oxlint/linux-x64-gnu": + "@oxlint/binding-linux-x64-musl": optional: true - "@oxlint/linux-x64-musl": + "@oxlint/binding-openharmony-arm64": optional: true - "@oxlint/win32-arm64": + "@oxlint/binding-win32-arm64-msvc": optional: true - "@oxlint/win32-x64": + "@oxlint/binding-win32-ia32-msvc": + optional: true + "@oxlint/binding-win32-x64-msvc": optional: true peerDependenciesMeta: oxlint-tsgolint: optional: true + vite-plus: + optional: true bin: - oxc_language_server: bin/oxc_language_server oxlint: bin/oxlint - checksum: 10c0/e9cd7e23f60ab7dfe37529a4c36ffd8c45165744dc5483af049df04b51ff09fd0e1b57679a05010c37c78419ee573d5749b3e0e5268a31fea7a2daa29e1105f2 - languageName: node - linkType: hard - -"p-limit@npm:^4.0.0": - version: 4.0.0 - resolution: "p-limit@npm:4.0.0" - dependencies: - yocto-queue: "npm:^1.0.0" - checksum: 10c0/a56af34a77f8df2ff61ddfb29431044557fcbcb7642d5a3233143ebba805fc7306ac1d448de724352861cb99de934bc9ab74f0d16fe6a5460bdbdf938de875ad - languageName: node - linkType: hard - -"p-locate@npm:^6.0.0": - version: 6.0.0 - resolution: "p-locate@npm:6.0.0" - dependencies: - p-limit: "npm:^4.0.0" - checksum: 10c0/d72fa2f41adce59c198270aa4d3c832536c87a1806e0f69dffb7c1a7ca998fb053915ca833d90f166a8c082d3859eabfed95f01698a3214c20df6bb8de046312 + checksum: 10c0/ad26a3461be109f1464a47520ac99cee3bce86f36a659718a5792ccc544fb2a9a381a667344ca47311dc60cfa10296c51f2c38c7d47f145fe882fddb224ae0af languageName: node linkType: hard "p-map@npm:^7.0.4": - version: 7.0.4 - resolution: "p-map@npm:7.0.4" - checksum: 10c0/a5030935d3cb2919d7e89454d1ce82141e6f9955413658b8c9403cfe379283770ed3048146b44cde168aa9e8c716505f196d5689db0ae3ce9a71521a2fef3abd + version: 7.0.7 + resolution: "p-map@npm:7.0.7" + checksum: 10c0/41a94dca7f3e79b9b78ee343c22bfa2922357b2131eed93d12f0347c631450306463118d11ba4accac504463911dee7bddb97d14cbf7055f9d29d2ea99b28209 languageName: node linkType: hard @@ -2845,13 +2748,6 @@ __metadata: languageName: node linkType: hard -"path-exists@npm:^5.0.0": - version: 5.0.0 - resolution: "path-exists@npm:5.0.0" - checksum: 10c0/b170f3060b31604cde93eefdb7392b89d832dfbc1bed717c9718cbe0f230c1669b7e75f87e19901da2250b84d092989a0f9e44d2ef41deb09aa3ad28e691a40a - languageName: node - linkType: hard - "path-key@npm:^3.1.0": version: 3.1.1 resolution: "path-key@npm:3.1.1" @@ -2870,32 +2766,25 @@ __metadata: linkType: hard "picomatch@npm:^2.3.1": - version: 2.3.1 - resolution: "picomatch@npm:2.3.1" - checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be - languageName: node - linkType: hard - -"picomatch@npm:^4.0.2": - version: 4.0.3 - resolution: "picomatch@npm:4.0.3" - checksum: 10c0/9582c951e95eebee5434f59e426cddd228a7b97a0161a375aed4be244bd3fe8e3a31b846808ea14ef2c8a2527a6eeab7b3946a67d5979e81694654f939473ae2 + version: 2.3.2 + resolution: "picomatch@npm:2.3.2" + checksum: 10c0/a554d1709e59be97d1acb9eaedbbc700a5c03dbd4579807baed95100b00420bc729335440ef15004ae2378984e2487a7c1cebd743cfdb72b6fa9ab69223c0d61 languageName: node linkType: hard -"picomatch@npm:^4.0.4": - version: 4.0.4 - resolution: "picomatch@npm:4.0.4" - checksum: 10c0/e2c6023372cc7b5764719a5ffb9da0f8e781212fa7ca4bd0562db929df8e117460f00dff3cb7509dacfc06b86de924b247f504d0ce1806a37fac4633081466b0 +"picomatch@npm:^4.0.2, picomatch@npm:^4.0.4, picomatch@npm:^4.0.7": + version: 4.0.7 + resolution: "picomatch@npm:4.0.7" + checksum: 10c0/beb6ae02c43ae44e84883b90830196d9046b1726ead292adcf7f57945e0bb0d992d68563d87e03b484b6f3c9a5c6defda7523477f047d7f0e663f126cc01787f languageName: node linkType: hard -"pidtree@npm:^0.6.0": - version: 0.6.0 - resolution: "pidtree@npm:0.6.0" +"pidtree@npm:^1.0.0": + version: 1.0.0 + resolution: "pidtree@npm:1.0.0" bin: pidtree: bin/pidtree.js - checksum: 10c0/0829ec4e9209e230f74ebf4265f5ccc9ebfb488334b525cb13f86ff801dca44b362c41252cd43ae4d7653a10a5c6ab3be39d2c79064d6895e0d78dc50a5ed6e9 + checksum: 10c0/0cd0bd222ffba553ad4807c6795988bd18b587e9c063149139fb8db78c3b747f43d3b1511372eeda6b29a1c96670d2ee17d65a33f3c54e15d98f800512e613cd languageName: node linkType: hard @@ -2915,21 +2804,21 @@ __metadata: languageName: node linkType: hard -"prettier@npm:^3.6.2": - version: 3.6.2 - resolution: "prettier@npm:3.6.2" +"prettier@npm:^3.9.6": + version: 3.9.6 + resolution: "prettier@npm:3.9.6" bin: prettier: bin/prettier.cjs - checksum: 10c0/488cb2f2b99ec13da1e50074912870217c11edaddedeadc649b1244c749d15ba94e846423d062e2c4c9ae683e2d65f754de28889ba06e697ac4f988d44f45812 + checksum: 10c0/9f7ddae234035868f3daab3dc34e6de7e54622185afb017378029f0c09a9c023248ccf6f34def0b17a0538e18c47aa1b3188bab72965d1bf735919baa0747e99 languageName: node linkType: hard "pretty-ms@npm:^9.3.0": - version: 9.3.0 - resolution: "pretty-ms@npm:9.3.0" + version: 9.3.1 + resolution: "pretty-ms@npm:9.3.1" dependencies: parse-ms: "npm:^4.0.0" - checksum: 10c0/555ea39a1de48a30601938aedb76d682871d33b6dee015281c37108921514b11e1792928b1648c2e5589acc73c8ef0fb5e585fb4c718e340a28b86799e90fb34 + checksum: 10c0/f034e6197922da40d6f0e73c835baa0f87d89f660966deb651305ee0567e20d5258b9c1782de098069b479036653bd1ad4ee1d6d816d1fde0e47c62d0ce5763d languageName: node linkType: hard @@ -2966,16 +2855,6 @@ __metadata: languageName: node linkType: hard -"restore-cursor@npm:^5.0.0": - version: 5.1.0 - resolution: "restore-cursor@npm:5.1.0" - dependencies: - onetime: "npm:^7.0.0" - signal-exit: "npm:^4.1.0" - checksum: 10c0/c2ba89131eea791d1b25205bdfdc86699767e2b88dee2a590b1a6caa51737deac8bad0260a5ded2f7c074b7db2f3a626bcf1fcf3cdf35974cbeea5e2e6764f60 - languageName: node - linkType: hard - "reusify@npm:^1.0.4": version: 1.1.0 resolution: "reusify@npm:1.1.0" @@ -2983,13 +2862,6 @@ __metadata: languageName: node linkType: hard -"rfdc@npm:^1.4.1": - version: 1.4.1 - resolution: "rfdc@npm:1.4.1" - checksum: 10c0/4614e4292356cafade0b6031527eea9bc90f2372a22c012313be1dcc69a3b90c7338158b414539be863fa95bfcb2ddcd0587be696841af4e6679d85e62c060c7 - languageName: node - linkType: hard - "run-parallel@npm:^1.1.9": version: 1.2.0 resolution: "run-parallel@npm:1.2.0" @@ -3006,12 +2878,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.2, semver@npm:^7.5.3, semver@npm:^7.7.1": - version: 7.7.2 - resolution: "semver@npm:7.7.2" +"semver@npm:^7.3.2, semver@npm:^7.5.3, semver@npm:^7.8.2": + version: 7.8.5 + resolution: "semver@npm:7.8.5" bin: semver: bin/semver.js - checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea + checksum: 10c0/b1f3127a5be8125a94f37188b361c212466c292c6910adce3ec106cff5dc211ccaedc4739c11bb70fda59d6fc1f040a9bca289f4e093451521a2372e5231fe0c languageName: node linkType: hard @@ -3040,10 +2912,10 @@ __metadata: languageName: node linkType: hard -"shell-quote@npm:^1.7.3": - version: 1.8.3 - resolution: "shell-quote@npm:1.8.3" - checksum: 10c0/bee87c34e1e986cfb4c30846b8e6327d18874f10b535699866f368ade11ea4ee45433d97bf5eada22c4320c27df79c3a6a7eb1bf3ecfc47f2c997d9e5e2672fd +"shell-quote@npm:^1.8.4": + version: 1.10.0 + resolution: "shell-quote@npm:1.10.0" + checksum: 10c0/46ee59bfd972ce6a45500c44ed130dff2d0a7d6fbac9841e59d548518cad8060a06393c9a5dcbc0cede294ad80b2a2cd8c904679e09265f53efc0a0879f30961 languageName: node linkType: hard @@ -3061,26 +2933,6 @@ __metadata: languageName: node linkType: hard -"slice-ansi@npm:^7.1.0": - version: 7.1.0 - resolution: "slice-ansi@npm:7.1.0" - dependencies: - ansi-styles: "npm:^6.2.1" - is-fullwidth-code-point: "npm:^5.0.0" - checksum: 10c0/631c971d4abf56cf880f034d43fcc44ff883624867bf11ecbd538c47343911d734a4656d7bc02362b40b89d765652a7f935595441e519b59e2ad3f4d5d6fe7ca - languageName: node - linkType: hard - -"slice-ansi@npm:^8.0.0": - version: 8.0.0 - resolution: "slice-ansi@npm:8.0.0" - dependencies: - ansi-styles: "npm:^6.2.3" - is-fullwidth-code-point: "npm:^5.1.0" - checksum: 10c0/0ce4aa91febb7cea4a00c2c27bb820fa53b6d2862ce0f80f7120134719f7914fc416b0ed966cf35250a3169e152916392f35917a2d7cad0fcc5d8b841010fa9a - languageName: node - linkType: hard - "slice-ansi@npm:^9.0.0": version: 9.0.0 resolution: "slice-ansi@npm:9.0.0" @@ -3114,17 +2966,6 @@ __metadata: languageName: node linkType: hard -"string-width@npm:^4.1.0": - version: 4.2.3 - resolution: "string-width@npm:4.2.3" - dependencies: - emoji-regex: "npm:^8.0.0" - is-fullwidth-code-point: "npm:^3.0.0" - strip-ansi: "npm:^6.0.1" - checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b - languageName: node - linkType: hard - "string-width@npm:^7.0.0, string-width@npm:^7.2.0": version: 7.2.0 resolution: "string-width@npm:7.2.0" @@ -3136,35 +2977,17 @@ __metadata: languageName: node linkType: hard -"string-width@npm:^8.2.0": - version: 8.2.1 - resolution: "string-width@npm:8.2.1" +"string-width@npm:^8.2.0, string-width@npm:^8.2.1": + version: 8.2.2 + resolution: "string-width@npm:8.2.2" dependencies: get-east-asian-width: "npm:^1.5.0" strip-ansi: "npm:^7.1.2" - checksum: 10c0/d467b4eaf4c40a01bb438a2620e77badd2456ffd5131c9973abe4f3acf7c802d5b21f3b6a00a5e33a7fc28ca8f9c103226e01bac61e9f259659c6f46d78e353a - languageName: node - linkType: hard - -"strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": - version: 6.0.1 - resolution: "strip-ansi@npm:6.0.1" - dependencies: - ansi-regex: "npm:^5.0.1" - checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 + checksum: 10c0/895624534e4e2f229e880bbc30aa77bdeb758e1a0edce203e0a17b8b4f08b8d3c1156516efc50a35e3efd0052d938a73797692111250ac9f52ee384710a01714 languageName: node linkType: hard -"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": - version: 7.1.0 - resolution: "strip-ansi@npm:7.1.0" - dependencies: - ansi-regex: "npm:^6.0.1" - checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4 - languageName: node - linkType: hard - -"strip-ansi@npm:^7.1.2": +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0, strip-ansi@npm:^7.1.2": version: 7.2.0 resolution: "strip-ansi@npm:7.2.0" dependencies: @@ -3186,16 +3009,15 @@ __metadata: linkType: hard "tar@npm:^7.4.0": - version: 7.4.3 - resolution: "tar@npm:7.4.3" + version: 7.5.22 + resolution: "tar@npm:7.5.22" dependencies: "@isaacs/fs-minipass": "npm:^4.0.0" chownr: "npm:^3.0.0" minipass: "npm:^7.1.2" - minizlib: "npm:^3.0.1" - mkdirp: "npm:^3.0.1" + minizlib: "npm:^3.1.0" yallist: "npm:^5.0.0" - checksum: 10c0/d4679609bb2a9b48eeaf84632b6d844128d2412b95b6de07d53d8ee8baf4ca0857c9331dfa510390a0727b550fd543d4d1a10995ad86cdf078423fbb8d99831d + checksum: 10c0/1311f6be85a8157ac4c9147bae43e13923d2a1aae15e4aa1bd5239e4e03d2cf53cfe103dde7f35832fbb4c938b042856bc8e9a0afd29abd05e2d1608788c4fea languageName: node linkType: hard @@ -3213,10 +3035,10 @@ __metadata: languageName: node linkType: hard -"tinyexec@npm:^1.1.2": - version: 1.1.2 - resolution: "tinyexec@npm:1.1.2" - checksum: 10c0/9e0ef6c001ce54688cf16833a02f70a339276219ca947b88930b124267de2cffc764ff44e87e7369384b1d75ab63491465412cbbdf06f2437956b9ab66ab4491 +"tinyexec@npm:^1.3.1": + version: 1.3.1 + resolution: "tinyexec@npm:1.3.1" + checksum: 10c0/c590369cb3fa73cc18a3998caec8a00f9712d91309c881be3ac52b160fb2f80c7b1fbf3591858ab6abab47ad55385b0c86ec19982e32441a01f55298dab9ccd2 languageName: node linkType: hard @@ -3257,14 +3079,17 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^0.21.3": - version: 0.21.3 - resolution: "type-fest@npm:0.21.3" - checksum: 10c0/902bd57bfa30d51d4779b641c2bc403cdf1371fb9c91d3c058b0133694fcfdb817aef07a47f40faf79039eecbaa39ee9d3c532deff244f3a19ce68cea71a61e8 +"typescript@npm:^6.0.3": + version: 6.0.3 + resolution: "typescript@npm:6.0.3" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/4a25ff5045b984370f48f196b3a0120779b1b343d40b9a68d114ea5e5fff099809b2bb777576991a63a5cd59cf7bffd96ff6fe10afcefbcb8bd6fb96ad4b6606 languageName: node linkType: hard -"typescript@npm:^7.0.0": +"typescript@npm:^7.0.2": version: 7.0.2 resolution: "typescript@npm:7.0.2" dependencies: @@ -3335,7 +3160,17 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^7.0.0#optional!builtin": +"typescript@patch:typescript@npm%3A^6.0.3#optional!builtin": + version: 6.0.3 + resolution: "typescript@patch:typescript@npm%3A6.0.3#optional!builtin::version=6.0.3&hash=5786d5" + bin: + tsc: bin/tsc + tsserver: bin/tsserver + checksum: 10c0/2f25c74e65663c248fa1ade2b8459d9ce5372ff9dad07067310f132966ebec1d93f6c42f0baf77a6b6a7a91460463f708e6887013aaade22111037457c6b25df + languageName: node + linkType: hard + +"typescript@patch:typescript@npm%3A^7.0.2#optional!builtin": version: 7.0.2 resolution: "typescript@patch:typescript@npm%3A7.0.2#optional!builtin::version=7.0.2&hash=3bafbf" dependencies: @@ -3406,17 +3241,10 @@ __metadata: languageName: node linkType: hard -"undici-types@npm:~7.10.0": - version: 7.10.0 - resolution: "undici-types@npm:7.10.0" - checksum: 10c0/8b00ce50e235fe3cc601307f148b5e8fb427092ee3b23e8118ec0a5d7f68eca8cee468c8fc9f15cbb2cf2a3797945ebceb1cbd9732306a1d00e0a9b6afa0f635 - languageName: node - linkType: hard - -"unicorn-magic@npm:^0.1.0": - version: 0.1.0 - resolution: "unicorn-magic@npm:0.1.0" - checksum: 10c0/e4ed0de05b0a05e735c7d8a2930881e5efcfc3ec897204d5d33e7e6247f4c31eac92e383a15d9a6bccb7319b4271ee4bea946e211bf14951fec6ff2cbbb66a92 +"undici-types@npm:~8.9.0": + version: 8.9.0 + resolution: "undici-types@npm:8.9.0" + checksum: 10c0/51c712c20c087368f62c6fc0f2bc49fa76bfe5dec28ff01584bb677ff29b0622569783c02d43e151143808c48c0503f804093bd2c491b10f2a830138034cb451 languageName: node linkType: hard @@ -3480,36 +3308,14 @@ __metadata: languageName: node linkType: hard -"wrap-ansi@npm:^10.0.0": - version: 10.0.0 - resolution: "wrap-ansi@npm:10.0.0" - dependencies: - ansi-styles: "npm:^6.2.3" - string-width: "npm:^8.2.0" - strip-ansi: "npm:^7.1.2" - checksum: 10c0/6b163457630fe6d1c72aeed283a7410b2cc7487312df8b0ce96df3fbd64a2a7c948856ea97c25148c848627587c5c7945be474d8e723ab6011bb0756a53a9e89 - languageName: node - linkType: hard - -"wrap-ansi@npm:^6.2.0": - version: 6.2.0 - resolution: "wrap-ansi@npm:6.2.0" - dependencies: - ansi-styles: "npm:^4.0.0" - string-width: "npm:^4.1.0" - strip-ansi: "npm:^6.0.0" - checksum: 10c0/baad244e6e33335ea24e86e51868fe6823626e3a3c88d9a6674642afff1d34d9a154c917e74af8d845fd25d170c4ea9cf69a47133c3f3656e1252b3d462d9f6c - languageName: node - linkType: hard - "wrap-ansi@npm:^9.0.0": - version: 9.0.0 - resolution: "wrap-ansi@npm:9.0.0" + version: 9.0.2 + resolution: "wrap-ansi@npm:9.0.2" dependencies: ansi-styles: "npm:^6.2.1" string-width: "npm:^7.0.0" strip-ansi: "npm:^7.1.0" - checksum: 10c0/a139b818da9573677548dd463bd626a5a5286271211eb6e4e82f34a4f643191d74e6d4a9bb0a3c26ec90e6f904f679e0569674ac099ea12378a8b98e20706066 + checksum: 10c0/3305839b9a0d6fb930cb63a52f34d3936013d8b0682ff3ec133c9826512620f213800ffa19ea22904876d5b7e9a3c1f40682f03597d986a4ca881fa7b033688c languageName: node linkType: hard @@ -3536,12 +3342,12 @@ __metadata: languageName: node linkType: hard -"yaml@npm:^2.8.4": - version: 2.8.4 - resolution: "yaml@npm:2.8.4" +"yaml@npm:^2.9.0": + version: 2.9.1 + resolution: "yaml@npm:2.9.1" bin: yaml: bin.mjs - checksum: 10c0/0a33a1fa28d4bc79f61a12ec7ef7a2bce0ce5f8e80c6eaecfb4a0c88c08767dd1ede372b6a3bcd70891213b8c9f3169b355c97e77026d3b3459e10d2cccaef1e + checksum: 10c0/9d06676ef02b89559a8b10a71882bd2cdae81e8393dc8dbc871615c3259475d9609ad973d19cb3c9e71e72d6206e3d1e7aa241c7e55f3d16fd2e77db305827d6 languageName: node linkType: hard @@ -3553,29 +3359,15 @@ __metadata: linkType: hard "yargs@npm:^18.0.0": - version: 18.0.0 - resolution: "yargs@npm:18.0.0" + version: 18.1.0 + resolution: "yargs@npm:18.1.0" dependencies: cliui: "npm:^9.0.1" escalade: "npm:^3.1.1" get-caller-file: "npm:^2.0.5" - string-width: "npm:^7.2.0" + string-width: "npm:^8.2.1" y18n: "npm:^5.0.5" yargs-parser: "npm:^22.0.0" - checksum: 10c0/bf290e4723876ea9c638c786a5c42ac28e03c9ca2325e1424bf43b94e5876456292d3ed905b853ebbba6daf43ed29e772ac2a6b3c5fb1b16533245d6211778f3 - languageName: node - linkType: hard - -"yocto-queue@npm:^1.0.0": - version: 1.2.1 - resolution: "yocto-queue@npm:1.2.1" - checksum: 10c0/5762caa3d0b421f4bdb7a1926b2ae2189fc6e4a14469258f183600028eb16db3e9e0306f46e8ebf5a52ff4b81a881f22637afefbef5399d6ad440824e9b27f9f - languageName: node - linkType: hard - -"yoctocolors-cjs@npm:^2.1.2": - version: 2.1.3 - resolution: "yoctocolors-cjs@npm:2.1.3" - checksum: 10c0/584168ef98eb5d913473a4858dce128803c4a6cd87c0f09e954fa01126a59a33ab9e513b633ad9ab953786ed16efdd8c8700097a51635aafaeed3fef7712fa79 + checksum: 10c0/86052bbed90a9aaaaf1eabe004f47c7420e1b7f8d314170cfb0ad4721f518ec2fb7ba5a6daa20708b1595aba257f1554b2d5b3f5606356f86aa9dae18de0bec5 languageName: node linkType: hard