deps: bump the dependency-updates group with 4 updates (#1794)

Bumps the dependency-updates group with 4 updates: [react-focus-on](https://github.com/theKashey/react-focus-on), [prettier](https://github.com/prettier/prettier), [yaml](https://github.com/eemeli/yaml) and [tap](https://github.com/tapjs/tapjs). Updates `react-focus-on` from 3.10.0 to 3.10.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/theKashey/react-focus-on/blob/master/CHANGELOG.md">react-focus-on's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/theKashey/react-focus-on/compare/v3.10.0...v3.10.1">3.10.1</a> (2025-11-30)</h2> <h3>Bug Fixes</h3> <ul> <li>correct SSR for 'default-enabled' locks (<a href="https://github.com/theKashey/react-focus-on/commit/3568707">3568707</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/theKashey/react-focus-on/commit/70598d5a812efa83a475f411310feabd55f21eff"><code>70598d5</code></a> 3.10.1</li> <li><a href="https://github.com/theKashey/react-focus-on/commit/5d5c80d58034a9835da3dee2d0ad2d78eff6a6ec"><code>5d5c80d</code></a> Merge pull request <a href="https://redirect.github.com/theKashey/react-focus-on/issues/110">#110</a> from theKashey/correct-ssr</li> <li><a href="https://github.com/theKashey/react-focus-on/commit/3568707f81efbd7da2346e5d159ca7a5ef91c604"><code>3568707</code></a> fix: correct SSR for 'default-enabled' locks</li> <li><a href="https://github.com/theKashey/react-focus-on/commit/11520935b0c134e45e4b47b37279380cf3a3d878"><code>1152093</code></a> 3.10.0</li> <li>See full diff in <a href="https://github.com/theKashey/react-focus-on/compare/v3.10.0...v3.10.1">compare view</a></li> </ul> </details> <br /> Updates `prettier` from 3.6.2 to 3.7.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.7.3</h2> <h2>What's Changed</h2> <ul> <li>Fix <code>prettier.getFileInfo()</code> change that breaks VSCode extension by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18375">prettier/prettier#18375</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#373">Changelog</a></p> <h2>3.7.2</h2> <h2>What's Changed</h2> <ul> <li>Fix string print when switching quotes by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18351">prettier/prettier#18351</a></li> <li>Preserve quote for embedded HTML attribute values by <a href="https://github.com/kovsu"><code>@​kovsu</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18352">prettier/prettier#18352</a></li> <li>Fix comment in empty type literal by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18364">prettier/prettier#18364</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#372">Changelog</a></p> <h2>3.7.1</h2> <ul> <li>Fix performance regression in doc printer (<a href="https://redirect.github.com/prettier/prettier/pull/18342">#18342</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#371">Changelog</a></p> <h2>3.7.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.6.2...3.7.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/11/27/3.7.0">Release note</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.7.3</h1> <p><a href="https://github.com/prettier/prettier/compare/3.7.2...3.7.3">diff</a></p> <h4>API: Fix <code>prettier.getFileInfo()</code> change that breaks VSCode extension (<a href="https://redirect.github.com/prettier/prettier/pull/18375">#18375</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <p>An internal refactor accidentally broke the VSCode extension plugin loading.</p> <h1>3.7.2</h1> <p><a href="https://github.com/prettier/prettier/compare/3.7.1...3.7.2">diff</a></p> <h4>JavaScript: Fix string print when switching quotes (<a href="https://redirect.github.com/prettier/prettier/pull/18351">#18351</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="jsx"><code>// Input console.log(&quot;A descriptor\\'s .kind must be \&quot;method\&quot; or \&quot;field\&quot;.&quot;) <p>// Prettier 3.7.1 console.log('A descriptor\'s .kind must be &quot;method&quot; or &quot;field&quot;.');</p> <p>// Prettier 3.7.2 console.log('A descriptor\'s .kind must be &quot;method&quot; or &quot;field&quot;.'); </code></pre></p> <h4>JavaScript: Preserve quote for embedded HTML attribute values (<a href="https://redirect.github.com/prettier/prettier/pull/18352">#18352</a> by <a href="https://github.com/kovsu"><code>@​kovsu</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="tsx"><code>// Input const html = /* HTML */ ` &lt;div class=&quot;${styles.banner}&quot;&gt;&lt;/div&gt; `; <p>// Prettier 3.7.1 const html = /* HTML */ <code>&amp;lt;div class=${styles.banner}&amp;gt;&amp;lt;/div&amp;gt;</code>;</p> <p>// Prettier 3.7.2 const html = /* HTML */ <code>&amp;lt;div class=&amp;quot;${styles.banner}&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;</code>; </code></pre></p> <h4>TypeScript: Fix comment in empty type literal (<a href="https://redirect.github.com/prettier/prettier/pull/18364">#18364</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="tsx"><code>// Input export type XXX = { // tbd }; <p>// Prettier 3.7.1 &lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/fdfa6701767f5140a85902ecc9fb6444f5b4e3f8"><code>fdfa670</code></a> Release 3.7.3</li> <li><a href="https://github.com/prettier/prettier/commit/2dce3ec09081427775cc93a8d92cb828a0129e6f"><code>2dce3ec</code></a> Fix typo</li> <li><a href="https://github.com/prettier/prettier/commit/27d6c645cadeebe86011a195e8058d29888a68f6"><code>27d6c64</code></a> Revert previous change to <code>getFileInfo</code> (<a href="https://redirect.github.com/prettier/prettier/issues/18375">#18375</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/f4a7afaebfa27b975f6b4e336091cd600b0f5592"><code>f4a7afa</code></a> Add types for config related functions (<a href="https://redirect.github.com/prettier/prettier/issues/18376">#18376</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/9266e3e85b0dd4c594554cf9a91988e20c006f9b"><code>9266e3e</code></a> Add resolved test cases (<a href="https://redirect.github.com/prettier/prettier/issues/18358">#18358</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/3bfc014442370ebad42b42e8eceea6d25891148d"><code>3bfc014</code></a> Bump Prettier dependency to 3.7.2</li> <li><a href="https://github.com/prettier/prettier/commit/081b84695b060651dc221afcda7531f4c7731c2e"><code>081b846</code></a> Clean changelog_unreleased</li> <li><a href="https://github.com/prettier/prettier/commit/03384c964d99ef26cb1a7fec68e7e5e263220cea"><code>03384c9</code></a> Release 3.7.2</li> <li><a href="https://github.com/prettier/prettier/commit/514e51afa2046aac7beb651270f0f4ce74a3dafa"><code>514e51a</code></a> Release <code>@​prettier/plugin-hermes</code> &amp; <code>@​prettier/plugin-oxc</code> v0.1.2</li> <li><a href="https://github.com/prettier/prettier/commit/29a11ae1ae417b8d0fa66d88d656001a6a90e297"><code>29a11ae</code></a> Fix comment in empty type literal (<a href="https://redirect.github.com/prettier/prettier/issues/18364">#18364</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.6.2...3.7.3">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for prettier since your current version.</p> </details> <br /> Updates `yaml` from 2.8.1 to 2.8.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eemeli/yaml/releases">yaml's releases</a>.</em></p> <blockquote> <h2>v2.8.2</h2> <ul> <li>Serialize -0 as -0 (<a href="https://redirect.github.com/eemeli/yaml/issues/638">#638</a>)</li> <li>Do not double newlines for empty map values (<a href="https://redirect.github.com/eemeli/yaml/issues/642">#642</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eemeli/yaml/commit/086fa6b5bae325da18734750cddee231ce578930"><code>086fa6b</code></a> 2.8.2</li> <li><a href="https://github.com/eemeli/yaml/commit/95f01e98032ddf199b42bb3ba0737303b35ef752"><code>95f01e9</code></a> chore: Add funding to package.json</li> <li><a href="https://github.com/eemeli/yaml/commit/152e204a9255064cc0af4f70b7fa0ac25e324a42"><code>152e204</code></a> style: Apply updated Prettier rules &amp; satisfy updated ESLint</li> <li><a href="https://github.com/eemeli/yaml/commit/3f3378c3bff1663a41f413dbf3c65b9bbb292db7"><code>3f3378c</code></a> chore: Drop unused dependency cross-env</li> <li><a href="https://github.com/eemeli/yaml/commit/f0b9af7b6fba48e0fe4b4a85a64cb3339e5dd7aa"><code>f0b9af7</code></a> chore: Update to <code>@​rollup/plugin-replace</code> v6</li> <li><a href="https://github.com/eemeli/yaml/commit/e3cafc70ca0dfac449f25cfa60a426f68c23e061"><code>e3cafc7</code></a> chore: Update to eslint-config-prettier v10</li> <li><a href="https://github.com/eemeli/yaml/commit/553c1b56f1f3a6b23b6f0358322dfbacfc3e80cb"><code>553c1b5</code></a> chore: Refresh lockfile</li> <li><a href="https://github.com/eemeli/yaml/commit/70a8db37c3bd8d6db6e8dddd4a1e9e6fc5a9a3b0"><code>70a8db3</code></a> fix: Do not double newlines for empty map values (<a href="https://redirect.github.com/eemeli/yaml/issues/642">#642</a>)</li> <li><a href="https://github.com/eemeli/yaml/commit/92821f2b8164f9831ff5a51f6e5a575e06365742"><code>92821f2</code></a> ci: Limit action permissions to minimum required</li> <li><a href="https://github.com/eemeli/yaml/commit/95285f82a888781d4ff010b26f9beb6d13778422"><code>95285f8</code></a> fix: Serialize -0 as -0 (fixes <a href="https://redirect.github.com/eemeli/yaml/issues/638">#638</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eemeli/yaml/compare/v2.8.1...v2.8.2">compare view</a></li> </ul> </details> <br /> Updates `tap` from 21.3.0 to 21.4.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/tapjs/tapjs/commit/ffea522148617ca2f05674d914398843c7405ad0"><code>ffea522</code></a> update versions</li> <li><a href="https://github.com/tapjs/tapjs/commit/c77c6ef5006b50a34ab21b1dfdb986de2b9da70d"><code>c77c6ef</code></a> changelog 21.4</li> <li><a href="https://github.com/tapjs/tapjs/commit/82e830d617c6abb2ca5b558c5f5599a700b9fec7"><code>82e830d</code></a> Add 'node-options' command</li> <li><a href="https://github.com/tapjs/tapjs/commit/9d991e24f200a8dce900f171fcba9be0232ac0fc"><code>9d991e2</code></a> run: add node-options command</li> <li><a href="https://github.com/tapjs/tapjs/commit/ab082a20ca38384303506c40aac4b20a066be493"><code>ab082a2</code></a> run: fix tests for list shuffling</li> <li><a href="https://github.com/tapjs/tapjs/commit/a964fb3918b7ae6f198f34f678f6d781696049a4"><code>a964fb3</code></a> reporter: don't cleanup comment tracking so aggressively</li> <li><a href="https://github.com/tapjs/tapjs/commit/57616c5e1aa72b64052fac02a7069a2118c303d2"><code>57616c5</code></a> Add --shuffle config to disorder the test run</li> <li><a href="https://github.com/tapjs/tapjs/commit/3837c73df4b4cc6089e3c3364fdcd613dcd80821"><code>3837c73</code></a> Add --coverage-exclude=&lt;pattern&gt; option</li> <li><a href="https://github.com/tapjs/tapjs/commit/010cff7b219f285ef5140ded58e7fc7bf5fa126e"><code>010cff7</code></a> docs: Update 'normal program' claims with caveats</li> <li><a href="https://github.com/tapjs/tapjs/commit/c71bafcd60fd2a6242fa0980c1235e1b5da8b5eb"><code>c71bafc</code></a> typescript: type stripping is no longer a warning on node 24</li> <li>Additional commits viewable in <a href="https://github.com/tapjs/tapjs/compare/tap@21.3.0...tap@21.4.0">compare view</a></li> </ul> </details> <br /> <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | tap | [>= 18.a, < 19] | | tap | [>= 19.a, < 20] | </details> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

dependabot[bot] committed Dec 1, 2025 at 07:58 UTC b69b2870442cd29878c9629545fd5ab2fc552a2e
1 file changed +192 -179
package-lock.json
+192 -179
@@ -10392,9 +10392,9 @@
10392 }
10393 },
10394 "node_modules/@tapjs/after": {
10395 - "version": "3.2.0",
10396 - "resolved": "https://registry.npmjs.org/@tapjs/after/-/after-3.2.0.tgz",
10397 - "integrity": "sha512-AGoIcs8+jR0mukJPdWmqK8z3MfkFuH8nLhE1BChksXBCc+h9lCnlkABA4j5G6RjX7/p4f4u3UixWd+Z9tP+2ww==",
10395 + "version": "3.2.1",
10396 + "resolved": "https://registry.npmjs.org/@tapjs/after/-/after-3.2.1.tgz",
10397 + "integrity": "sha512-9yfr1qNtWG2ABZAwEvkyZFo25JZAzX6hTL5f0t3d2FRU4aQmlUR+FBnh4RGm+uX9TGQaFTs39HEzq2zMal6USg==",
10398 "dev": true,
10399 "license": "BlueOak-1.0.0",
10400 "dependencies": {
@@ -10404,13 +10404,13 @@
10404 "node": "20 || >=22"
10405 },
10406 "peerDependencies": {
10407 - "@tapjs/core": "4.2.0"
10407 + "@tapjs/core": "4.3.0"
10408 }
10409 },
10410 "node_modules/@tapjs/after-each": {
10411 - "version": "4.2.0",
10412 - "resolved": "https://registry.npmjs.org/@tapjs/after-each/-/after-each-4.2.0.tgz",
10413 - "integrity": "sha512-oh/geyQpZPsB3qGaVoUmqAz0/kte/YGPRWJgmqQQRTnKoaoBaZFJdBAuq5kCrbXYQxKtvnAlBQRHV6uWf0kOIQ==",
10411 + "version": "4.2.1",
10412 + "resolved": "https://registry.npmjs.org/@tapjs/after-each/-/after-each-4.2.1.tgz",
10413 + "integrity": "sha512-MkNZHLJJqVJXsTQiO5SCCzj96rkoY0MoXblaE8hYZTSslA0yvd5mD5Ig+AE+mOkyCnGJgpTqlvXizLamuN9EjQ==",
10414 "dev": true,
10415 "license": "BlueOak-1.0.0",
10416 "dependencies": {
@@ -10420,13 +10420,13 @@
10420 "node": "20 || >=22"
10421 },
10422 "peerDependencies": {
10423 - "@tapjs/core": "4.2.0"
10423 + "@tapjs/core": "4.3.0"
10424 }
10425 },
10426 "node_modules/@tapjs/asserts": {
10427 - "version": "4.2.0",
10428 - "resolved": "https://registry.npmjs.org/@tapjs/asserts/-/asserts-4.2.0.tgz",
10429 - "integrity": "sha512-iKDETAks00D6MCgejmuFAYf+tE8vrTZbM6S0Dw5IyAaRcQmuy5FdjnCqmnWElRA41F6RZsLWCc44RDAzy9Cw+g==",
10427 + "version": "4.2.1",
10428 + "resolved": "https://registry.npmjs.org/@tapjs/asserts/-/asserts-4.2.1.tgz",
10429 + "integrity": "sha512-6JxRiPRu4BdICp3UH41/rgXeCnjhpD/AN+MZ8L8DfomXORvYle3jPymD+LGc/wTsHSOM83fwher7OpM4n1WRig==",
10430 "dev": true,
10431 "license": "BlueOak-1.0.0",
10432 "dependencies": {
@@ -10442,13 +10442,13 @@
10442 "url": "https://github.com/sponsors/isaacs"
10443 },
10444 "peerDependencies": {
10445 - "@tapjs/core": "4.2.0"
10445 + "@tapjs/core": "4.3.0"
10446 }
10447 },
10448 "node_modules/@tapjs/before": {
10449 - "version": "4.2.0",
10450 - "resolved": "https://registry.npmjs.org/@tapjs/before/-/before-4.2.0.tgz",
10451 - "integrity": "sha512-Tz8EbpqsNqESUf+eU9UFivHOkrcYbQtuytwY947VRClszl6rXNQmj/eQLh1/DgphTAh7MUElm02aPQpSskH6EA==",
10449 + "version": "4.2.1",
10450 + "resolved": "https://registry.npmjs.org/@tapjs/before/-/before-4.2.1.tgz",
10451 + "integrity": "sha512-Zy9Q8Q6Wy9pkoJs0Wr9DGiW9n9wzOKr/yldR3WNUX2SCKEoKRfDKYK2VFKJ885g7M2kyFYPcZ7MswbNjj6qxDw==",
10452 "dev": true,
10453 "license": "BlueOak-1.0.0",
10454 "dependencies": {
@@ -10458,13 +10458,13 @@
10458 "node": "20 || >=22"
10459 },
10460 "peerDependencies": {
10461 - "@tapjs/core": "4.2.0"
10461 + "@tapjs/core": "4.3.0"
10462 }
10463 },
10464 "node_modules/@tapjs/before-each": {
10465 - "version": "4.2.0",
10466 - "resolved": "https://registry.npmjs.org/@tapjs/before-each/-/before-each-4.2.0.tgz",
10467 - "integrity": "sha512-xMCK1UoAbDXOOS1i+uqDMH/zBoSxkD3CiSPdPAwG75wDNfttDif3f8lDI2NL/QXCtrZXGEYudoZqsd1FxMk8mQ==",
10465 + "version": "4.2.1",
10466 + "resolved": "https://registry.npmjs.org/@tapjs/before-each/-/before-each-4.2.1.tgz",
10467 + "integrity": "sha512-sjtTYhfx7mJaIc7vcd0Fd4pp1YCWzVeXYkG0o9sxKo+pCIYFUqKEVkIMF4Nphe+4ZEMCx9W8t0OkYkAmOg+NJQ==",
10468 "dev": true,
10469 "license": "BlueOak-1.0.0",
10470 "dependencies": {
@@ -10474,31 +10474,31 @@
10474 "node": "20 || >=22"
10475 },
10476 "peerDependencies": {
10477 - "@tapjs/core": "4.2.0"
10477 + "@tapjs/core": "4.3.0"
10478 }
10479 },
10480 "node_modules/@tapjs/chdir": {
10481 - "version": "3.2.0",
10482 - "resolved": "https://registry.npmjs.org/@tapjs/chdir/-/chdir-3.2.0.tgz",
10483 - "integrity": "sha512-abpKP6xuKv9OliULQtskQiv4X36Yw5tnJSDpsrifmyJWS4DGNWvQEWRbQlPNA1CygChxc9y5MRen4kc9RfS2xA==",
10481 + "version": "3.2.1",
10482 + "resolved": "https://registry.npmjs.org/@tapjs/chdir/-/chdir-3.2.1.tgz",
10483 + "integrity": "sha512-0WLPIAyhUWDUGfbzSlfnEfUP3hz0KdVDhhDuDstIQj3g2K56LU5mLyZrlk5l2O5tynGPJY+7BWf3ZtTMu+bjLw==",
10484 "dev": true,
10485 "license": "BlueOak-1.0.0",
10486 "engines": {
10487 "node": "20 || >=22"
10488 },
10489 "peerDependencies": {
10490 - "@tapjs/core": "4.2.0"
10490 + "@tapjs/core": "4.3.0"
10491 }
10492 },
10493 "node_modules/@tapjs/config": {
10494 - "version": "5.2.0",
10495 - "resolved": "https://registry.npmjs.org/@tapjs/config/-/config-5.2.0.tgz",
10496 - "integrity": "sha512-+tXeB9bewCXvgum4LdQMu9jTuKv7MvcuBtyJB5/zb3A+aFl9soxf5IoBvPEgsSFyn5bc2CKs3So5BI0GRQR7GQ==",
10494 + "version": "5.3.0",
10495 + "resolved": "https://registry.npmjs.org/@tapjs/config/-/config-5.3.0.tgz",
10496 + "integrity": "sha512-Hx7N7lWoP6s410NbHDiWTaCyeMCeg5Iqwo9WqhlrgiwlTYlXq/R7xq1GM+AHKMKBc1gmtTep7gYwlPWTvhLv7g==",
10497 "dev": true,
10498 "license": "BlueOak-1.0.0",
10499 "dependencies": {
10500 - "@tapjs/core": "4.2.0",
10501 - "@tapjs/test": "4.2.0",
10500 + "@tapjs/core": "4.3.0",
10501 + "@tapjs/test": "4.2.1",
10502 "chalk": "^5.6.2",
10503 "jackspeak": "^4.0.1",
10504 "polite-json": "^5.0.0",
@@ -10512,8 +10512,8 @@
10512 "url": "https://github.com/sponsors/isaacs"
10513 },
10514 "peerDependencies": {
10515 - "@tapjs/core": "4.2.0",
10516 - "@tapjs/test": "4.2.0"
10515 + "@tapjs/core": "4.3.0",
10516 + "@tapjs/test": "4.2.1"
10517 }
10518 },
10519 "node_modules/@tapjs/config/node_modules/jackspeak": {
@@ -10543,15 +10543,15 @@
10543 }
10544 },
10545 "node_modules/@tapjs/core": {
10546 - "version": "4.2.0",
10547 - "resolved": "https://registry.npmjs.org/@tapjs/core/-/core-4.2.0.tgz",
10548 - "integrity": "sha512-FXNqlb383YpO2sG8pnRC/ipzhAgt3neNaqmrBh2oqnAr+x4Lol3WguNi4eZSTsa42sCHFFultXKaeehUUIveEw==",
10546 + "version": "4.3.0",
10547 + "resolved": "https://registry.npmjs.org/@tapjs/core/-/core-4.3.0.tgz",
10548 + "integrity": "sha512-I3BZ02dhdjxpuGXAWTe4oKhA217dZVQKMjqj2CRDVA0zwHL0fZdanrzL3CtN458OyEzjKxIX2QL3qVO340eAFg==",
10549 "dev": true,
10550 "license": "BlueOak-1.0.0",
10551 "dependencies": {
10552 - "@tapjs/processinfo": "^3.1.8",
10552 + "@tapjs/processinfo": "^3.1.9",
10553 "@tapjs/stack": "4.2.0",
10554 - "@tapjs/test": "4.2.0",
10554 + "@tapjs/test": "4.2.1",
10555 "async-hook-domain": "^4.0.1",
10556 "diff": "^8.0.2",
10557 "is-actual-promise": "^1.0.1",
@@ -10596,9 +10596,9 @@
10596 }
10597 },
10598 "node_modules/@tapjs/filter": {
10599 - "version": "4.2.0",
10600 - "resolved": "https://registry.npmjs.org/@tapjs/filter/-/filter-4.2.0.tgz",
10601 - "integrity": "sha512-f6/FWUaB24oVzrEseGRf2YQgrkBudae3h0XoG52BITRmdpRMn1Lcs0g949192x00bDdPGcaErg1uL4WrNUYe4Q==",
10599 + "version": "4.2.1",
10600 + "resolved": "https://registry.npmjs.org/@tapjs/filter/-/filter-4.2.1.tgz",
10601 + "integrity": "sha512-K15Ffc5LBsJAdgVmRN2lnWtrCzDIAWXMaYkx8HEWQqI6MiCuVCnOZAfuIWgqi9yVHCROf1Pkbq/4koAXAWAvtQ==",
10602 "dev": true,
10603 "license": "BlueOak-1.0.0",
10604 "engines": {
@@ -10608,13 +10608,13 @@
10608 "url": "https://github.com/sponsors/isaacs"
10609 },
10610 "peerDependencies": {
10611 - "@tapjs/core": "4.2.0"
10611 + "@tapjs/core": "4.3.0"
10612 }
10613 },
10614 "node_modules/@tapjs/fixture": {
10615 - "version": "4.2.0",
10616 - "resolved": "https://registry.npmjs.org/@tapjs/fixture/-/fixture-4.2.0.tgz",
10617 - "integrity": "sha512-1vTk6y2kZq+lfVhKsc/bxUpRwMDx/R705qBj03vni/zUc3/QxOpOKuDJU2mQZ68ikIZTzTdDgyYLNb0VT3tstA==",
10615 + "version": "4.2.1",
10616 + "resolved": "https://registry.npmjs.org/@tapjs/fixture/-/fixture-4.2.1.tgz",
10617 + "integrity": "sha512-TrXNbzj+awfgX1dYmCejCdAbGCDCghU2bycObyYD+FDYZojWtuUEsN6Esh5Z5zF+iyBoWooB1z62t3jN+ahVxA==",
10618 "dev": true,
10619 "license": "BlueOak-1.0.0",
10620 "dependencies": {
@@ -10628,7 +10628,7 @@
10628 "url": "https://github.com/sponsors/isaacs"
10629 },
10630 "peerDependencies": {
10631 - "@tapjs/core": "4.2.0"
10631 + "@tapjs/core": "4.3.0"
10632 }
10633 },
10634 "node_modules/@tapjs/fixture/node_modules/glob": {
@@ -10650,11 +10650,11 @@
10650 }
10651 },
10652 "node_modules/@tapjs/fixture/node_modules/lru-cache": {
10653 - "version": "11.2.2",
10654 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
10655 - "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
10653 + "version": "11.2.4",
10654 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
10655 + "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
10656 "dev": true,
10657 - "license": "ISC",
10657 + "license": "BlueOak-1.0.0",
10658 "engines": {
10659 "node": "20 || >=22"
10660 }
@@ -10713,30 +10713,30 @@
10713 }
10714 },
10715 "node_modules/@tapjs/intercept": {
10716 - "version": "4.2.0",
10717 - "resolved": "https://registry.npmjs.org/@tapjs/intercept/-/intercept-4.2.0.tgz",
10718 - "integrity": "sha512-ndFm+l70kw/sg/mgUDxZj+pRtqNF7kq22+5GVEb2i24cK1Tl1LfiSVCj8Szet9kfUs1L6n3FriMtdqCNnVqP4A==",
10716 + "version": "4.2.1",
10717 + "resolved": "https://registry.npmjs.org/@tapjs/intercept/-/intercept-4.2.1.tgz",
10718 + "integrity": "sha512-VEdRnzrbpnffKVQo8y+2/CIsfzwluALJz7iqxtpQAkAIk3WqcG2aTRuTCB4uK/xL6nV6UrYH3Bwe+fesqUYRVA==",
10719 "dev": true,
10720 "license": "BlueOak-1.0.0",
10721 "dependencies": {
10722 - "@tapjs/after": "3.2.0",
10722 + "@tapjs/after": "3.2.1",
10723 "@tapjs/stack": "4.2.0"
10724 },
10725 "engines": {
10726 "node": "20 || >=22"
10727 },
10728 "peerDependencies": {
10729 - "@tapjs/core": "4.2.0"
10729 + "@tapjs/core": "4.3.0"
10730 }
10731 },
10732 "node_modules/@tapjs/mock": {
10733 - "version": "4.2.0",
10734 - "resolved": "https://registry.npmjs.org/@tapjs/mock/-/mock-4.2.0.tgz",
10735 - "integrity": "sha512-sZTcI40pHo7bc0GIS+4TacqcCYgcvqqJ2VhSJ00WbdvfpqIp8fYiLBlWIMDhw7DGzkSXWlZ1zOPrv3GdMt2hOg==",
10733 + "version": "4.2.1",
10734 + "resolved": "https://registry.npmjs.org/@tapjs/mock/-/mock-4.2.1.tgz",
10735 + "integrity": "sha512-NzjU1X/plf7Evt1pZh8IvZKbHKh0xDK9zfFv1pz/fL3XdsNvFUuqNBr5L1wO8sDFkEBMshdwvLWbnlsW6NOs4A==",
10736 "dev": true,
10737 "license": "BlueOak-1.0.0",
10738 "dependencies": {
10739 - "@tapjs/after": "3.2.0",
10739 + "@tapjs/after": "3.2.1",
10740 "@tapjs/stack": "4.2.0",
10741 "resolve-import": "^2.1.1",
10742 "walk-up-path": "^4.0.0"
@@ -10748,7 +10748,7 @@
10748 "url": "https://github.com/sponsors/isaacs"
10749 },
10750 "peerDependencies": {
10751 - "@tapjs/core": "4.2.0"
10751 + "@tapjs/core": "4.3.0"
10752 }
10753 },
10754 "node_modules/@tapjs/mock/node_modules/walk-up-path": {
@@ -10762,9 +10762,9 @@
10762 }
10763 },
10764 "node_modules/@tapjs/node-serialize": {
10765 - "version": "4.2.0",
10766 - "resolved": "https://registry.npmjs.org/@tapjs/node-serialize/-/node-serialize-4.2.0.tgz",
10767 - "integrity": "sha512-IxyEhwIsOPQaRnyzLQKfVnT4LckObfp6mnNiSsvm2I++cQAV1IzRvd9gggPMApcfXT6sIT2LzaQoPZp4yyDZIw==",
10765 + "version": "4.2.1",
10766 + "resolved": "https://registry.npmjs.org/@tapjs/node-serialize/-/node-serialize-4.2.1.tgz",
10767 + "integrity": "sha512-/GuheBGNyok6OyJ7Zy6E5zAemJtF6PrwPen8zFtv0Xd3fZnE4MkwUiJVBpa/2DGcBEjUuU3Nckyk+zGNNnkcdw==",
10768 "dev": true,
10769 "license": "BlueOak-1.0.0",
10770 "dependencies": {
@@ -10779,16 +10779,17 @@
10779 "url": "https://github.com/sponsors/isaacs"
10780 },
10781 "peerDependencies": {
10782 - "@tapjs/core": "4.2.0"
10782 + "@tapjs/core": "4.3.0"
10783 }
10784 },
10785 "node_modules/@tapjs/processinfo": {
10786 - "version": "3.1.8",
10787 - "resolved": "https://registry.npmjs.org/@tapjs/processinfo/-/processinfo-3.1.8.tgz",
10788 - "integrity": "sha512-FIriEB+qqArPhmVYc1PZwRHD99myRdl7C9Oe/uts04Q2LOxQ5MEmqP9XOP8vVYzpDOYwmL8OmL6eOYt9eZlQKQ==",
10786 + "version": "3.1.9",
10787 + "resolved": "https://registry.npmjs.org/@tapjs/processinfo/-/processinfo-3.1.9.tgz",
10788 + "integrity": "sha512-yIbYH9ROI5m5F2B5Hpk6t89OkHBrDbL3qncPO9OfPuSvJsvAIDG91I0hxGQNohdaxmqz5L4QiIYc5Y0KmtLzCQ==",
10789 "dev": true,
10790 - "license": "ISC",
10790 + "license": "BlueOak-1.0.0",
10791 "dependencies": {
10792 + "node-options-to-argv": "^1.0.0",
10793 "pirates": "^4.0.5",
10794 "process-on-spawn": "^1.0.0",
10795 "signal-exit": "^4.0.2",
@@ -10812,13 +10813,13 @@
10813 }
10814 },
10815 "node_modules/@tapjs/reporter": {
10815 - "version": "4.2.0",
10816 - "resolved": "https://registry.npmjs.org/@tapjs/reporter/-/reporter-4.2.0.tgz",
10817 - "integrity": "sha512-dvAbFmhZSKRYh5Y2OKLF7D7pYGkBhh+9SLdtpoGl2Xrc9GfgBv7FIr3v+YE4MFBnNjb2fEDI2fqjW7hJR1vraA==",
10816 + "version": "4.3.0",
10817 + "resolved": "https://registry.npmjs.org/@tapjs/reporter/-/reporter-4.3.0.tgz",
10818 + "integrity": "sha512-DVQCIR95Wp7kU/ysbLoP3/dh174FVu3B1OaYLEnlnT5DayWeVdW5kw520ae1ww7bxoU9ifrv8bzUdzgehyTgfQ==",
10819 "dev": true,
10820 "license": "BlueOak-1.0.0",
10821 "dependencies": {
10821 - "@tapjs/config": "5.2.0",
10822 + "@tapjs/config": "5.3.0",
10823 "@tapjs/stack": "4.2.0",
10824 "chalk": "^5.6.2",
10825 "ink": "^5.2.1",
@@ -10839,7 +10840,7 @@
10840 "url": "https://github.com/sponsors/isaacs"
10841 },
10842 "peerDependencies": {
10842 - "@tapjs/core": "4.2.0"
10843 + "@tapjs/core": "4.3.0"
10844 }
10845 },
10846 "node_modules/@tapjs/reporter/node_modules/ansi-regex": {
@@ -10888,20 +10889,20 @@
10889 }
10890 },
10891 "node_modules/@tapjs/run": {
10891 - "version": "4.2.0",
10892 - "resolved": "https://registry.npmjs.org/@tapjs/run/-/run-4.2.0.tgz",
10893 - "integrity": "sha512-qy2hJhposHmfy5TtN6hkxpjwAqqW1Ow6YgpFV54+lZTF+F7cbDv/Y7CluJ9Ge2tcotvlov4nA8FaW3fRe9dUkg==",
10892 + "version": "4.3.0",
10893 + "resolved": "https://registry.npmjs.org/@tapjs/run/-/run-4.3.0.tgz",
10894 + "integrity": "sha512-FGHpwpC9Kc+evyadQbA84VAaHby9zvQVjcTEhIiO1npfs7rzk67222E7nIbPVGhlnn+f6dZYe9gXQV6HNHzHow==",
10895 "dev": true,
10896 "license": "BlueOak-1.0.0",
10897 "dependencies": {
10897 - "@tapjs/after": "3.2.0",
10898 - "@tapjs/before": "4.2.0",
10899 - "@tapjs/config": "5.2.0",
10900 - "@tapjs/processinfo": "^3.1.8",
10901 - "@tapjs/reporter": "4.2.0",
10902 - "@tapjs/spawn": "4.2.0",
10903 - "@tapjs/stdin": "4.2.0",
10904 - "@tapjs/test": "4.2.0",
10898 + "@tapjs/after": "3.2.1",
10899 + "@tapjs/before": "4.2.1",
10900 + "@tapjs/config": "5.3.0",
10901 + "@tapjs/processinfo": "^3.1.9",
10902 + "@tapjs/reporter": "4.3.0",
10903 + "@tapjs/spawn": "4.2.1",
10904 + "@tapjs/stdin": "4.2.1",
10905 + "@tapjs/test": "4.2.1",
10906 "c8": "^10.1.3",
10907 "chalk": "^5.6.2",
10908 "chokidar": "^4.0.2",
@@ -10909,6 +10910,7 @@
10910 "glob": "^13.0.0",
10911 "minipass": "^7.0.4",
10912 "mkdirp": "^3.0.1",
10913 + "node-options-to-argv": "^1.0.0",
10914 "opener": "^1.5.2",
10915 "pacote": "^21.0.4",
10916 "path-scurry": "^2.0.0",
@@ -10932,7 +10934,7 @@
10934 "url": "https://github.com/sponsors/isaacs"
10935 },
10936 "peerDependencies": {
10935 - "@tapjs/core": "4.2.0"
10937 + "@tapjs/core": "4.3.0"
10938 }
10939 },
10940 "node_modules/@tapjs/run/node_modules/chokidar": {
@@ -10970,11 +10972,11 @@
10972 }
10973 },
10974 "node_modules/@tapjs/run/node_modules/lru-cache": {
10973 - "version": "11.2.2",
10974 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
10975 - "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
10975 + "version": "11.2.4",
10976 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
10977 + "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
10978 "dev": true,
10977 - "license": "ISC",
10979 + "license": "BlueOak-1.0.0",
10980 "engines": {
10981 "node": "20 || >=22"
10982 }
@@ -11060,9 +11062,9 @@
11062 }
11063 },
11064 "node_modules/@tapjs/snapshot": {
11063 - "version": "4.2.0",
11064 - "resolved": "https://registry.npmjs.org/@tapjs/snapshot/-/snapshot-4.2.0.tgz",
11065 - "integrity": "sha512-gYh/NCWmOz6aKjq5yikcgcXM12nDaaI23++qKAk8hHEHSk6g776RHqEucRCRrBJMDt5zEosEF44Q2nRJfgOVYQ==",
11065 + "version": "4.2.1",
11066 + "resolved": "https://registry.npmjs.org/@tapjs/snapshot/-/snapshot-4.2.1.tgz",
11067 + "integrity": "sha512-nrBvZIcmGh6Tn607q3L49CiOo30BhPiACxnRKn2pg5sTbsJ+/esmvVDRgIjrE8SrG13FS4+Qb1oNhrCC/+yAQw==",
11068 "dev": true,
11069 "license": "BlueOak-1.0.0",
11070 "dependencies": {
@@ -11077,20 +11079,20 @@
11079 "url": "https://github.com/sponsors/isaacs"
11080 },
11081 "peerDependencies": {
11080 - "@tapjs/core": "4.2.0"
11082 + "@tapjs/core": "4.3.0"
11083 }
11084 },
11085 "node_modules/@tapjs/spawn": {
11084 - "version": "4.2.0",
11085 - "resolved": "https://registry.npmjs.org/@tapjs/spawn/-/spawn-4.2.0.tgz",
11086 - "integrity": "sha512-MLwJzER1/OWMjKIPTbplijcNupArU5jNih8qYuLDyTYHthDB3+KVNX4ZjqCgaRh+ITmDM7uCznBkI/1Hk5RRow==",
11086 + "version": "4.2.1",
11087 + "resolved": "https://registry.npmjs.org/@tapjs/spawn/-/spawn-4.2.1.tgz",
11088 + "integrity": "sha512-sLYIclUqDnYSw5y78yQtcBzH5bwVSZZc0YL2PU13sclVezRJF5I6O9QrP+ad86Tv2nOGb/PV5aibhDIM64q87w==",
11089 "dev": true,
11090 "license": "BlueOak-1.0.0",
11091 "engines": {
11092 "node": "20 || >=22"
11093 },
11094 "peerDependencies": {
11093 - "@tapjs/core": "4.2.0"
11095 + "@tapjs/core": "4.3.0"
11096 }
11097 },
11098 "node_modules/@tapjs/stack": {
@@ -11107,42 +11109,42 @@
11109 }
11110 },
11111 "node_modules/@tapjs/stdin": {
11110 - "version": "4.2.0",
11111 - "resolved": "https://registry.npmjs.org/@tapjs/stdin/-/stdin-4.2.0.tgz",
11112 - "integrity": "sha512-1z1y3Yupeb/kmZ6QSch/8Db1mDK4s2GpzZiY2mRvNSnLi4XFi7HED4y3m1oLZHyGEw979AoCF+0HZoraSexrpg==",
11112 + "version": "4.2.1",
11113 + "resolved": "https://registry.npmjs.org/@tapjs/stdin/-/stdin-4.2.1.tgz",
11114 + "integrity": "sha512-2m3qAo8xDXFrcl1OTb1GhWe2XJbxn1ZmeMBhpkj4ruCdgq3Jfj6JFDvaY/U+2tz0uPAbo7reM6iA2LW/e4axRg==",
11115 "dev": true,
11116 "license": "BlueOak-1.0.0",
11117 "engines": {
11118 "node": "20 || >=22"
11119 },
11120 "peerDependencies": {
11119 - "@tapjs/core": "4.2.0"
11121 + "@tapjs/core": "4.3.0"
11122 }
11123 },
11124 "node_modules/@tapjs/test": {
11123 - "version": "4.2.0",
11124 - "resolved": "https://registry.npmjs.org/@tapjs/test/-/test-4.2.0.tgz",
11125 - "integrity": "sha512-Q0eFvmlcbOhnpMDa+2miAWmip+dRjmUwMmjx5iiur18Wzx2Be2lV2bRFumkKcntU6XasACWhosAF6XphZpSgwg==",
11125 + "version": "4.2.1",
11126 + "resolved": "https://registry.npmjs.org/@tapjs/test/-/test-4.2.1.tgz",
11127 + "integrity": "sha512-QHXJjtb0J0E2XfXhLw/6/F4I0RbdNmPb8MA9C/stF/tiRUPIezPs8TEpN2vQ+JEG07o1yFV6tEq8T6qXEGcaJA==",
11128 "dev": true,
11129 "license": "BlueOak-1.0.0",
11130 "dependencies": {
11131 "@isaacs/ts-node-temp-fork-for-pr-2009": "^10.9.7",
11130 - "@tapjs/after": "3.2.0",
11131 - "@tapjs/after-each": "4.2.0",
11132 - "@tapjs/asserts": "4.2.0",
11133 - "@tapjs/before": "4.2.0",
11134 - "@tapjs/before-each": "4.2.0",
11135 - "@tapjs/chdir": "3.2.0",
11136 - "@tapjs/filter": "4.2.0",
11137 - "@tapjs/fixture": "4.2.0",
11138 - "@tapjs/intercept": "4.2.0",
11139 - "@tapjs/mock": "4.2.0",
11140 - "@tapjs/node-serialize": "4.2.0",
11141 - "@tapjs/snapshot": "4.2.0",
11142 - "@tapjs/spawn": "4.2.0",
11143 - "@tapjs/stdin": "4.2.0",
11144 - "@tapjs/typescript": "3.3.0",
11145 - "@tapjs/worker": "4.2.0",
11132 + "@tapjs/after": "3.2.1",
11133 + "@tapjs/after-each": "4.2.1",
11134 + "@tapjs/asserts": "4.2.1",
11135 + "@tapjs/before": "4.2.1",
11136 + "@tapjs/before-each": "4.2.1",
11137 + "@tapjs/chdir": "3.2.1",
11138 + "@tapjs/filter": "4.2.1",
11139 + "@tapjs/fixture": "4.2.1",
11140 + "@tapjs/intercept": "4.2.1",
11141 + "@tapjs/mock": "4.2.1",
11142 + "@tapjs/node-serialize": "4.2.1",
11143 + "@tapjs/snapshot": "4.2.1",
11144 + "@tapjs/spawn": "4.2.1",
11145 + "@tapjs/stdin": "4.2.1",
11146 + "@tapjs/typescript": "3.4.0",
11147 + "@tapjs/worker": "4.2.1",
11148 "glob": "^13.0.0",
11149 "jackspeak": "^4.0.1",
11150 "mkdirp": "^3.0.0",
@@ -11162,7 +11164,7 @@
11164 "node": "20 || >=22"
11165 },
11166 "peerDependencies": {
11165 - "@tapjs/core": "4.2.0"
11167 + "@tapjs/core": "4.3.0"
11168 }
11169 },
11170 "node_modules/@tapjs/test/node_modules/glob": {
@@ -11200,11 +11202,11 @@
11202 }
11203 },
11204 "node_modules/@tapjs/test/node_modules/lru-cache": {
11203 - "version": "11.2.2",
11204 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
11205 - "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
11205 + "version": "11.2.4",
11206 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
11207 + "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
11208 "dev": true,
11207 - "license": "ISC",
11209 + "license": "BlueOak-1.0.0",
11210 "engines": {
11211 "node": "20 || >=22"
11212 }
@@ -11273,9 +11275,9 @@
11275 }
11276 },
11277 "node_modules/@tapjs/typescript": {
11276 - "version": "3.3.0",
11277 - "resolved": "https://registry.npmjs.org/@tapjs/typescript/-/typescript-3.3.0.tgz",
11278 - "integrity": "sha512-y3LoyE360PUeLLBSzaRkHrrmhTnM1P1CqaqYRq3sBNbdGpZTyugS6sUQoi+SfOHANwFkGb//3eUFqXzjmCgkOw==",
11278 + "version": "3.4.0",
11279 + "resolved": "https://registry.npmjs.org/@tapjs/typescript/-/typescript-3.4.0.tgz",
11280 + "integrity": "sha512-LJDwA3utw/wA1KjXicJHkvmujOROb2I+anYB6IcxfJDMpWhpSfmcOWMs+9tCY6kEVy04YRV/n59/ElK0r1vhow==",
11281 "dev": true,
11282 "license": "BlueOak-1.0.0",
11283 "dependencies": {
@@ -11285,20 +11287,20 @@
11287 "node": "20 || >=22"
11288 },
11289 "peerDependencies": {
11288 - "@tapjs/core": "4.2.0"
11290 + "@tapjs/core": "4.3.0"
11291 }
11292 },
11293 "node_modules/@tapjs/worker": {
11292 - "version": "4.2.0",
11293 - "resolved": "https://registry.npmjs.org/@tapjs/worker/-/worker-4.2.0.tgz",
11294 - "integrity": "sha512-Deq5vaCZYPQnWRGmmZ9wXShYUmBUinJto7B/iBIA3Gjwimlp90RX+gm8WQT0fUu0pVm17EKMDDblw23P+PmsRw==",
11294 + "version": "4.2.1",
11295 + "resolved": "https://registry.npmjs.org/@tapjs/worker/-/worker-4.2.1.tgz",
11296 + "integrity": "sha512-qU9j6GaAeFTyjJcDTmspTHlIsua3CtlIw/KeHpA3hujZ7tEHbn/sCL22UIUopXCjllrkWFDUYlqv9YbbQ408xA==",
11297 "dev": true,
11298 "license": "BlueOak-1.0.0",
11299 "engines": {
11300 "node": "20 || >=22"
11301 },
11302 "peerDependencies": {
11301 - "@tapjs/core": "4.2.0"
11303 + "@tapjs/core": "4.3.0"
11304 }
11305 },
11306 "node_modules/@testing-library/dom": {
@@ -32502,6 +32504,13 @@
32504 "node": ">=0.10.0"
32505 }
32506 },
32507 + "node_modules/node-options-to-argv": {
32508 + "version": "1.0.0",
32509 + "resolved": "https://registry.npmjs.org/node-options-to-argv/-/node-options-to-argv-1.0.0.tgz",
32510 + "integrity": "sha512-99rLlP+Cn/FsSV9kjpk2UmF2Ltmrpv/L9U7fUfws/MVXkeZWPpPDsQkMr79qCvSF/oTKVVJBTm5sHzmK2j6IIg==",
32511 + "dev": true,
32512 + "license": "BlueOak-1.0.0"
32513 + },
32514 "node_modules/node-releases": {
32515 "version": "2.0.21",
32516 "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.21.tgz",
@@ -35925,10 +35934,11 @@
35934 }
35935 },
35936 "node_modules/prettier": {
35928 - "version": "3.6.2",
35929 - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
35930 - "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
35937 + "version": "3.7.3",
35938 + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.7.3.tgz",
35939 + "integrity": "sha512-QgODejq9K3OzoBbuyobZlUhznP5SKwPqp+6Q6xw6o8gnhr4O85L2U915iM2IDcfF2NPXVaM9zlo9tdwipnYwzg==",
35940 "dev": true,
35941 + "license": "MIT",
35942 "bin": {
35943 "prettier": "bin/prettier.cjs"
35944 },
@@ -36748,9 +36758,9 @@
36758 "license": "MIT"
36759 },
36760 "node_modules/react-focus-lock": {
36751 - "version": "2.13.6",
36752 - "resolved": "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.13.6.tgz",
36753 - "integrity": "sha512-ehylFFWyYtBKXjAO9+3v8d0i+cnc1trGS0vlTGhzFW1vbFXVUTmR8s2tt/ZQG8x5hElg6rhENlLG1H3EZK0Llg==",
36761 + "version": "2.13.7",
36762 + "resolved": "https://registry.npmjs.org/react-focus-lock/-/react-focus-lock-2.13.7.tgz",
36763 + "integrity": "sha512-20lpZHEQrXPb+pp1tzd4ULL6DyO5D2KnR0G69tTDdydrmNhU7pdFmbQUYVyHUgp+xN29IuFR0PVuhOmvaZL9Og==",
36764 "license": "MIT",
36765 "dependencies": {
36766 "@babel/runtime": "^7.0.0",
@@ -36771,14 +36781,14 @@
36781 }
36782 },
36783 "node_modules/react-focus-on": {
36774 - "version": "3.10.0",
36775 - "resolved": "https://registry.npmjs.org/react-focus-on/-/react-focus-on-3.10.0.tgz",
36776 - "integrity": "sha512-r2yQchO6QfV5zB3J4Gj6cTYBoxD369vkt0oKj1NJLA5ChQzxjko6V/dqQ7nvmaUBm5pHC+pa8tzHT9jtsVRFMQ==",
36784 + "version": "3.10.1",
36785 + "resolved": "https://registry.npmjs.org/react-focus-on/-/react-focus-on-3.10.1.tgz",
36786 + "integrity": "sha512-WI145u8xtD7Tc0GcfgwudY2mktxukTlrhC2pB2qfQSfpFpLh42eq9ZQOKjQ/Sn6Ac22i/hjSeHi2rfdLY+XWkQ==",
36787 "license": "MIT",
36788 "dependencies": {
36789 "aria-hidden": "^1.2.5",
36780 - "react-focus-lock": "^2.13.6",
36781 - "react-remove-scroll": "^2.6.3",
36790 + "react-focus-lock": "^2.13.7",
36791 + "react-remove-scroll": "^2.6.4",
36792 "react-style-singleton": "^2.2.3",
36793 "tslib": "^2.3.1",
36794 "use-sidecar": "^1.1.3"
@@ -39026,11 +39036,11 @@
39036 }
39037 },
39038 "node_modules/resolve-import/node_modules/lru-cache": {
39029 - "version": "11.2.2",
39030 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
39031 - "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
39039 + "version": "11.2.4",
39040 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
39041 + "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
39042 "dev": true,
39033 - "license": "ISC",
39043 + "license": "BlueOak-1.0.0",
39044 "engines": {
39045 "node": "20 || >=22"
39046 }
@@ -40913,11 +40923,11 @@
40923 }
40924 },
40925 "node_modules/sync-content/node_modules/lru-cache": {
40916 - "version": "11.2.2",
40917 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
40918 - "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
40926 + "version": "11.2.4",
40927 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
40928 + "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
40929 "dev": true,
40920 - "license": "ISC",
40930 + "license": "BlueOak-1.0.0",
40931 "engines": {
40932 "node": "20 || >=22"
40933 }
@@ -41052,31 +41062,31 @@
41062 }
41063 },
41064 "node_modules/tap": {
41055 - "version": "21.3.0",
41056 - "resolved": "https://registry.npmjs.org/tap/-/tap-21.3.0.tgz",
41057 - "integrity": "sha512-Kk7b+AY4qGj0G/5TY2wb4Gen0ObHJU2qk2lbhdlu4Sd1/cJ1b5wAcCqPqIQkWYC1n7KiXmqC541i9t7jZEseKw==",
41065 + "version": "21.4.0",
41066 + "resolved": "https://registry.npmjs.org/tap/-/tap-21.4.0.tgz",
41067 + "integrity": "sha512-93KcpTuK9+mutO+GFkHR5Vuq/lmxCo7z1ncqryuxGynkFghvPciYVJQvUFzJh3/pPNyk6SJtN5ddzVJJZI0ggA==",
41068 "dev": true,
41069 "license": "BlueOak-1.0.0",
41070 "dependencies": {
41061 - "@tapjs/after": "3.2.0",
41062 - "@tapjs/after-each": "4.2.0",
41063 - "@tapjs/asserts": "4.2.0",
41064 - "@tapjs/before": "4.2.0",
41065 - "@tapjs/before-each": "4.2.0",
41066 - "@tapjs/chdir": "3.2.0",
41067 - "@tapjs/core": "4.2.0",
41068 - "@tapjs/filter": "4.2.0",
41069 - "@tapjs/fixture": "4.2.0",
41070 - "@tapjs/intercept": "4.2.0",
41071 - "@tapjs/mock": "4.2.0",
41072 - "@tapjs/node-serialize": "4.2.0",
41073 - "@tapjs/run": "4.2.0",
41074 - "@tapjs/snapshot": "4.2.0",
41075 - "@tapjs/spawn": "4.2.0",
41076 - "@tapjs/stdin": "4.2.0",
41077 - "@tapjs/test": "4.2.0",
41078 - "@tapjs/typescript": "3.3.0",
41079 - "@tapjs/worker": "4.2.0",
41071 + "@tapjs/after": "3.2.1",
41072 + "@tapjs/after-each": "4.2.1",
41073 + "@tapjs/asserts": "4.2.1",
41074 + "@tapjs/before": "4.2.1",
41075 + "@tapjs/before-each": "4.2.1",
41076 + "@tapjs/chdir": "3.2.1",
41077 + "@tapjs/core": "4.3.0",
41078 + "@tapjs/filter": "4.2.1",
41079 + "@tapjs/fixture": "4.2.1",
41080 + "@tapjs/intercept": "4.2.1",
41081 + "@tapjs/mock": "4.2.1",
41082 + "@tapjs/node-serialize": "4.2.1",
41083 + "@tapjs/run": "4.3.0",
41084 + "@tapjs/snapshot": "4.2.1",
41085 + "@tapjs/spawn": "4.2.1",
41086 + "@tapjs/stdin": "4.2.1",
41087 + "@tapjs/test": "4.2.1",
41088 + "@tapjs/typescript": "3.4.0",
41089 + "@tapjs/worker": "4.2.1",
41090 "resolve-import": "^2.1.1"
41091 },
41092 "bin": {
@@ -41744,11 +41754,11 @@
41754 }
41755 },
41756 "node_modules/tshy/node_modules/lru-cache": {
41747 - "version": "11.2.2",
41748 - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.2.tgz",
41749 - "integrity": "sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==",
41757 + "version": "11.2.4",
41758 + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
41759 + "integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
41760 "dev": true,
41751 - "license": "ISC",
41761 + "license": "BlueOak-1.0.0",
41762 "engines": {
41763 "node": "20 || >=22"
41764 }
@@ -44175,15 +44185,18 @@
44185 "license": "ISC"
44186 },
44187 "node_modules/yaml": {
44178 - "version": "2.8.1",
44179 - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz",
44180 - "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==",
44188 + "version": "2.8.2",
44189 + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
44190 + "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==",
44191 "license": "ISC",
44192 "bin": {
44193 "yaml": "bin.mjs"
44194 },
44195 "engines": {
44196 "node": ">= 14.6"
44197 + },
44198 + "funding": {
44199 + "url": "https://github.com/sponsors/eemeli"
44200 }
44201 },
44202 "node_modules/yaml-loader": {